diff --git a/.env b/.env index eec5d00a99eec56f8b1474a2e255a8b10ce9722e..611591fda4eae55fcc03d0779db7b0cc618e5b60 100755 --- a/.env +++ b/.env @@ -1,10 +1,16 @@ -RELEASE_VERSION=latest +TRAEFIK_NETWORK_NAME=traefik_network +TRAEFIK_HTTPS_ENTRYPOINT_NAME=websecure +TRAEFIK_HTTP_ENTRYPOINT_NAME=web ADMIN_USER=medina ADMIN_PASSWORD=medinaPassword HTTPS_PORT=443 -SERVER_HOST=coc.poc.medina.esilab.org +SERVER_HOST=192.168.56.1.nip.io TZ=Madrid TRAEFIK_CONSTRAINTS= +PROJECT_NAME=medina +KEYCLOAK_VERSION=12.0.4 KEYCLOAK_URL=https://auth.192.168.56.1.nip.io +RELEASE_VERSION=latest COMPOSE_PROJECT_NAME=medina-production -COMPOSE_FILE=docker-compose.yaml:git/traefik/docker-compose-redirect-ca.yaml:git/traefik/docker-compose-acme.yaml:git/traefik/docker-compose-expose.yaml:git/portainer/docker-compose.yaml:release/docker-compose.yaml:git/portainer/release/docker-compose.yaml +KEYCLOAK_CONFIG_PATH= +COMPOSE_FILE=docker-compose.yaml:git/traefik/docker-compose-redirect-ca.yaml:git/traefik/docker-compose-expose.yaml:git/traefik/docker-compose-acme.yaml:git/keycloak/docker-compose.yaml:release/docker-compose.yaml:git/keycloak/release/docker-compose.yaml diff --git a/.env.gen b/.env.gen index 2fac2daf61282959a185164f1ecbe23b83560e89..f6bebc22c898c5aee2171f6ff1c5fdc18e9a05be 100755 --- a/.env.gen +++ b/.env.gen @@ -2,35 +2,62 @@ # Focus default variables as production, to allow direct download and run in production # Required external variables that must be defined externally are those that have no value +#### Environments managed +# this is the default environment if needed uncomment and adjust +# some conventions on environment prefixes +# - _ENV_LOCAL_ .env.local purpouse is to cache build and start the setup locally using cache images exposing dev ports (i.e 3306, 5432, 8086, ...) for debug and development purposes. It is the default behaviour (_ENV_LOCAL_:build-cache:.env.local) +# - _ENV_CACHE_ .env.cache purpouse is to generate images tagged for build cache from that use BUILDKIT_INLINE_CACHE 1 (_ENV_CACHE_:build-cache:.env.cache) +# - _ENV_RELEASE_ .env.release purpouse is to generate images (that do not use BUILDKIT_INLINE_CACHE 1) tagged for the clients/pilots usage (_ENV_RELEASE_:build-release:.env.release) +# - _ENV_DEPLOY_ .env purpose is to generate non building docker-compose that uses the release to deploy on generic client (_ENV_DEPLOY_:release:.env) +# - _ENV_TEST_ .env.test the purpouse is to test from the cache images the correct behaviour without exposing ports (_ENV_TEST_:build-cache:.env.test) +# types of building +# - build-cache: it focuses in the generation of images with BUILDKIT_INLINE_CACHE 1 for its usage in the cache-from for subsequent build, for each compose-file in compose-file build it finds build/cache the same name to add it to the build, it will use cache from. +# - build-release: it focuses in the generation of images for distribution it avoid using BUILDKIT_INLINE_CACHE 1 to reduce the size, it will use cache from. +# - cache: it runs using cache images +# - release: it runs using release images +# default enviroment +# _ENVIRONMENTS=_ENV_LOCAL_:build-cache:.env.local +# to add more enviroments use split with ";" +_ENVIRONMENTS=_ENV_LOCAL_:build-cache:.env.local;_ENV_RELEASE_:build-release:.env.release;_ENV_DEPLOY_:release:.env + #### Common image related #### DOCKER_REGISTRY_CACHE_PREFIX=cache.euve.digital.tecnalia.dev:5000 DOCKER_REGISTRY_CACHE_VERSION=latest -RELEASE_VERSION=latest #### Common Build related #### # DOCKER_BUILDKIT and COMPOSE_DOCKER_CLI_BUILD do not have effect here, we leave them as documentation -DOCKER_BUILDKIT=1 -COMPOSE_DOCKER_CLI_BUILD=1 +# DOCKER_BUILDKIT=1 +# COMPOSE_DOCKER_CLI_BUILD=1 + +### Common Traefik related ### +TRAEFIK_NETWORK_NAME=traefik_network +TRAEFIK_HTTPS_ENTRYPOINT_NAME=websecure +TRAEFIK_HTTP_ENTRYPOINT_NAME=web #### Common Production related #### ADMIN_USER=medina ADMIN_PASSWORD=medinaPassword -# HTTPS_PORT must be 443 if you user step-ca +# to calculate password hash `openssl passwd -apr1 $ADMIN_PASSWORD` +# ADMIN_PASSWORD_HASH='$apr1$chTuJ7f9$.Ul8E16QYHtydKw.ehzZC.' +# to calculate password bcrypt hash `sudo apt-get update; sudo apt-get install -y apache2-utils; htpasswd -bnBC 12 "" $ADMIN_PASSWORD | tr -d ':\n'` +# ADMIN_PASSWORD_BCRYPT_HASH='$2y$12$NxJ.FkLgDZWWjc15y9bhX./GOTp67krCxWPanJLyCjofKyIN.zS96' +# HTTPS_PORT must be 443 if you use step-ca HTTPS_PORT=443 # server host is configured during the sync based on _ENV_LOCAL_ and _ENV_DEPLOY, _ENV_LOCAL_ will be used for test and release unless _ENV_RELEASE_ or _ENV_TEST_ specified -# SERVER_HOST= -_ENV_DEPLOY_SERVER_HOST=coc.poc.medina.esilab.org -_ENV_LOCAL_SERVER_HOST=192.168.56.1.nip.io +# SERVER_HOST=project.org +SERVER_HOST=192.168.56.1.nip.io #### Platform Specific #### TZ=Madrid # TRAEFIK_CONSTRAINTS=Label(`com.docker.compose.project`, `medina-production`) TRAEFIK_CONSTRAINTS= +PROJECT_NAME=medina STEP_UID=1000 STEP_GID=1000 KEYCLOAK_VERSION=12.0.4 EXTRA_CA_URL=https://git.code.tecnalia.com/smartdatalab/ca/-/raw/master/ca.crt.pem KEYCLOAK_URL=https://auth.192.168.56.1.nip.io +RELEASE_VERSION=latest #### Common docker-compose related #### # https://docs.docker.com/compose/reference/envvars/#compose_file#compose_project_name @@ -42,27 +69,27 @@ COMPOSE_PROJECT_NAME=medina-production # _ENV_TEST_COMPOSE_FILE_BASE= # These are oriented for testing # COMPOSE_FILE_BASE= # (MANDATORY) These are those main services of the project, that will apply to all the scenarios -COMPOSE_FILE_BASE= +COMPOSE_FILE_BASE=docker-compose.yaml +COMPOSE_FILE_BASE_TRAEFIK_CA_REDIRECT=git/traefik/docker-compose-redirect-ca.yaml +COMPOSE_FILE_BASE_TRAEFIK_EXPOSE=git/traefik/docker-compose-expose.yaml +COMPOSE_FILE_BASE_TRAEFIK=git/traefik/docker-compose-acme.yaml +COMPOSE_FILE_BASE_KEYCLOAK=git/keycloak/docker-compose.yaml COMPOSE_FILE= # COMPOSE_FILE Is generated automatically -COMPOSE_FILE_BASE_MEDINA=docker-compose.yaml +KEYCLOAK_BASE_PATH=git/keycloak/ +KEYCLOAK_CONFIG_PATH= +TRAEFIK_CONFIG_PATH=git/traefik/ -_ENV_LOCAL_COMPOSE_FILE_BASE_TRAEFIK=git/traefik/docker-compose-dev.yaml:git/traefik/docker-compose-redirect-ca.yaml:git/traefik/docker-compose-ca.yaml:git/traefik/docker-compose-expose.yaml +_ENV_LOCAL_COMPOSE_FILE_BASE_TRAEFIK=git/traefik/docker-compose-dev.yaml:git/traefik/docker-compose-ca.yaml _ENV_LOCAL_COMPOSE_FILE_BASE_STEP_CA=git/step-ca/docker-compose.yaml _ENV_LOCAL_COMPOSE_FILE_BASE_PORTAINER=git/portainer/docker-compose.yaml _ENV_LOCAL_COMPOSE_FILE_BASE_KEYCLOAK=git/keycloak/docker-compose.yaml _ENV_LOCAL_COMPOSE_FILE_BASE_MEDINA=docker-compose-dev.yaml:docker-compose-dev-expose.yaml +_ENV_LOCAL_STEP_CA_CONFIG_PATH=git/step-ca/ +_ENV_LOCAL_PORTAINER_BASE_PATH=git/portainer/ -_ENV_DEPLOY_COMPOSE_FILE_BASE_TRAEFIK=git/traefik/docker-compose-redirect-ca.yaml:git/traefik/docker-compose-acme.yaml:git/traefik/docker-compose-expose.yaml -_ENV_DEPLOY_COMPOSE_FILE_BASE_PORTAINER=git/portainer/docker-compose.yaml - -_ENV_RELEASE_COMPOSE_FILE_BASE_TRAEFIK_REQUIRED=git/traefik/docker-compose-ca.yaml -_ENV_RELEASE_COMPOSE_FILE_BASE_KEYCLOAK_SETUP=git/keycloak/build/docker-compose.yaml:git/keycloak/build/cache/docker-compose.yaml:release/docker-compose-keycloak-setup.yaml - +_ENV_RELEASE_COMPOSE_FILE_BASE_KEYCLOAK= +_ENV_RELEASE_COMPOSE_FILE_BASE_KEYCLOAK_SETUP=git/keycloak/build/docker-compose.yaml:release/docker-compose-keycloak-setup.yaml PORTAINER_BASE_PATH=git/portainer/ -KEYCLOAK_BASE_PATH=git/keycloak/ -KEYCLOAK_CONFIG_PATH= -STEP_CA_CONFIG_PATH=git/step-ca/ -TRAEFIK_CONFIG_PATH=git/traefik/ diff --git a/.env.local b/.env.local index d12b0f1eef66c6ebed0f972c2c1f15edb2a7f072..a4d43553bcff3b00910c38ac925c559440527fc0 100755 --- a/.env.local +++ b/.env.local @@ -1,51 +1,21 @@ -# Reference documentation https://docs.docker.com/compose/environment-variables/ -# Focus default variables as production, to allow direct download and run in production -# Required external variables that must be defined externally are those that have no value - -#### Common image related #### DOCKER_REGISTRY_CACHE_PREFIX=cache.euve.digital.tecnalia.dev:5000 DOCKER_REGISTRY_CACHE_VERSION=latest - -#### Common Build related #### -# DOCKER_BUILDKIT and COMPOSE_DOCKER_CLI_BUILD do not have effect here, we leave them as documentation - -#### Common Production related #### +TRAEFIK_NETWORK_NAME=traefik_network +TRAEFIK_HTTPS_ENTRYPOINT_NAME=websecure +TRAEFIK_HTTP_ENTRYPOINT_NAME=web ADMIN_USER=medina ADMIN_PASSWORD=medinaPassword -# HTTPS_PORT must be 443 if you user step-ca HTTPS_PORT=443 -# server host is configured during the sync based on _ENV_LOCAL_ and _ENV_DEPLOY, _ENV_LOCAL_ will be used for test and release unless _ENV_RELEASE_ or _ENV_TEST_ specified -# SERVER_HOST= SERVER_HOST=192.168.56.1.nip.io - -#### Platform Specific #### TZ=Madrid -# TRAEFIK_CONSTRAINTS=Label(`com.docker.compose.project`, `medina-production`) TRAEFIK_CONSTRAINTS= +PROJECT_NAME=medina KEYCLOAK_VERSION=12.0.4 EXTRA_CA_URL=https://git.code.tecnalia.com/smartdatalab/ca/-/raw/master/ca.crt.pem KEYCLOAK_URL=https://auth.192.168.56.1.nip.io - -#### Common docker-compose related #### -# https://docs.docker.com/compose/reference/envvars/#compose_file#compose_project_name -# these are docker-compose related environment variables COMPOSE_PROJECT_NAME=medina-production -# _ENV_LOCAL_COMPOSE_FILE_BASE= # These are oriented for local vagrant usually it contains local traefik configuration, dev services, etc -# _ENV_RELEASE_COMPOSE_FILE_BASE= # These are oriented for tagging relevant images for upload to official release repositories -# _ENV_DEPLOY_COMPOSE_FILE_BASE= # These are oriented for final deployment it contains production traefik configuration, etc -# _ENV_TEST_COMPOSE_FILE_BASE= # These are oriented for testing -# COMPOSE_FILE_BASE= # (MANDATORY) These are those main services of the project, that will apply to all the scenarios - - -# COMPOSE_FILE Is generated automatically - - - - - -PORTAINER_BASE_PATH=git/portainer/ KEYCLOAK_BASE_PATH=git/keycloak/ KEYCLOAK_CONFIG_PATH= -STEP_CA_CONFIG_PATH=git/step-ca/ TRAEFIK_CONFIG_PATH=git/traefik/ -COMPOSE_FILE=docker-compose.yaml:git/traefik/docker-compose-dev.yaml:git/traefik/docker-compose-redirect-ca.yaml:git/traefik/docker-compose-ca.yaml:git/traefik/docker-compose-expose.yaml:git/step-ca/docker-compose.yaml:git/portainer/docker-compose.yaml:git/keycloak/docker-compose.yaml:docker-compose-dev.yaml:docker-compose-dev-expose.yaml:build/docker-compose.yaml:git/portainer/build/docker-compose.yaml:git/keycloak/build/docker-compose.yaml:build/cache/docker-compose.yaml:git/portainer/build/cache/docker-compose.yaml:git/keycloak/build/cache/docker-compose.yaml:build/image/docker-compose.yaml:git/portainer/build/image/docker-compose.yaml:git/keycloak/build/image/docker-compose.yaml +STEP_CA_CONFIG_PATH=git/step-ca/ +COMPOSE_FILE=docker-compose.yaml:git/traefik/docker-compose-redirect-ca.yaml:git/traefik/docker-compose-expose.yaml:git/traefik/docker-compose-dev.yaml:git/traefik/docker-compose-ca.yaml:git/keycloak/docker-compose.yaml:git/step-ca/docker-compose.yaml:git/portainer/docker-compose.yaml:docker-compose-dev.yaml:docker-compose-dev-expose.yaml:build/docker-compose.yaml:git/keycloak/build/docker-compose.yaml:build/inline-cache/docker-compose.yaml:git/keycloak/build/inline-cache/docker-compose.yaml:build/image/docker-compose.yaml:git/keycloak/build/image/docker-compose.yaml diff --git a/.env.release b/.env.release index 92262eb7c321bb8058d11df815d4f51665038545..9148e3682ad70bc1c1c7a3f29e11dea939f9b85b 100755 --- a/.env.release +++ b/.env.release @@ -1,49 +1,18 @@ -# Reference documentation https://docs.docker.com/compose/environment-variables/ -# Focus default variables as production, to allow direct download and run in production -# Required external variables that must be defined externally are those that have no value - -#### Common image related #### DOCKER_REGISTRY_CACHE_PREFIX=cache.euve.digital.tecnalia.dev:5000 DOCKER_REGISTRY_CACHE_VERSION=latest -RELEASE_VERSION=latest - -#### Common Build related #### -# DOCKER_BUILDKIT and COMPOSE_DOCKER_CLI_BUILD do not have effect here, we leave them as documentation - -#### Common Production related #### +TRAEFIK_NETWORK_NAME=traefik_network +TRAEFIK_HTTPS_ENTRYPOINT_NAME=websecure +TRAEFIK_HTTP_ENTRYPOINT_NAME=web ADMIN_USER=medina ADMIN_PASSWORD=medinaPassword -# HTTPS_PORT must be 443 if you user step-ca HTTPS_PORT=443 -# server host is configured during the sync based on _ENV_LOCAL_ and _ENV_DEPLOY, _ENV_LOCAL_ will be used for test and release unless _ENV_RELEASE_ or _ENV_TEST_ specified -# SERVER_HOST= SERVER_HOST=192.168.56.1.nip.io - -#### Platform Specific #### TZ=Madrid -# TRAEFIK_CONSTRAINTS=Label(`com.docker.compose.project`, `medina-production`) TRAEFIK_CONSTRAINTS= +PROJECT_NAME=medina EXTRA_CA_URL=https://git.code.tecnalia.com/smartdatalab/ca/-/raw/master/ca.crt.pem KEYCLOAK_URL=https://auth.192.168.56.1.nip.io - -#### Common docker-compose related #### -# https://docs.docker.com/compose/reference/envvars/#compose_file#compose_project_name -# these are docker-compose related environment variables +RELEASE_VERSION=latest COMPOSE_PROJECT_NAME=medina-production -# _ENV_LOCAL_COMPOSE_FILE_BASE= # These are oriented for local vagrant usually it contains local traefik configuration, dev services, etc -# _ENV_RELEASE_COMPOSE_FILE_BASE= # These are oriented for tagging relevant images for upload to official release repositories -# _ENV_DEPLOY_COMPOSE_FILE_BASE= # These are oriented for final deployment it contains production traefik configuration, etc -# _ENV_TEST_COMPOSE_FILE_BASE= # These are oriented for testing -# COMPOSE_FILE_BASE= # (MANDATORY) These are those main services of the project, that will apply to all the scenarios - -COMPOSE_FILE_BASE= - -# COMPOSE_FILE Is generated automatically - - - - - KEYCLOAK_BASE_PATH=git/keycloak/ -TRAEFIK_CONFIG_PATH=git/traefik/ -COMPOSE_FILE=docker-compose.yaml:git/traefik/docker-compose-ca.yaml:git/keycloak/build/docker-compose.yaml:git/keycloak/build/cache/docker-compose.yaml:release/docker-compose-keycloak-setup.yaml:build/docker-compose.yaml:build/cache/docker-compose.yaml:release/docker-compose.yaml +COMPOSE_FILE=docker-compose.yaml:git/traefik/docker-compose-redirect-ca.yaml:git/traefik/docker-compose-expose.yaml:git/traefik/docker-compose-acme.yaml:git/keycloak/build/docker-compose.yaml:release/docker-compose-keycloak-setup.yaml:build/docker-compose.yaml:release/docker-compose.yaml diff --git a/.env.test b/.env.test index 02d6c9134878b5f054a54f1914c2967d293971a8..92db84b9ea4497e039a9a94bccf31bfe61187ac6 100755 --- a/.env.test +++ b/.env.test @@ -2,30 +2,56 @@ # Focus default variables as production, to allow direct download and run in production # Required external variables that must be defined externally are those that have no value +#### Environments managed +# this is the default environment if needed uncomment and adjust +# some conventions on environment prefixes +# - _ENV_LOCAL_ .env.local purpouse is to cache build and start the setup locally using cache images exposing dev ports (i.e 3306, 5432, 8086, ...) for debug and development purposes. It is the default behaviour (_ENV_LOCAL_:build-cache:.env.local) +# - _ENV_CACHE_ .env.cache purpouse is to generate images tagged for build cache from that use BUILDKIT_INLINE_CACHE 1 (_ENV_CACHE_:build-cache:.env.cache) +# - _ENV_RELEASE_ .env.release purpouse is to generate images (that do not use BUILDKIT_INLINE_CACHE 1) tagged for the clients/pilots usage (_ENV_RELEASE_:build-release:.env.release) +# - _ENV_DEPLOY_ .env purpose is to generate non building docker-compose that uses the release to deploy on generic client (_ENV_DEPLOY_:release:.env) +# - _ENV_TEST_ .env.test the purpouse is to test from the cache images the correct behaviour without exposing ports (_ENV_TEST_:build-cache:.env.test) +# types of building +# - build-cache: it focuses in the generation of images with BUILDKIT_INLINE_CACHE 1 for its usage in the cache-from for subsequent build, for each compose-file in compose-file build it finds build/cache the same name to add it to the build, it will use cache from. +# - build-release: it focuses in the generation of images for distribution it avoid using BUILDKIT_INLINE_CACHE 1 to reduce the size, it will use cache from. +# - cache: it runs using cache images +# - release: it runs using release images +# default enviroment +# _ENVIRONMENTS=_ENV_LOCAL_:build-cache:.env.local +# to add more enviroments use split with ";" + #### Common image related #### DOCKER_REGISTRY_CACHE_PREFIX=cache.euve.digital.tecnalia.dev:5000 DOCKER_REGISTRY_CACHE_VERSION=latest -RELEASE_VERSION=latest #### Common Build related #### # DOCKER_BUILDKIT and COMPOSE_DOCKER_CLI_BUILD do not have effect here, we leave them as documentation +# DOCKER_BUILDKIT=1 +# COMPOSE_DOCKER_CLI_BUILD=1 + +### Common Traefik related ### #### Common Production related #### ADMIN_USER=medina ADMIN_PASSWORD=medinaPassword -# HTTPS_PORT must be 443 if you user step-ca +# to calculate password hash `openssl passwd -apr1 $ADMIN_PASSWORD` +# ADMIN_PASSWORD_HASH='$apr1$chTuJ7f9$.Ul8E16QYHtydKw.ehzZC.' +# to calculate password bcrypt hash `sudo apt-get update; sudo apt-get install -y apache2-utils; htpasswd -bnBC 12 "" $ADMIN_PASSWORD | tr -d ':\n'` +# ADMIN_PASSWORD_BCRYPT_HASH='$2y$12$NxJ.FkLgDZWWjc15y9bhX./GOTp67krCxWPanJLyCjofKyIN.zS96' +# HTTPS_PORT must be 443 if you use step-ca HTTPS_PORT=443 # server host is configured during the sync based on _ENV_LOCAL_ and _ENV_DEPLOY, _ENV_LOCAL_ will be used for test and release unless _ENV_RELEASE_ or _ENV_TEST_ specified -# SERVER_HOST= +# SERVER_HOST=project.org SERVER_HOST=192.168.56.1.nip.io #### Platform Specific #### TZ=Madrid # TRAEFIK_CONSTRAINTS=Label(`com.docker.compose.project`, `medina-production`) TRAEFIK_CONSTRAINTS= +PROJECT_NAME=medina KEYCLOAK_VERSION=12.0.4 EXTRA_CA_URL=https://git.code.tecnalia.com/smartdatalab/ca/-/raw/master/ca.crt.pem KEYCLOAK_URL=https://auth.192.168.56.1.nip.io +RELEASE_VERSION=latest #### Common docker-compose related #### # https://docs.docker.com/compose/reference/envvars/#compose_file#compose_project_name @@ -37,17 +63,16 @@ COMPOSE_PROJECT_NAME=medina-production-test # _ENV_TEST_COMPOSE_FILE_BASE= # These are oriented for testing # COMPOSE_FILE_BASE= # (MANDATORY) These are those main services of the project, that will apply to all the scenarios -COMPOSE_FILE_BASE= +COMPOSE_FILE_BASE=docker-compose.yaml # COMPOSE_FILE Is generated automatically - - - - -PORTAINER_BASE_PATH=git/portainer/ KEYCLOAK_BASE_PATH=git/keycloak/ KEYCLOAK_CONFIG_PATH= -STEP_CA_CONFIG_PATH=git/step-ca/ TRAEFIK_CONFIG_PATH=git/traefik/ -COMPOSE_FILE=docker-compose.yaml:git/traefik/docker-compose-dev.yaml:git/traefik/docker-compose-redirect-ca.yaml:git/traefik/docker-compose-ca.yaml:git/step-ca/docker-compose.yaml:git/portainer/docker-compose.yaml:git/keycloak/docker-compose.yaml:docker-compose-dev.yaml:build/docker-compose.yaml:git/portainer/build/docker-compose.yaml:git/keycloak/build/docker-compose.yaml:build/cache/docker-compose.yaml:git/portainer/build/cache/docker-compose.yaml:git/keycloak/build/cache/docker-compose.yaml:release/docker-compose.yaml:git/portainer/release/docker-compose.yaml:git/keycloak/release/docker-compose.yaml + +STEP_CA_CONFIG_PATH=git/step-ca/ +PORTAINER_BASE_PATH=git/portainer/ + +PORTAINER_BASE_PATH=git/portainer/ +COMPOSE_FILE=docker-compose.yaml:git/traefik/docker-compose-redirect-ca.yaml:git/traefik/docker-compose-acme.yaml:git/keycloak/docker-compose.yaml:git/traefik/docker-compose-dev.yaml:git/traefik/docker-compose-ca.yaml:git/step-ca/docker-compose.yaml:git/portainer/docker-compose.yaml:git/keycloak/docker-compose.yaml:docker-compose-dev.yaml:build/docker-compose.yaml:git/keycloak/build/docker-compose.yaml:git/portainer/build/docker-compose.yaml:git/keycloak/build/docker-compose.yaml:git/keycloak/build/cache/docker-compose.yaml:git/portainer/build/cache/docker-compose.yaml:git/keycloak/build/cache/docker-compose.yaml:release/docker-compose.yaml:git/keycloak/release/docker-compose.yaml:git/portainer/release/docker-compose.yaml:git/keycloak/release/docker-compose.yaml diff --git a/LICENSE b/LICENSE index 5b48678ba8a75d36016035706aca3d42b8ac224b..76895d82232776ebfc562cad32c43d981d04a9bb 100644 --- a/LICENSE +++ b/LICENSE @@ -186,7 +186,7 @@ same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright 2022 MEDINA / Public + Copyright 2022 MEDINA / WP2 / Task_2.2 Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/README.md b/README.md index c4b71855fc3841bc7b8df2483febfa1c60e8de7c..5f462f8c876145cb96ef8c78c28d9d0f795ef6f3 100644 --- a/README.md +++ b/README.md @@ -1,143 +1,131 @@ -<!-- Gitlab Specific Markdown guide https://docs.gitlab.com/ee/user/markdown.html --> -# Catalogue of Controls - -## Name -Catalogue of controls and security schemes. - -## Description -The component provides the following functionalities: -- Endorsement of Security Control Frameworks and related attributes: Security requirements, categories, controls, reference TOMs, metrics, evidences and assurance levels. -- Provision of guidance for the (self-)assessment of the requirements. -- Filtering of the information based on some values for the attributes - - Selection of requirements of a certain assurance level - - Selection of requirements from a certain framework - - Selection of metrics related to reference TOM - - Etc. -- Homogenization of the certification schemes: Provision of information about related requirements from different frameworks especially referenced to the EUCS. - -## Sub-components Description -- Security Control Frameworks (SFC) registry: The Security Control Frameworks registry will store the available list of Frameworks and the related info for a specific CSP. This component will also include corresponding databases. -- SFC back-end: The SFC backend is the core sub-component of the Catalogue. It will perform the actual discovery of the requirements, evidences, etc. from the Security Control Frameworks registry, considering the set of filters established by the user through the UI/ API. -- SFC frontend: This sub-component is the graphical user interface of the SFC. This SFC frontend will allow the user to indicate his requirements to filter and select a set of information related to the existing frameworks, i.e requirements of a certain assurance level , requirements from a certain framework, metrics related to reference TOM, references TOMs, guidance, etc. - -## Main logical Interfaces -|Interface name | Description | Interface technology | -|--|--|--| -|SFC UI |Graphical user interface of the SFC |Angular and Bootstrap| -|Discover requirements | Select a set of requirements (and related attributes) for a given CS | Rest API| - -## Interaction with other components -| Interfacing Component | Interface Description | -|--|--| -| NLCS editor | NLCS editor will request to the Catalogue the requirements and related information for a certain user | - -## Relevant sequence diagram/s - \ -_Sequence diagram started by the Security Compliance Manager._ - -## Programming language -jHipster framework based on microservices architecture: -- Java stack on the server side with Spring Boot -- Frontend with Angular and Bootstrap - -## License -Apache license v2.0 -# docker-compose project -This is a docker compose project that aim to instantiate the coc medina components for different purposes: -* production -* develop -* debug -* integration - -## Prerequisites -In order to use this vagrantfile you need virtualbox and vagrant. -* https://www.docker.com/ (latest tested version 20.10.8, build 3967b7d) -* https://docs.docker.com/compose/ (latest tested version 1.29.0, build 07737305) - -## How to use -The docker-compose can be started in different ways depending your purpose. But in all the cases the first step is to download the repo. The repo relays in git submodules and therefore if we need to build the component imanges (the typical case) we need to user the "--recurse-submodules" option to download the submodules. - -```bash -git clone --recurse-submodules https://git.code.tecnalia.com/medina/wp2/task_2.2/catalogue-deploy.git -cd catalogue-deploy -```` - -After that we will need to define those required variables that have no default value. We have put all these variables inside the [.env](.env) file. Are the ones that have no value assigned. - -```bash -cat .env | grep -e ".*=\s*$" -```` - -Based on that we will be required to assign values to some variables: - -```bash -export SERVER_HOST=somedomain -export ADMIN_PASSWORD=somestrongpassword - -```` - -### For production -By default the project is configured to support the production scenario. -```bash -docker-compose build -docker-compose up -d --no-build --remove-orphans -docker-compose down --remove-orphans -echo if we what to remove also the persistent information -docker-compose --volumes --remove-orphans -```` - -### For integration -Another tipical scenario is to run the docker-compose as part of the continous integration in tecnalia in that case it can be interesting to use the custom tecnalia traefik. In this case, we will to define two additional variables: - -```bash -export COMPOSE_FILE=docker-compose.yaml:docker-compose-dev.yaml:docker-compose-traefik-tecnalia-selfsigned.yaml:docker-compose-expose.yaml:docker-compose-redirect-http.yaml -export CERTIFICATE_SIGNING_KEY_PASSPHRASE=thesecretkeytodecryptthecaprivatekey -export HTTPS_PORT=8443 -docker-compose build -docker-compose up -d --no-build --remove-orphans -docker-compose down --remove-orphans -echo if we what to remove also the persistent information -docker-compose --volumes --remove-orphans -```` - -### For local development and debug -Another tipical scenario is to run the docker-compose to test the whole solution during development or debug activities inside a development computer. This is a possible example for using this in tecnalia. - -```bash -export SERVER_HOST=192.168.56.1.nip.io -export COMPOSE_FILE=docker-compose.yaml:docker-compose-dev.yaml:docker-compose-traefik-tecnalia-selfsigned.yaml:docker-compose-expose.yaml:docker-compose-redirect-http.yaml:docker-compose-dev-expose.yaml -export CERTIFICATE_SIGNING_KEY_PASSPHRASE=thesecretkeytodecryptthecaprivatekey -export ADMIN_PASSWORD=theadminpassword -export HTTPS_PORT=8443 -docker-compose build -docker-compose up -d --no-build --remove-orphans -docker-compose down --remove-orphans -echo if we what to remove also the persistent information -docker-compose down --volumes --remove-orphans -```` - -## How to access -Once we sucessfully deploy the docker-compose, we will be able to access the services at (supposing SERVER_HOST=192.168.56.1.nip.io and HTTPS_PORT=8443): -* https://192.168.56.1.nip.io:8443/ to access catalogue -* https://registry.192.168.56.1.nip.io:8443/ to access jhipster registry for development support - -Appart from those that we can activate if we are using other services, such as [development-services](git/deploy/development-services/README.md) -* https://traefik.192.168.56.1.nip.io:8443/ to access traefik dashboard -* https://traefik.192.168.56.1.nip.io:8443/api/http/routers to access traefik api -* https://portainer.192.168.56.1.nip.io:8443/ to access portainer -* https://ca.192.168.56.1.nip.io:8443/ to access the tecnalia ca in case we use the tecnalia traefik -* https://auth.192.168.56.1.nip.io:8443/ to access keycloak administration in case we use it -* ... - -## How to access at integration -The projects has a gitlab-ci workflow to continously deploy the catalogue at a integration server. Providing the integration server exists and it has a properly configured gitlab-runner with the required packages (mainly docker and docker compose). We will be able to access the services at: -* https://coc.poc.medina.esilab.org:8443/ -* https://registry.coc.poc.medina.esilab.org:8443/ to access jhipster registry for development support - -Appart from those that we can activate if we are using other services, such as [development-services](git/deploy/development-services/README.md) -* https://traefik.coc.poc.medina.esilab.org:8443/ to access traefik dashboard -* https://traefik.coc.poc.medina.esilab.org:8443/api/http/routers to access traefik api -* https://portainer.coc.poc.medina.esilab.org:8443/ to access portainer -* https://ca.coc.poc.medina.esilab.org:8443/ to access the tecnalia ca in case we use the tecnalia traefik -* https://auth.coc.poc.medina.esilab.org:8443/ to access keycloak administration in case we use it -* ... +<!-- Gitlab Specific Markdown guide https://docs.gitlab.com/ee/user/markdown.html --> +# Catalogue of Controls and Metrics + +## Name +Catalogue of controls and metrics. + +## Description +The component provides the following functionalities: +- Endorsement of Security Control Frameworks and related attributes: Security requirements, categories, controls, reference TOMs, metrics, evidences and assurance levels. +- Provision of guidance for the (self-)assessment of the requirements. +- Filtering of the information based on some values for the attributes + - Selection of requirements of a certain assurance level + - Selection of requirements from a certain framework + - Selection of metrics related to reference TOM + - Etc. +- Homogenization of the certification schemes: Provision of information about related requirements from different frameworks especially referenced to the EUCS. + +## Sub-components Description +- Security Control Frameworks (SFC) registry: The Security Control Frameworks registry will store the available list of Frameworks and the related info for a specific CSP. This component will also include corresponding databases. +- SFC back-end: The SFC backend is the core sub-component of the Catalogue. It will perform the actual discovery of the requirements, evidences, etc. from the Security Control Frameworks registry, considering the set of filters established by the user through the UI/ API. +- SFC frontend: This sub-component is the graphical user interface of the SFC. This SFC frontend will allow the user to indicate his requirements to filter and select a set of information related to the existing frameworks, i.e requirements of a certain assurance level , requirements from a certain framework, metrics related to reference TOM, references TOMs, guidance, etc. + +## Main logical Interfaces +|Interface name | Description | Interface technology | +|--|--|--| +|UI |Graphical user interface of the SFC |Angular and Bootstrap| +|Resources API | Select a set of requirements (and related attributes) for a given CS | Rest API| + +## Interaction with other components +| Interfacing Component | Interface Description | +|--|--| +| NL2CNL Translator/ Orchestrator/CCE/AMOE | Request to the Catalogue the EUCS requirements, metrics and related information | +| Risk Assessment and Optimisation Framework | Catalogue sends to RAOF the answers of the questionnaire | + +## Relevant sequence diagram/s + \ +_Sequence diagram started by the Security Compliance Manager._ + +## Programming language +jHipster framework based on microservices architecture: +- Java stack on the server side with Spring Boot +- Frontend with Angular and Bootstrap + +## License +Apache license v2.0 +# docker-compose project +This is a docker compose project that aim to instantiate the coc medina components for different purposes: +* production +* develop +* debug +* integration + +## Prerequisites +In order to use this vagrantfile you need virtualbox and vagrant. +* https://www.docker.com/ (latest tested version 20.10.8, build 3967b7d) +* https://docs.docker.com/compose/ (latest tested version 1.29.0, build 07737305) + +## How to use +The docker-compose can be started in different ways depending your purpose. But in all the cases the first step is to download the repo. The repo relays in git submodules and therefore if we need to build the component imanges (the typical case) we need to user the "--recurse-submodules" option to download the submodules. + +```bash +git clone --recurse-submodules https://git.code.tecnalia.com/medina/public/catalogue-of-controls.git +cd catalogue-deploy +```` + +After that we will need to define those required variables that have no default value. We have put all these variables inside the [.env](.env) file. Are the ones that have no value assigned. + +```bash +cat .env | grep -e ".*=\s*$" +```` + +Based on that we will be required to assign values to some variables: + +```bash +export SERVER_HOST=somedomain +export ADMIN_PASSWORD=somestrongpassword + +```` + +### For production +By default the project is configured to support the production scenario. +```bash +docker-compose build +docker-compose up -d --no-build --remove-orphans +docker-compose down --remove-orphans +echo if we what to remove also the persistent information +docker-compose --volumes --remove-orphans +```` + +### For integration +Another tipical scenario is to run the docker-compose as part of the continous integration in tecnalia. We use the custom tecnalia traefik. In this case, you have to define two additional variables: + +```bash +export COMPOSE_FILE=docker-compose.yaml:docker-compose-dev.yaml:docker-compose-traefik-tecnalia-selfsigned.yaml:docker-compose-expose.yaml:docker-compose-redirect-http.yaml +export CERTIFICATE_SIGNING_KEY_PASSPHRASE=thesecretkeytodecrypttheCAprivatekey +export HTTPS_PORT=8443 +docker-compose build +docker-compose up -d --no-build --remove-orphans +docker-compose down --remove-orphans +echo if we want to remove also the persistent information +docker-compose --volumes --remove-orphans +```` + +### For local development and debug +Another tipical scenario is to run the docker-compose to test the whole solution during development/debug activities inside a development computer. This is an example of this. + +```bash +export SERVER_HOST=192.168.56.1.nip.io +export COMPOSE_FILE=docker-compose.yaml:docker-compose-dev.yaml:docker-compose-traefik-tecnalia-selfsigned.yaml:docker-compose-expose.yaml:docker-compose-redirect-http.yaml:docker-compose-dev-expose.yaml +export CERTIFICATE_SIGNING_KEY_PASSPHRASE=thesecretkeytodecryptthecaprivatekey +export ADMIN_PASSWORD=theadminpassword +export HTTPS_PORT=8443 +docker-compose build +docker-compose up -d --no-build --remove-orphans +docker-compose down --remove-orphans +echo if we want to remove also the persistent information +docker-compose down --volumes --remove-orphans +```` + +## How to access +Once we sucessfully deploy the docker-compose, we will be able to access the services at (supposing SERVER_HOST=192.168.56.1.nip.io and HTTPS_PORT=8443): +* https://192.168.56.1.nip.io:8443/ to access catalogue +* https://registry.192.168.56.1.nip.io:8443/ to access jhipster registry for development support + +Appart from those that we can activate if we are using other services, such as [development-services](git/deploy/development-services/README.md) +* https://traefik.192.168.56.1.nip.io:8443/ to access traefik dashboard +* https://traefik.192.168.56.1.nip.io:8443/api/http/routers to access traefik api +* https://portainer.192.168.56.1.nip.io:8443/ to access portainer +* https://ca.192.168.56.1.nip.io:8443/ to access the tecnalia CA in case we use traefik +* https://auth.192.168.56.1.nip.io:8443/ to access keycloak administration in case we use it +* ... diff --git a/build/cache/docker-compose.yaml b/build/cache/docker-compose.yaml deleted file mode 100755 index ec357650852d7a1e47f25fcfeb156762e436550d..0000000000000000000000000000000000000000 --- a/build/cache/docker-compose.yaml +++ /dev/null @@ -1,28 +0,0 @@ -version: "3.8" - -services: - medina-mysql: - build: - cache_from: - - ${DOCKER_REGISTRY_CACHE_PREFIX}/medina/mysql:${DOCKER_REGISTRY_CACHE_VERSION:?err} - - jhipster-registry: - build: - cache_from: - - ${DOCKER_REGISTRY_CACHE_PREFIX}/medina/jhipster-registry:${DOCKER_REGISTRY_CACHE_VERSION:?err} - args: - BUILDKIT_INLINE_CACHE: 1 # For multistage docker - - cocgateway-app: - build: - cache_from: - - ${DOCKER_REGISTRY_CACHE_PREFIX}/medina/cocgateway-app:${DOCKER_REGISTRY_CACHE_VERSION:?err} - args: - BUILDKIT_INLINE_CACHE: 1 # For multistage docker - - cocbackend-app: - build: - args: - BUILDKIT_INLINE_CACHE: 1 # For multistage docker - cache_from: - - ${DOCKER_REGISTRY_CACHE_PREFIX}/medina/cocbackend-app:${DOCKER_REGISTRY_CACHE_VERSION:?err} diff --git a/build/docker-compose.yaml b/build/docker-compose.yaml index b8ffefdf76dd5aab9ed69b66d7d6db7ef6635221..e1031aafee0030520a1625d87179c8ab4ca546eb 100755 --- a/build/docker-compose.yaml +++ b/build/docker-compose.yaml @@ -3,6 +3,8 @@ services: build: context: git/cocMysql dockerfile: Dockerfile + cache_from: + - ${DOCKER_REGISTRY_CACHE_PREFIX}/medina/mysql:${DOCKER_REGISTRY_CACHE_VERSION:?err} jhipster-registry: build: @@ -10,6 +12,8 @@ services: dockerfile: Dockerfile args: EXTRA_CA_URL: ${EXTRA_CA_URL:?err} + cache_from: + - ${DOCKER_REGISTRY_CACHE_PREFIX}/medina/jhipster-registry:${DOCKER_REGISTRY_CACHE_VERSION:?err} cocgateway-app: build: @@ -17,6 +21,8 @@ services: dockerfile: Dockerfile args: EXTRA_CA_URL: ${EXTRA_CA_URL:?err} + cache_from: + - ${DOCKER_REGISTRY_CACHE_PREFIX}/medina/cocgateway-app:${DOCKER_REGISTRY_CACHE_VERSION:?err} cocbackend-app: build: @@ -24,3 +30,5 @@ services: dockerfile: Dockerfile args: EXTRA_CA_URL: ${EXTRA_CA_URL:?err} + cache_from: + - ${DOCKER_REGISTRY_CACHE_PREFIX}/medina/cocbackend-app:${DOCKER_REGISTRY_CACHE_VERSION:?err} diff --git a/build/inline-cache/docker-compose.yaml b/build/inline-cache/docker-compose.yaml new file mode 100644 index 0000000000000000000000000000000000000000..e4d6b0fea62a15f3d29ea48dbf84c4b4fa415da8 --- /dev/null +++ b/build/inline-cache/docker-compose.yaml @@ -0,0 +1,16 @@ +services: + + jhipster-registry: + build: + args: + BUILDKIT_INLINE_CACHE: 1 # For multistage docker + + cocgateway-app: + build: + args: + BUILDKIT_INLINE_CACHE: 1 # For multistage docker + + cocbackend-app: + build: + args: + BUILDKIT_INLINE_CACHE: 1 # For multistage docker diff --git a/data/keycloak-setup/192.168.56.1.digital.tecnalia.dev/realm.json b/data/keycloak-setup/192.168.56.1.digital.tecnalia.dev/realm.json new file mode 100644 index 0000000000000000000000000000000000000000..a97cd366e1928c52cdcf879eb41df85a5147f7e6 --- /dev/null +++ b/data/keycloak-setup/192.168.56.1.digital.tecnalia.dev/realm.json @@ -0,0 +1,5548 @@ +{ + "id" : "medina", + "realm" : "medina", + "displayName" : "", + "notBefore" : 1674222044, + "revokeRefreshToken" : false, + "refreshTokenMaxReuse" : 0, + "accessTokenLifespan" : 300, + "accessTokenLifespanForImplicitFlow" : 900, + "ssoSessionIdleTimeout" : 7200, + "ssoSessionMaxLifespan" : 36000, + "ssoSessionIdleTimeoutRememberMe" : 0, + "ssoSessionMaxLifespanRememberMe" : 0, + "offlineSessionIdleTimeout" : 2592000, + "offlineSessionMaxLifespanEnabled" : false, + "offlineSessionMaxLifespan" : 5184000, + "clientSessionIdleTimeout" : 0, + "clientSessionMaxLifespan" : 0, + "clientOfflineSessionIdleTimeout" : 0, + "clientOfflineSessionMaxLifespan" : 0, + "accessCodeLifespan" : 60, + "accessCodeLifespanUserAction" : 300, + "accessCodeLifespanLogin" : 1800, + "actionTokenGeneratedByAdminLifespan" : 43200, + "actionTokenGeneratedByUserLifespan" : 300, + "enabled" : true, + "sslRequired" : "external", + "registrationAllowed" : false, + "registrationEmailAsUsername" : false, + "rememberMe" : false, + "verifyEmail" : false, + "loginWithEmailAllowed" : true, + "duplicateEmailsAllowed" : false, + "resetPasswordAllowed" : false, + "editUsernameAllowed" : false, + "bruteForceProtected" : false, + "permanentLockout" : false, + "maxFailureWaitSeconds" : 900, + "minimumQuickLoginWaitSeconds" : 60, + "waitIncrementSeconds" : 60, + "quickLoginCheckMilliSeconds" : 1000, + "maxDeltaTimeSeconds" : 43200, + "failureFactor" : 30, + "roles" : { + "realm" : [ { + "id" : "2f6015a8-ddee-42f9-99c5-4760bd5fb5c7", + "name" : "ROLE_USER", + "description" : "temporary role for catalogue jhipster", + "composite" : false, + "clientRole" : false, + "containerId" : "medina", + "attributes" : { } + }, { + "id" : "9d96522b-ff58-498d-ad7f-11a747bd924e", + "name" : "offline_access", + "description" : "${role_offline-access}", + "composite" : false, + "clientRole" : false, + "containerId" : "medina", + "attributes" : { } + }, { + "id" : "417a650d-7309-41d2-aecd-cd179c656c65", + "name" : "Auditor", + "description" : "The Conformity Assessment Body (CAB) is a body that performs conformity assessment services with the goal of demonstrating that specified requirements are fulfilled.", + "composite" : true, + "composites" : { + "client" : { + "clouditor-orchestrator" : [ "Create", "Delete", "Read", "Update" ], + "api-swagger" : [ "user", "test-fake-role" ], + "integrated-ui" : [ "showCCE", "user", "showUser", "showOrchestrator", "admin" ] + } + }, + "clientRole" : false, + "containerId" : "medina", + "attributes" : { } + }, { + "id" : "aba5b760-352b-493c-8c2b-86657d5852aa", + "name" : "SecurityGovernance", + "description" : "IT Security Governance (UC1) - Its main objective is the protection of Bosch business models, products, services, and data.", + "composite" : true, + "composites" : { + "client" : { + "integrated-ui" : [ "showSATRA", "showCCE", "showAMOE", "showUser", "showCNL", "showCatalogue", "showOrchestrator", "admin" ] + } + }, + "clientRole" : false, + "containerId" : "medina", + "attributes" : { } + }, { + "id" : "9d2b69b9-28c2-4c79-bc75-316100a7027e", + "name" : "SecurityAnalyst", + "description" : "Security Analyst (UC1) - Responsible for ensuring that the Bosch Group’s digital assets and sensitive information are protected as well as evaluating and reporting on the efficiency of the security policies in place.", + "composite" : false, + "clientRole" : false, + "containerId" : "medina", + "attributes" : { } + }, { + "id" : "dca59f95-5177-4721-92b4-b817c7c5d423", + "name" : "ProductOwner", + "description" : "Product and Service Owner (UC1) - The Product & Service Owner is the central point of contact for all questions concerning a specific Bosch IT product or service.", + "composite" : true, + "composites" : { + "client" : { + "integrated-ui" : [ "showSATRA", "showCCE", "showAMOE", "user", "showUser", "showCNL", "showCatalogue", "showOrchestrator", "admin" ] + } + }, + "clientRole" : false, + "containerId" : "medina", + "attributes" : { } + }, { + "id" : "0f08df2b-4b64-487c-9e51-2580a02ae0ef", + "name" : "Customer", + "description" : "The customer is either a company consuming cloud products or services (B2B, business-to-business context), or an individual (B2C, business-to-customer context).", + "composite" : false, + "clientRole" : false, + "containerId" : "medina", + "attributes" : { } + }, { + "id" : "dac0890c-0957-40ed-b72f-37ca91a59d6e", + "name" : "Company", + "description" : "Most of the defined roles are employed by the company. Products of company are being audited", + "composite" : true, + "composites" : { + "client" : { + "integrated-ui" : [ "showSATRA", "showCCE", "showAMOE", "user", "showUser", "showCNL", "showCatalogue", "showOrchestrator" ] + } + }, + "clientRole" : false, + "containerId" : "medina", + "attributes" : { } + }, { + "id" : "f4c52c7f-c34d-4101-8c11-523dbc526d72", + "name" : "ICO", + "description" : "Internal Control Owner - Responsible for creating internal controls. Executing the internal controls.", + "composite" : false, + "clientRole" : false, + "containerId" : "medina", + "attributes" : { } + }, { + "id" : "a73d220e-2c6b-4451-a80d-7689f6722884", + "name" : "ProductSecurityEng", + "description" : "Product (Security) Engineer (UC1) - Oversees the build, deploy, and run of a product and its system components.", + "composite" : true, + "composites" : { + "client" : { + "integrated-ui" : [ "showSATRA", "showCCE", "showAMOE", "user", "showUser", "showCNL", "showCatalogue", "showOrchestrator", "admin" ] + } + }, + "clientRole" : false, + "containerId" : "medina", + "attributes" : { } + }, { + "id" : "ec325a48-83c2-4b16-96be-305dc4767132", + "name" : "uma_authorization", + "description" : "${role_uma_authorization}", + "composite" : false, + "clientRole" : false, + "containerId" : "medina", + "attributes" : { } + }, { + "id" : "a45d5e5d-b5a5-4a2d-8026-a2371ad84577", + "name" : "DomainGovernance", + "description" : "Domain Governance (UC1) - Acts as the core competence holder and responsible topic owner for product security", + "composite" : true, + "composites" : { + "client" : { + "integrated-ui" : [ "showSATRA", "showCCE", "showAMOE", "user", "showUser", "showCNL", "showCatalogue", "showOrchestrator", "admin" ] + } + }, + "clientRole" : false, + "containerId" : "medina", + "attributes" : { } + }, { + "id" : "64dbcf9f-4231-4163-828a-5fa4fe9db278", + "name" : "CISO", + "description" : "Chief Information Security Officer - Responsible for security in the company, chooses what security controls should be implemented", + "composite" : true, + "composites" : { + "client" : { + "integrated-ui" : [ "showSATRA", "showCCE", "showAMOE", "user", "showUser", "showCNL", "showCatalogue", "showOrchestrator" ] + } + }, + "clientRole" : false, + "containerId" : "medina", + "attributes" : { } + }, { + "id" : "acdc368d-14d9-4478-b102-b67cfadebf49", + "name" : "test-role-1", + "composite" : false, + "clientRole" : false, + "containerId" : "medina", + "attributes" : { } + }, { + "id" : "e7c3caa6-1e16-4cf6-9484-b0af649117df", + "name" : "Compliance Manager", + "description" : "Responsible for the implementation of security control frameworks.\nResponsible for the correct implementation of the internal controls.\nResponsible for incident management.\nResponsible for performing internal audits.", + "composite" : true, + "composites" : { + "realm" : [ "ROLE_USER", "ROLE_ADMIN" ], + "client" : { + "raof" : [ "engine", "uma_protection" ], + "cnl-editor-frontend" : [ "user" ], + "integrated-ui" : [ "user", "showSATRA", "showCCE", "showAMOE", "showUser", "showCNL", "showCatalogue", "showOrchestrator", "admin", "showSSI" ], + "nl2cnl-translator-client" : [ "user" ] + } + }, + "clientRole" : false, + "containerId" : "medina", + "attributes" : { } + }, { + "id" : "fd93daa9-1357-4ba3-989d-7bf4b7ba2a07", + "name" : "ROLE_ADMIN", + "description" : "temporary role for catalogue jhipster", + "composite" : false, + "clientRole" : false, + "containerId" : "medina", + "attributes" : { } + } ], + "client" : { + "catalogue-backend" : [ ], + "cce" : [ { + "id" : "aa5844fb-a4f8-4cfa-8514-1f4033e8bd9c", + "name" : "uma_protection", + "composite" : false, + "clientRole" : true, + "containerId" : "dc64b28b-a696-4b0c-8e24-2aeae138c3e5", + "attributes" : { } + } ], + "raof-app" : [ { + "id" : "e08ef386-bb91-4ce8-8a02-8f65755d0612", + "name" : "uma_protection", + "composite" : false, + "clientRole" : true, + "containerId" : "1c198016-f44c-4620-b2f6-821173bc2e54", + "attributes" : { } + } ], + "security-admin-console" : [ ], + "trustworthiness_verification" : [ ], + "wazuh-vat-evidence-collector-dev" : [ { + "id" : "3c40a84f-dc61-43d1-a607-e3fad0df3766", + "name" : "uma_protection", + "composite" : false, + "clientRole" : true, + "containerId" : "aa18689d-6d81-4b92-8b9e-291eb4733408", + "attributes" : { } + } ], + "clouditor-assessment" : [ ], + "account-console" : [ ], + "cce-frontend" : [ ], + "ssi-frontend" : [ ], + "amoe-client" : [ ], + "dsl-mapper-client" : [ { + "id" : "16f2a92a-594f-420a-92c7-e39fbee9901a", + "name" : "user", + "composite" : false, + "clientRole" : true, + "containerId" : "4cb90bba-1483-48f8-85c3-af800943c740", + "attributes" : { } + }, { + "id" : "e2b8af2e-38b0-4018-9a79-794fb47acd59", + "name" : "uma_protection", + "composite" : false, + "clientRole" : true, + "containerId" : "4cb90bba-1483-48f8-85c3-af800943c740", + "attributes" : { } + } ], + "clouditor-cli" : [ ], + "codyze" : [ ], + "admin-cli" : [ ], + "catalogue-jhipster-control-center" : [ ], + "catalogue-registry" : [ ], + "clouditor-orchestrator" : [ { + "id" : "d0e4fbcd-ae45-48c3-89d5-29b1b5f35107", + "name" : "Create", + "composite" : false, + "clientRole" : true, + "containerId" : "fb2b3d0e-e2d7-4cb2-819d-bab9043f0d11", + "attributes" : { } + }, { + "id" : "22de6b01-a691-4b28-8f1d-95050048ade7", + "name" : "Delete", + "composite" : false, + "clientRole" : true, + "containerId" : "fb2b3d0e-e2d7-4cb2-819d-bab9043f0d11", + "attributes" : { } + }, { + "id" : "49d1cb98-55b9-48b3-a21c-4c7e8638cc19", + "name" : "Read", + "composite" : false, + "clientRole" : true, + "containerId" : "fb2b3d0e-e2d7-4cb2-819d-bab9043f0d11", + "attributes" : { } + }, { + "id" : "11bd1875-8f19-4216-8a2c-6dd2a5895c00", + "name" : "Update", + "composite" : false, + "clientRole" : true, + "containerId" : "fb2b3d0e-e2d7-4cb2-819d-bab9043f0d11", + "attributes" : { } + } ], + "realm-management" : [ { + "id" : "e02ce89a-c0b9-43b5-b6be-5c515624927a", + "name" : "manage-clients", + "description" : "${role_manage-clients}", + "composite" : false, + "clientRole" : true, + "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", + "attributes" : { } + }, { + "id" : "5bc05c8b-6d6a-45a1-92f7-cc33f4fe57bd", + "name" : "view-authorization", + "description" : "${role_view-authorization}", + "composite" : false, + "clientRole" : true, + "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", + "attributes" : { } + }, { + "id" : "0ee5608f-ab3a-4a8e-889b-e0d230a2fc86", + "name" : "view-clients", + "description" : "${role_view-clients}", + "composite" : true, + "composites" : { + "client" : { + "realm-management" : [ "query-clients" ] + } + }, + "clientRole" : true, + "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", + "attributes" : { } + }, { + "id" : "c2bd9190-451c-45d7-9588-412e1c40d5fd", + "name" : "manage-authorization", + "description" : "${role_manage-authorization}", + "composite" : false, + "clientRole" : true, + "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", + "attributes" : { } + }, { + "id" : "83e3e683-50b5-4050-b88b-2178342a13f8", + "name" : "manage-events", + "description" : "${role_manage-events}", + "composite" : false, + "clientRole" : true, + "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", + "attributes" : { } + }, { + "id" : "4e9c2113-f0d3-4691-bb66-49e3ca218d63", + "name" : "query-clients", + "description" : "${role_query-clients}", + "composite" : false, + "clientRole" : true, + "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", + "attributes" : { } + }, { + "id" : "cdca2718-5853-4969-9b63-2186e0382085", + "name" : "query-realms", + "description" : "${role_query-realms}", + "composite" : false, + "clientRole" : true, + "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", + "attributes" : { } + }, { + "id" : "33eb311b-fdbc-4ccf-b367-ae2b1c8c2e55", + "name" : "view-users", + "description" : "${role_view-users}", + "composite" : true, + "composites" : { + "client" : { + "realm-management" : [ "query-users", "query-groups" ] + } + }, + "clientRole" : true, + "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", + "attributes" : { } + }, { + "id" : "56382323-69f8-4eca-b433-aa14ccc83be3", + "name" : "manage-identity-providers", + "description" : "${role_manage-identity-providers}", + "composite" : false, + "clientRole" : true, + "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", + "attributes" : { } + }, { + "id" : "2db34bf8-3fac-4fb8-8ed4-b7f44cadcb2e", + "name" : "create-client", + "description" : "${role_create-client}", + "composite" : false, + "clientRole" : true, + "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", + "attributes" : { } + }, { + "id" : "ae7b03e5-747f-4341-8add-1c872658bec4", + "name" : "view-events", + "description" : "${role_view-events}", + "composite" : false, + "clientRole" : true, + "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", + "attributes" : { } + }, { + "id" : "a607a195-5e2c-4701-855d-d202ba52a313", + "name" : "manage-users", + "description" : "${role_manage-users}", + "composite" : false, + "clientRole" : true, + "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", + "attributes" : { } + }, { + "id" : "3f2bf59d-4b3f-425a-a75f-e6b8c6d27af0", + "name" : "view-realm", + "description" : "${role_view-realm}", + "composite" : false, + "clientRole" : true, + "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", + "attributes" : { } + }, { + "id" : "d23239ef-028a-4409-b965-e20ea6ac8795", + "name" : "impersonation", + "description" : "${role_impersonation}", + "composite" : false, + "clientRole" : true, + "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", + "attributes" : { } + }, { + "id" : "f724e1e9-a878-4ae3-9bc8-995767add1a3", + "name" : "manage-realm", + "description" : "${role_manage-realm}", + "composite" : false, + "clientRole" : true, + "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", + "attributes" : { } + }, { + "id" : "e6b7421d-7d5c-4f1c-bb48-0a873c9870c4", + "name" : "query-users", + "description" : "${role_query-users}", + "composite" : false, + "clientRole" : true, + "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", + "attributes" : { } + }, { + "id" : "7a81ec99-e710-409d-bd34-ae3642a1912d", + "name" : "view-identity-providers", + "description" : "${role_view-identity-providers}", + "composite" : false, + "clientRole" : true, + "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", + "attributes" : { } + }, { + "id" : "fbeca797-27ee-44a0-8566-bec5666e6bcc", + "name" : "query-groups", + "description" : "${role_query-groups}", + "composite" : false, + "clientRole" : true, + "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", + "attributes" : { } + }, { + "id" : "f9ea5c84-0690-47f4-b887-a3351ca800de", + "name" : "realm-admin", + "description" : "${role_realm-admin}", + "composite" : true, + "composites" : { + "client" : { + "realm-management" : [ "manage-clients", "view-authorization", "view-clients", "manage-authorization", "manage-events", "query-clients", "query-realms", "view-users", "manage-identity-providers", "create-client", "view-events", "manage-users", "view-realm", "impersonation", "manage-realm", "query-users", "view-identity-providers", "query-groups" ] + } + }, + "clientRole" : true, + "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", + "attributes" : { } + } ], + "api-swagger" : [ { + "id" : "a7aa8c9f-7cc5-4c91-8657-31b74ba02a1a", + "name" : "uma_protection", + "composite" : false, + "clientRole" : true, + "containerId" : "a08fc1fe-7c85-4c1c-9d04-604c6e35faa8", + "attributes" : { } + }, { + "id" : "88fa7113-8fd5-4dd4-940d-e0e2e06471d4", + "name" : "user", + "composite" : false, + "clientRole" : true, + "containerId" : "a08fc1fe-7c85-4c1c-9d04-604c6e35faa8", + "attributes" : { } + }, { + "id" : "08979d05-5713-4826-a036-39a25cbbcba6", + "name" : "test-fake-role", + "description" : "this is a fake role, for testing purpose", + "composite" : false, + "clientRole" : true, + "containerId" : "a08fc1fe-7c85-4c1c-9d04-604c6e35faa8", + "attributes" : { } + } ], + "cnl-editor-frontend" : [ { + "id" : "910ffe29-95b3-4b82-a734-b24bff7cfa8d", + "name" : "user", + "composite" : false, + "clientRole" : true, + "containerId" : "15a81bd1-4edd-4e2a-87ec-3bbcac30d2a3", + "attributes" : { } + } ], + "life-cycle-manager" : [ ], + "integrated-ui" : [ { + "id" : "644bda67-3674-4a93-968d-8a7bb9679e50", + "name" : "showSATRA", + "composite" : false, + "clientRole" : true, + "containerId" : "1150f83f-37bc-4b14-98a0-e179aaee0f6c", + "attributes" : { } + }, { + "id" : "58b0ddb9-373c-47d1-889a-9adacc414bf0", + "name" : "showCCE", + "composite" : false, + "clientRole" : true, + "containerId" : "1150f83f-37bc-4b14-98a0-e179aaee0f6c", + "attributes" : { } + }, { + "id" : "eb0a3413-b986-4cb6-a49c-9148d89df25a", + "name" : "showAMOE", + "composite" : false, + "clientRole" : true, + "containerId" : "1150f83f-37bc-4b14-98a0-e179aaee0f6c", + "attributes" : { } + }, { + "id" : "258c00de-d88c-4239-908b-be79f895c3b0", + "name" : "user", + "composite" : false, + "clientRole" : true, + "containerId" : "1150f83f-37bc-4b14-98a0-e179aaee0f6c", + "attributes" : { } + }, { + "id" : "8309ecee-a10c-440b-909c-5c36d12c6e2e", + "name" : "showUser", + "composite" : false, + "clientRole" : true, + "containerId" : "1150f83f-37bc-4b14-98a0-e179aaee0f6c", + "attributes" : { } + }, { + "id" : "77ecaa02-0d8e-4544-8235-21c07c48d251", + "name" : "showCNL", + "composite" : false, + "clientRole" : true, + "containerId" : "1150f83f-37bc-4b14-98a0-e179aaee0f6c", + "attributes" : { } + }, { + "id" : "a4309640-7f2f-45b5-a0ed-bb9977d6b2e7", + "name" : "showCatalogue", + "composite" : false, + "clientRole" : true, + "containerId" : "1150f83f-37bc-4b14-98a0-e179aaee0f6c", + "attributes" : { } + }, { + "id" : "ceae1740-d2ed-414f-b316-651d192adef3", + "name" : "showOrchestrator", + "composite" : false, + "clientRole" : true, + "containerId" : "1150f83f-37bc-4b14-98a0-e179aaee0f6c", + "attributes" : { } + }, { + "id" : "ae424f76-ac11-4a9b-939d-67ab55a0fc5a", + "name" : "admin", + "composite" : false, + "clientRole" : true, + "containerId" : "1150f83f-37bc-4b14-98a0-e179aaee0f6c", + "attributes" : { } + }, { + "id" : "e779ba09-8cc8-4b87-8289-f96a6de40d24", + "name" : "showSSI", + "composite" : false, + "clientRole" : true, + "containerId" : "1150f83f-37bc-4b14-98a0-e179aaee0f6c", + "attributes" : { } + } ], + "ccd-client" : [ ], + "broker" : [ { + "id" : "381e01c5-2dce-4da6-854b-334d015e7224", + "name" : "read-token", + "description" : "${role_read-token}", + "composite" : false, + "clientRole" : true, + "containerId" : "8d1a867d-537c-433e-8234-b3582127cc54", + "attributes" : { } + } ], + "clouditor-ui" : [ ], + "raof" : [ { + "id" : "6de07826-dc41-4208-bc5e-8d64d38cfec2", + "name" : "engine", + "composite" : false, + "clientRole" : true, + "containerId" : "785a9f77-d06f-4a65-9ba9-341921fda61a", + "attributes" : { } + }, { + "id" : "9ecb4267-a5d3-421e-9aad-9b329fe4701d", + "name" : "uma_protection", + "composite" : false, + "clientRole" : true, + "containerId" : "785a9f77-d06f-4a65-9ba9-341921fda61a", + "attributes" : { } + } ], + "nl2cnl-translator-client" : [ { + "id" : "8fdf06d3-6c44-4aa3-bb0a-80dc589ced1c", + "name" : "uma_protection", + "composite" : false, + "clientRole" : true, + "containerId" : "9f7c65f7-9ae9-4c9e-9bd7-971d0cbe146d", + "attributes" : { } + }, { + "id" : "4486610d-0195-463c-bf2f-cf4cd10001c8", + "name" : "user", + "composite" : false, + "clientRole" : true, + "containerId" : "9f7c65f7-9ae9-4c9e-9bd7-971d0cbe146d", + "attributes" : { } + } ], + "catalogue-gateway" : [ ], + "clouditor-discovery" : [ ], + "account" : [ { + "id" : "ad76fbd3-fd48-4820-8454-c9e6e8b21da5", + "name" : "manage-consent", + "description" : "${role_manage-consent}", + "composite" : true, + "composites" : { + "client" : { + "account" : [ "view-consent" ] + } + }, + "clientRole" : true, + "containerId" : "8bd89baf-08f6-4e4b-8394-6b4dd6050ed2", + "attributes" : { } + }, { + "id" : "3cf9ad63-38af-430f-86da-bf7455dfb668", + "name" : "view-applications", + "description" : "${role_view-applications}", + "composite" : false, + "clientRole" : true, + "containerId" : "8bd89baf-08f6-4e4b-8394-6b4dd6050ed2", + "attributes" : { } + }, { + "id" : "a47fd133-6ba5-4870-af1b-9a17b76be404", + "name" : "view-consent", + "description" : "${role_view-consent}", + "composite" : false, + "clientRole" : true, + "containerId" : "8bd89baf-08f6-4e4b-8394-6b4dd6050ed2", + "attributes" : { } + }, { + "id" : "36ac4d35-7384-40c3-a877-7a2934bc9250", + "name" : "manage-account-links", + "description" : "${role_manage-account-links}", + "composite" : false, + "clientRole" : true, + "containerId" : "8bd89baf-08f6-4e4b-8394-6b4dd6050ed2", + "attributes" : { } + }, { + "id" : "3e5612a2-7c5c-4026-a6ac-7a332e266aab", + "name" : "manage-account", + "description" : "${role_manage-account}", + "composite" : true, + "composites" : { + "client" : { + "account" : [ "manage-account-links" ] + } + }, + "clientRole" : true, + "containerId" : "8bd89baf-08f6-4e4b-8394-6b4dd6050ed2", + "attributes" : { } + }, { + "id" : "1062c184-cad0-462d-ad3a-d51d5208536c", + "name" : "delete-account", + "description" : "${role_delete-account}", + "composite" : false, + "clientRole" : true, + "containerId" : "8bd89baf-08f6-4e4b-8394-6b4dd6050ed2", + "attributes" : { } + }, { + "id" : "d1a2381b-d165-43fb-a79d-8c614c46b96e", + "name" : "view-profile", + "description" : "${role_view-profile}", + "composite" : false, + "clientRole" : true, + "containerId" : "8bd89baf-08f6-4e4b-8394-6b4dd6050ed2", + "attributes" : { } + } ] + } + }, + "groups" : [ { + "id" : "8b3ee09d-0aa4-4382-be86-a8b84745b56a", + "name" : "AlwaysGreen", + "path" : "/AlwaysGreen", + "attributes" : { + "cloudserviceid" : [ "1b0d7b7e-a230-4d0c-8891-65d0b92e0fa1" ] + }, + "realmRoles" : [ ], + "clientRoles" : { }, + "subGroups" : [ ] + }, { + "id" : "e827087c-1649-47e6-a238-2acc1c81fe26", + "name" : "AlwaysGreenExceptOne", + "path" : "/AlwaysGreenExceptOne", + "attributes" : { + "cloudserviceid" : [ "e3a76767-0376-499a-a8b3-3ba1394fd5f5" ] + }, + "realmRoles" : [ ], + "clientRoles" : { }, + "subGroups" : [ ] + }, { + "id" : "5e615fa4-4770-455a-affa-4a4d51f27396", + "name" : "AlwaysRed", + "path" : "/AlwaysRed", + "attributes" : { + "cloudserviceid" : [ "2d645da4-9c45-40b4-b26f-12090cea4f6f" ] + }, + "realmRoles" : [ ], + "clientRoles" : { }, + "subGroups" : [ ] + }, { + "id" : "ed9dd061-e96c-47e0-95bd-fcc39e359c0c", + "name" : "CloudServiceProvidersGroup", + "path" : "/CloudServiceProvidersGroup", + "attributes" : { }, + "realmRoles" : [ ], + "clientRoles" : { }, + "subGroups" : [ { + "id" : "8e2617d0-5711-44d1-a93e-d05d4423a63b", + "name" : "Fabasoft Cloud Service Provider", + "path" : "/CloudServiceProvidersGroup/Fabasoft Cloud Service Provider", + "attributes" : { + "cloudserviceproviderid" : [ "Fabasoft" ] + }, + "realmRoles" : [ ], + "clientRoles" : { }, + "subGroups" : [ ] + }, { + "id" : "a9cae5cc-8824-47fc-9564-d3976b6ae0ff", + "name" : "CloudServiceProviderTest1", + "path" : "/CloudServiceProvidersGroup/CloudServiceProviderTest1", + "attributes" : { + "cloudserviceproviderid" : [ "CloudServiceProviderTest1ID" ] + }, + "realmRoles" : [ ], + "clientRoles" : { }, + "subGroups" : [ ] + }, { + "id" : "372d7fb2-acfd-4338-aa9a-c04c1fe139e7", + "name" : "Bosch Cloud Service Provider", + "path" : "/CloudServiceProvidersGroup/Bosch Cloud Service Provider", + "attributes" : { + "cloudserviceproviderid" : [ "Bosch" ] + }, + "realmRoles" : [ ], + "clientRoles" : { }, + "subGroups" : [ ] + } ] + }, { + "id" : "b8508c0d-57db-4136-a469-b70e1f6332cc", + "name" : "CloudServicesGroup", + "path" : "/CloudServicesGroup", + "attributes" : { }, + "realmRoles" : [ ], + "clientRoles" : { }, + "subGroups" : [ { + "id" : "b6421285-efcf-4a4e-9a71-432cf325e2e4", + "name" : "CloudServiceTest2", + "path" : "/CloudServicesGroup/CloudServiceTest2", + "attributes" : { + "cloudserviceid" : [ "CloudServiceTest2ID" ] + }, + "realmRoles" : [ ], + "clientRoles" : { }, + "subGroups" : [ ] + }, { + "id" : "6ff013fa-c765-43e0-b7d6-a0ab1cac5000", + "name" : "TestCCDCloudService", + "path" : "/CloudServicesGroup/TestCCDCloudService", + "attributes" : { + "cloudserviceid" : [ "73633f38-9509-4820-a867-68d49622c5f7" ] + }, + "realmRoles" : [ ], + "clientRoles" : { }, + "subGroups" : [ ] + }, { + "id" : "23bd87c3-c46f-47fa-9925-d26e7e8b3045", + "name" : "MichelaCS1", + "path" : "/CloudServicesGroup/MichelaCS1", + "attributes" : { + "cloudserviceid" : [ "71e9d06f-518c-4c95-be1b-011661220c4d" ] + }, + "realmRoles" : [ ], + "clientRoles" : { }, + "subGroups" : [ ] + }, { + "id" : "610a288f-b93b-4da2-ab58-a5e61b38dbc7", + "name" : "Fabasoft", + "path" : "/CloudServicesGroup/Fabasoft", + "attributes" : { + "cloudserviceid" : [ "27ec470e-952b-40e7-9167-a7c3e58bd53d" ] + }, + "realmRoles" : [ ], + "clientRoles" : { }, + "subGroups" : [ ] + }, { + "id" : "9dccce11-775b-4e2c-a471-90d91cc40dcf", + "name" : "Bosch", + "path" : "/CloudServicesGroup/Bosch", + "attributes" : { + "cloudserviceid" : [ "f712b8bc-5bd0-4df7-9e34-9e1fb2719763" ] + }, + "realmRoles" : [ ], + "clientRoles" : { }, + "subGroups" : [ ] + }, { + "id" : "c23dc3e7-334b-403f-a327-3f4761a8508a", + "name" : "Bosch_PaaS", + "path" : "/CloudServicesGroup/Bosch_PaaS", + "attributes" : { + "cloudserviceid" : [ "5a69a810-b523-4cb7-8f46-600098a9754f" ] + }, + "realmRoles" : [ ], + "clientRoles" : { }, + "subGroups" : [ ] + }, { + "id" : "fd59fb08-937f-4e3a-b9fd-cd3443781cad", + "name" : "DefaultCloudService", + "path" : "/CloudServicesGroup/DefaultCloudService", + "attributes" : { + "cloudserviceid" : [ "00000000-0000-0000-0000-000000000000" ] + }, + "realmRoles" : [ ], + "clientRoles" : { }, + "subGroups" : [ ] + }, { + "id" : "c7e191c6-ef16-4d6c-bc62-1cac4dbd8dc7", + "name" : "CloudServiceWithValidUUID", + "path" : "/CloudServicesGroup/CloudServiceWithValidUUID", + "attributes" : { + "cloudserviceid" : [ "813d82df-2d31-4ee1-9ca6-f38137bd1f14" ] + }, + "realmRoles" : [ ], + "clientRoles" : { }, + "subGroups" : [ ] + }, { + "id" : "3ae94354-6142-4999-a964-1c7fe5193657", + "name" : "Bosch_IaaS", + "path" : "/CloudServicesGroup/Bosch_IaaS", + "attributes" : { + "cloudserviceid" : [ "945d9c38-b2ad-4db5-9d33-cd10b7d5d840" ] + }, + "realmRoles" : [ ], + "clientRoles" : { }, + "subGroups" : [ ] + }, { + "id" : "f9da1040-2a1d-4dbb-b387-e68f159dd1b2", + "name" : "CloudServiceTest1", + "path" : "/CloudServicesGroup/CloudServiceTest1", + "attributes" : { + "cloudserviceid" : [ "CloudServiceTest1ID" ] + }, + "realmRoles" : [ ], + "clientRoles" : { }, + "subGroups" : [ ] + }, { + "id" : "f7822dbb-1b40-4992-903a-3102e83df6dc", + "name" : "hpe-csid1", + "path" : "/CloudServicesGroup/hpe-csid1", + "attributes" : { + "cloudserviceid" : [ "0000001-b2ad-4db5-9d33-cd10b7d5d840" ] + }, + "realmRoles" : [ ], + "clientRoles" : { }, + "subGroups" : [ ] + }, { + "id" : "7c09aad4-b0e8-4f00-8b40-05c8451de518", + "name" : "Bosch_SaaS", + "path" : "/CloudServicesGroup/Bosch_SaaS", + "attributes" : { + "cloudserviceid" : [ "35586422-bd0d-4a01-a467-7ced9c388748" ] + }, + "realmRoles" : [ ], + "clientRoles" : { }, + "subGroups" : [ ] + }, { + "id" : "d2fb3390-c515-41f9-9475-6abab61ae4d7", + "name" : "hpe-csid2", + "path" : "/CloudServicesGroup/hpe-csid2", + "attributes" : { + "cloudserviceid" : [ "00000002-b2ad-4db5-9d33-cd10b7d5d840" ] + }, + "realmRoles" : [ ], + "clientRoles" : { }, + "subGroups" : [ ] + } ] + }, { + "id" : "d6d56fa4-0c2c-4067-8e84-b705ebf2d788", + "name" : "NonPolicyService", + "path" : "/NonPolicyService", + "attributes" : { + "cloudserviceid" : [ "1d44a934-4783-4fda-9265-ec9f9bb145c5" ] + }, + "realmRoles" : [ ], + "clientRoles" : { }, + "subGroups" : [ ] + }, { + "id" : "515497a3-59d5-4020-ab57-d07d4bde9c74", + "name" : "OldDefaultCS", + "path" : "/OldDefaultCS", + "attributes" : { + "cloudserviceid" : [ "00000000-0000-0000-000000000000" ] + }, + "realmRoles" : [ ], + "clientRoles" : { }, + "subGroups" : [ ] + }, { + "id" : "3d01df79-5e32-4966-9ccb-a221bdd82b4e", + "name" : "is_admin", + "path" : "/is_admin", + "attributes" : { + "is_admin" : [ "TRUE" ] + }, + "realmRoles" : [ ], + "clientRoles" : { }, + "subGroups" : [ ] + } ], + "defaultRoles" : [ "offline_access", "uma_authorization" ], + "requiredCredentials" : [ "password" ], + "otpPolicyType" : "totp", + "otpPolicyAlgorithm" : "HmacSHA1", + "otpPolicyInitialCounter" : 0, + "otpPolicyDigits" : 6, + "otpPolicyLookAheadWindow" : 1, + "otpPolicyPeriod" : 30, + "otpSupportedApplications" : [ "FreeOTP", "Google Authenticator" ], + "webAuthnPolicyRpEntityName" : "keycloak", + "webAuthnPolicySignatureAlgorithms" : [ "ES256" ], + "webAuthnPolicyRpId" : "", + "webAuthnPolicyAttestationConveyancePreference" : "not specified", + "webAuthnPolicyAuthenticatorAttachment" : "not specified", + "webAuthnPolicyRequireResidentKey" : "not specified", + "webAuthnPolicyUserVerificationRequirement" : "not specified", + "webAuthnPolicyCreateTimeout" : 0, + "webAuthnPolicyAvoidSameAuthenticatorRegister" : false, + "webAuthnPolicyAcceptableAaguids" : [ ], + "webAuthnPolicyPasswordlessRpEntityName" : "keycloak", + "webAuthnPolicyPasswordlessSignatureAlgorithms" : [ "ES256" ], + "webAuthnPolicyPasswordlessRpId" : "", + "webAuthnPolicyPasswordlessAttestationConveyancePreference" : "not specified", + "webAuthnPolicyPasswordlessAuthenticatorAttachment" : "not specified", + "webAuthnPolicyPasswordlessRequireResidentKey" : "not specified", + "webAuthnPolicyPasswordlessUserVerificationRequirement" : "not specified", + "webAuthnPolicyPasswordlessCreateTimeout" : 0, + "webAuthnPolicyPasswordlessAvoidSameAuthenticatorRegister" : false, + "webAuthnPolicyPasswordlessAcceptableAaguids" : [ ], + "users" : [ { + "id" : "bb6244c3-35ec-4908-b4e0-73b159cc7a04", + "createdTimestamp" : 1646126460390, + "username" : "admin", + "enabled" : true, + "totp" : false, + "emailVerified" : true, + "firstName" : "admin", + "email" : "admin@localhost", + "attributes" : { + "cladmin" : [ "true" ] + }, + "credentials" : [ { + "id" : "0538b4a5-5a40-42f2-b92e-56cd9c6820f0", + "type" : "password", + "createdDate" : 1683189447590, + "secretData" : "{\"value\":\"aosiXWGkQS2nq7css2Bk39UvWjvuE6gfrmb/gajL3fRRqK0qzkYDcJvpR1nYo64XihoB8qKtyaAUdQ2LyfrpLA==\",\"salt\":\"FAbuyUYldOndssGKUHkiTA==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "ROLE_USER", "offline_access", "Auditor", "uma_authorization", "ROLE_ADMIN", "Compliance Manager" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ "/AlwaysGreen", "/AlwaysGreenExceptOne", "/AlwaysRed", "/CloudServicesGroup/Bosch", "/CloudServiceProvidersGroup/Bosch Cloud Service Provider", "/CloudServiceProvidersGroup/CloudServiceProviderTest1", "/CloudServicesGroup/CloudServiceTest1", "/CloudServicesGroup/CloudServiceTest2", "/CloudServicesGroup/CloudServiceWithValidUUID", "/CloudServicesGroup/DefaultCloudService", "/CloudServicesGroup/Fabasoft", "/CloudServiceProvidersGroup/Fabasoft Cloud Service Provider", "/NonPolicyService", "/OldDefaultCS", "/CloudServicesGroup/TestCCDCloudService", "/is_admin" ] + }, { + "id" : "08fbe789-4ada-4b3a-bcf1-dc20b469911b", + "createdTimestamp" : 1646739467160, + "username" : "amoe_test", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "firstName" : "First name of amoe_test", + "lastName" : "Last name of amoe_test", + "credentials" : [ { + "id" : "da7be389-1b6a-42fa-8eb6-95fc83dc1cfa", + "type" : "password", + "createdDate" : 1659086998243, + "secretData" : "{\"value\":\"t0KyuUWeAlO6kD1pr6T65d9XGn1dGPDLYHPlVWO2PLp8bdyfEw83swDl2DZxjLueSA2Ko9Oj9YjdkAzHGIFL0g==\",\"salt\":\"gMuE/1NUTwSHg5Wad0GfwA==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "ICO", "uma_authorization" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ "/AlwaysGreen", "/AlwaysGreenExceptOne", "/AlwaysRed", "/CloudServicesGroup/DefaultCloudService", "/CloudServicesGroup/Fabasoft" ] + }, { + "id" : "3c4f61ad-d73f-4f7e-9765-1423cdabab50", + "createdTimestamp" : 1652112647746, + "username" : "auditor", + "enabled" : true, + "totp" : false, + "emailVerified" : true, + "firstName" : "John", + "lastName" : "Doe", + "credentials" : [ { + "id" : "2f4b54a6-1156-4b45-a15a-9f82dc71f56b", + "type" : "password", + "createdDate" : 1652112667799, + "secretData" : "{\"value\":\"2d0Gsuw7tv/hqVqpyPgYvgZBhTFFjG4PzOvOPXyUjrQe51ObcPGrUQZnlcHv/eNAKGuIVpETuoDizmNtY0Q56A==\",\"salt\":\"0lLn1LPVUYiOqJvA4eUmBg==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "Auditor", "uma_authorization" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ "/CloudServiceProvidersGroup/CloudServiceProviderTest1", "/CloudServicesGroup/DefaultCloudService" ] + }, { + "id" : "02e668be-9d34-4eb5-ae44-a139de6f8f22", + "createdTimestamp" : 1652187672848, + "username" : "auditor_test", + "enabled" : true, + "totp" : false, + "emailVerified" : true, + "firstName" : "Test", + "lastName" : "Auditor", + "email" : "test@auditor.com", + "credentials" : [ { + "id" : "19bb6976-fb3c-4faa-909b-0391c123945c", + "type" : "password", + "createdDate" : 1652187687565, + "secretData" : "{\"value\":\"8id0z74ft3S127JZmjrj17SMlQFA5oRS50/JpzOSt5ivYc8d2XFcJEi/LgNQUPMc+OrBKzwGkqUOJAINGCgQ9w==\",\"salt\":\"jqiKjTRDRPABNeU1HRvUxw==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "Auditor", "uma_authorization" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "745cb22f-555b-4d93-8a77-f566494f1c12", + "createdTimestamp" : 1653297176816, + "username" : "bosch_test", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "email" : "michela.fazzolari@iit.cnr.it", + "credentials" : [ { + "id" : "b831343a-7f00-431b-b75f-852335d84347", + "type" : "password", + "createdDate" : 1653297431168, + "secretData" : "{\"value\":\"RY74rikcZ2dTQxWiMdtizGiTRHjH3uLjqrZR6o9NhQ3c3TMyl4u/BCKVwO3CGa1Y5BSBlUUb3u7PwgxkhCgwdw==\",\"salt\":\"fjV8yJwb94Raye/qg600vw==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "ROLE_USER", "offline_access", "Auditor", "uma_authorization", "Compliance Manager" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ "/CloudServicesGroup/Bosch", "/CloudServiceProvidersGroup/Bosch Cloud Service Provider" ] + }, { + "id" : "778ce3aa-e840-4fec-9b7a-52dde6a2f878", + "createdTimestamp" : 1671615249436, + "username" : "ccd_admin", + "enabled" : true, + "totp" : false, + "emailVerified" : true, + "firstName" : "CCD", + "lastName" : "Testuser", + "email" : "bernhard.cermak@fabasoft.com", + "credentials" : [ { + "id" : "b1f67032-d7da-4595-96fc-4d6f8073ba4d", + "type" : "password", + "userLabel" : "", + "createdDate" : 1671615440296, + "secretData" : "{\"value\":\"K+vbtk9rqKFZaD/Rs1p8t8uG+sz9xyyLs2KU89cXyWB7hFvdjsDD3VHz0/jzAWwAeN9Q6MOzCG3PtMCJJIlcsA==\",\"salt\":\"yUSxM8Vetd331zl/tfR+IQ==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "ROLE_USER", "offline_access", "Auditor", "uma_authorization", "CISO", "ROLE_ADMIN", "Compliance Manager" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ "/AlwaysGreen", "/AlwaysGreenExceptOne", "/AlwaysRed", "/CloudServicesGroup/DefaultCloudService", "/CloudServicesGroup/Fabasoft", "/CloudServiceProvidersGroup/Fabasoft Cloud Service Provider" ] + }, { + "id" : "beac8e83-64e4-4b47-8140-8a85fa36fd12", + "createdTimestamp" : 1668692868046, + "username" : "ciso", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "firstName" : "amoe read only", + "credentials" : [ { + "id" : "9b7d688c-f9e0-4210-9727-fe4313882715", + "type" : "password", + "createdDate" : 1668692879318, + "secretData" : "{\"value\":\"HmPYkMZRirfATQ1fCAI85xw/qm+/9Vkkjp6xSId7w8yCLQgBEPwruhRxbJ0GDou0xzoHGesKf9JMRLXbLsCVKg==\",\"salt\":\"FnMudEOWxeN+No1LB2wpXQ==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "ROLE_USER", "offline_access", "uma_authorization", "CISO" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ "/CloudServiceProvidersGroup/CloudServiceProviderTest1", "/CloudServicesGroup/DefaultCloudService" ] + }, { + "id" : "67bb2090-c670-4ce9-ac41-c48d8390a82d", + "createdTimestamp" : 1668528487642, + "username" : "cnledito-test", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "firstName" : "cnleditortest", + "lastName" : "test", + "email" : "cnleditortest@editor.com", + "credentials" : [ { + "id" : "5c044583-cf1e-4fad-92eb-9a1fa9f2c219", + "type" : "password", + "createdDate" : 1668528520774, + "secretData" : "{\"value\":\"u+/Bx8qHcKSTfJxsydwyihI4opGHi0eX7V2161D3xZy0XdtcLQj+wFLBZlRFRpvca7EJcr8d5XCkXQ1SVOvhSA==\",\"salt\":\"Ch9289q4Ljsl08F0qIGRPA==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization", "Compliance Manager" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "5b083c04-bbda-48be-8441-fbe16968902b", + "createdTimestamp" : 1650710929018, + "username" : "cnr-user", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "firstName" : "Stefano", + "lastName" : "Fagnano", + "email" : "stefano.fagnano@me.com", + "credentials" : [ { + "id" : "fe14429e-56cf-4810-8ca2-7fab0ea81a80", + "type" : "password", + "createdDate" : 1650710973177, + "secretData" : "{\"value\":\"t+/Zdw3TRlptIsNjJh22t1t2rJmNsanwsZkqfgI0++tKxhnq8pMZCHmX8RTLuotokLNPjzC+oWTxpOjdQwJ5vg==\",\"salt\":\"7NvfqfUVIqeY9uVBwG5+kw==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "ICO", "uma_authorization" ], + "clientRoles" : { + "raof" : [ "engine" ], + "raof-app" : [ "uma_protection" ], + "integrated-ui" : [ "user", "showSATRA", "showCCE", "showAMOE", "showUser", "showCNL", "showCatalogue", "showOrchestrator" ], + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 1660315722, + "groups" : [ ] + }, { + "id" : "efa7b51d-1c6a-4eb6-87ed-6e7afd3f5901", + "createdTimestamp" : 1651657436115, + "username" : "csp_test", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "credentials" : [ { + "id" : "02d21c6e-093f-4631-98fb-09a9315c8ee3", + "type" : "password", + "createdDate" : 1651657542422, + "secretData" : "{\"value\":\"PUExIha4Quy9RzbBQtRpXx5F5itYQrp3+fd5FcQuy3A4JjsRZ7DgZQ5abEvytgAKrI+vFUY9NvGeHR2vWijwoQ==\",\"salt\":\"EhGr0tjHnNSuKZp2hvNLHA==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization", "Compliance Manager" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "1247915b-d17c-4b5b-aad6-889c24225420", + "createdTimestamp" : 1646842473867, + "username" : "fabasoftpe", + "enabled" : true, + "totp" : false, + "emailVerified" : true, + "firstName" : "fabasoftpe", + "credentials" : [ { + "id" : "99ea9dc6-b4b3-4e0b-8aa9-2ecf58daa670", + "type" : "password", + "createdDate" : 1646842549296, + "secretData" : "{\"value\":\"rjCSXoy+G2SbrGgLqP8Qtx9eJYGheRLzVaZ2W7tZ7SO14I9K7W0GZFK7gg/wwZe7fNCT4c+kTWuuK42cR7JAiA==\",\"salt\":\"ViuDtUVx++5GGlqT+Kajvg==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "ROLE_USER", "offline_access", "Auditor", "uma_authorization", "Compliance Manager" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ "/CloudServicesGroup/Fabasoft", "/CloudServiceProvidersGroup/Fabasoft Cloud Service Provider" ] + }, { + "id" : "0f52f8dd-8347-4666-be72-2d44debec2d6", + "createdTimestamp" : 1675771346677, + "username" : "hpe-user1", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "credentials" : [ { + "id" : "cc5b9aa2-0fbb-44c6-a63d-4397bb117d7d", + "type" : "password", + "createdDate" : 1675771371499, + "secretData" : "{\"value\":\"BnLcEhRNKkj0UXexTGO0Jk7HvQp/uPP2P5M17MS9yHV/qGmrPnCX8bC7tU+bjnWfmS2lhtSXDTZIf8qZLtncWw==\",\"salt\":\"D9Ce0ExGm95QZ9jDZyO6hA==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "ROLE_USER", "offline_access", "uma_authorization", "Compliance Manager" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ "/CloudServicesGroup/hpe-csid1" ] + }, { + "id" : "3a3d32c9-6543-4ba7-b900-7dcabcf8457d", + "createdTimestamp" : 1675771545834, + "username" : "hpe-user2", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "credentials" : [ { + "id" : "9e9f5bf9-7378-4d2d-97cd-5904d72c83d2", + "type" : "password", + "createdDate" : 1675771558717, + "secretData" : "{\"value\":\"/dzDuLuAitMA1rzNf3+xUWI6/vrnkgS27tSyTLHQl8Ayn/8wSVwpEOU8dzeBPaNdYpyLs86v0Y0vVF0E0+KiEQ==\",\"salt\":\"VConj0TiO36bBTmmBTQUgg==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "ROLE_USER", "offline_access", "uma_authorization", "Compliance Manager" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ "/CloudServicesGroup/hpe-csid1", "/CloudServicesGroup/hpe-csid2" ] + }, { + "id" : "5cd36ec2-65fd-4373-aa16-9114d76d43da", + "createdTimestamp" : 1653465308946, + "username" : "jlunagar", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "firstName" : "Jesus", + "lastName" : "Luna", + "email" : "jesus.lunagarcia@de.bosch.com", + "credentials" : [ ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "federatedIdentities" : [ { + "identityProvider" : "oidc", + "userId" : "GKn0JglY4EuL/COIDpC4xtWS8XbWmlQcWNN1lxaxTMw=", + "userName" : "gkn0jgly4eul/coidpc4xtws8xbwmlqcwnn1lxaxtmw=" + } ], + "realmRoles" : [ "ROLE_USER", "offline_access", "uma_authorization", "Compliance Manager" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ "/CloudServicesGroup/Bosch", "/CloudServiceProvidersGroup/Bosch Cloud Service Provider" ] + }, { + "id" : "dbdb2c43-a90d-4bd8-a29a-c23d00e8a5fc", + "createdTimestamp" : 1646842573862, + "username" : "lawexpert", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "credentials" : [ { + "id" : "47c67cc2-9fec-471f-aee3-b93cb8fb50d4", + "type" : "password", + "createdDate" : 1646842584938, + "secretData" : "{\"value\":\"4u0v3JqYQ/m7qYSuG8gcxfdMveQyTLkOK1t9YTXsdH9b6XWmcmx+eemKvvZzlhGLrZ2JoyRv3Emr7E3gacWvbw==\",\"salt\":\"hKwIjTGtDpDCPw0r7xFMyA==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization", "Compliance Manager" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "c4eaac8d-860d-4f35-add0-00b52277deab", + "createdTimestamp" : 1668089005936, + "username" : "levilübbe", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "firstName" : "Levi", + "lastName" : "Lübbe", + "email" : "fixed-term.levi.luebbe@de.bosch.com", + "credentials" : [ ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "federatedIdentities" : [ { + "identityProvider" : "oidc", + "userId" : "n/s6GK+IJlhIlRsPzqrQtbn5RmwurgRTzMuZh/9IFGg=", + "userName" : "n/s6gk+ijlhilrspzqrqtbn5rmwurgrtzmuzh/9ifgg=" + } ], + "realmRoles" : [ "offline_access", "uma_authorization", "Compliance Manager" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "1a127e64-49ea-47ae-bc94-e65d60cc044f", + "createdTimestamp" : 1656060420821, + "username" : "luca", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "email" : "lucapetrillo0@gmail.com", + "credentials" : [ { + "id" : "89606e04-593a-462c-b105-49291a314f46", + "type" : "password", + "createdDate" : 1657004701136, + "secretData" : "{\"value\":\"AGZxDoD8TnZQWbjQ8C10czzhedMZbhik22BZwizM1NOWf1G1Bgk9jhSo3FG8Y8dSznlkHhqkux6pto3pFeAinA==\",\"salt\":\"t1l9/JcGqu80EmyPCHVJrA==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ "UPDATE_PASSWORD" ], + "realmRoles" : [ "offline_access", "uma_authorization" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "5459884f-0e81-4541-b0f7-039143074658", + "createdTimestamp" : 1647939833771, + "username" : "nl2cnl_test", + "enabled" : true, + "totp" : false, + "emailVerified" : true, + "firstName" : "", + "email" : "m.fazzolari@iit.cnr.it", + "credentials" : [ { + "id" : "0950817c-a5b2-4b9b-b0cf-8b7ae79526c2", + "type" : "password", + "createdDate" : 1651654675240, + "secretData" : "{\"value\":\"H5hcwQTSDwABIRHvMOOywIvJFEEDhn5GXyGttQVDJpqnY7uQaRD7KxfbXIb5nE9m495A4kpG5L0/AFCwdgL+ZQ==\",\"salt\":\"1Z6UllkkiwS6jf7FKA312Q==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "ROLE_USER", "offline_access", "Auditor", "uma_authorization", "ROLE_ADMIN", "Compliance Manager" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ "/CloudServicesGroup/MichelaCS1", "/CloudServicesGroup/hpe-csid1" ] + }, { + "id" : "870ee3ee-7640-4ef3-8f37-c99306d7b02f", + "createdTimestamp" : 1668755928215, + "username" : "noroles", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "firstName" : "I have no", + "lastName" : "roles", + "credentials" : [ { + "id" : "d73fd5de-b5ec-4196-90eb-376cca300001", + "type" : "password", + "createdDate" : 1668755939191, + "secretData" : "{\"value\":\"j3HO2+EYY6HVOtKrdktKCRv+xf29S3ic14aU2e0+BG33E3AJGwbQ26u8QePXtaQvcnLjB9tgX3fzhiD8o2uXnw==\",\"salt\":\"pR9RdzE892uBElC3UbV0ng==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "78161698-ec9d-4fdc-ae05-d1b0b1dc0d97", + "createdTimestamp" : 1652873527037, + "username" : "patrick.weiss3@de.bosch.com", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "firstName" : "Patrick", + "lastName" : "Weiss", + "email" : "patrick.weiss3@de.bosch.com", + "credentials" : [ ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "federatedIdentities" : [ { + "identityProvider" : "oidc", + "userId" : "TQQySlVjXN8OaaXkrKUKJEMCx3dfuu4MuIuKiRgXgF8=", + "userName" : "tqqyslvjxn8oaaxkrkukjemcx3dfuu4muiukirgxgf8=" + } ], + "realmRoles" : [ "offline_access", "uma_authorization", "Compliance Manager" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "bb6d0c7f-e4ea-4f42-9375-f741b1ebac97", + "createdTimestamp" : 1646841881112, + "username" : "policyexpert", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "credentials" : [ { + "id" : "f9c4ca91-072f-418e-8bfb-0ef499620490", + "type" : "password", + "createdDate" : 1646841889121, + "secretData" : "{\"value\":\"6OlHWWs4Bad2qqMXi7PdiCAsNLjQTmbhgssnGuFAlTeMJeI/k48B8ahGyrJ2RYO4WcM29yBCEBZoZOWx7QUXEQ==\",\"salt\":\"FUl+Hwy2OqSWb+po3PvAGQ==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization", "Compliance Manager" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ "/CloudServiceProvidersGroup/CloudServiceProviderTest1", "/CloudServicesGroup/CloudServiceTest1", "/CloudServicesGroup/CloudServiceTest2" ] + }, { + "id" : "7fcfeba8-2512-4c10-b1e8-fac6d623a83e", + "createdTimestamp" : 1647940816157, + "username" : "service-account-admin-cli", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "serviceAccountClientId" : "admin-cli", + "credentials" : [ ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "465eb553-71ea-47bb-8557-3753e1679b0b", + "createdTimestamp" : 1648629087836, + "username" : "service-account-api-swagger", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "serviceAccountClientId" : "api-swagger", + "credentials" : [ ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization" ], + "clientRoles" : { + "api-swagger" : [ "uma_protection" ], + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "4ccb51e5-5911-4052-914b-41120086c8ef", + "createdTimestamp" : 1648043982626, + "username" : "service-account-catalogue-backend", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "serviceAccountClientId" : "catalogue-backend", + "credentials" : [ ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "72b2d795-8d27-4aa7-a935-4c1ce274f27d", + "createdTimestamp" : 1650355454172, + "username" : "service-account-cce", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "serviceAccountClientId" : "cce", + "credentials" : [ ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization" ], + "clientRoles" : { + "cce" : [ "uma_protection" ], + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "4aafc668-9855-44b2-a079-a271a3c4a515", + "createdTimestamp" : 1646860326928, + "username" : "service-account-clouditor-assessment", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "serviceAccountClientId" : "clouditor-assessment", + "credentials" : [ ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "89145876-b402-435f-bcfc-1a5da1f948ac", + "createdTimestamp" : 1646860316152, + "username" : "service-account-clouditor-discovery", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "serviceAccountClientId" : "clouditor-discovery", + "credentials" : [ ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "7a3be6fa-aa06-4d47-92fe-0c7dbdcf081e", + "createdTimestamp" : 1652269527099, + "username" : "service-account-clouditor-orchestrator", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "serviceAccountClientId" : "clouditor-orchestrator", + "credentials" : [ ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "a5916f7c-3494-4b8b-a899-d6424762a7e8", + "createdTimestamp" : 1646917353062, + "username" : "service-account-codyze", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "serviceAccountClientId" : "codyze", + "credentials" : [ ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "b5130ada-9590-42ef-a690-ba7ff12f35bd", + "createdTimestamp" : 1657201467930, + "username" : "service-account-dsl-mapper-client", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "serviceAccountClientId" : "dsl-mapper-client", + "credentials" : [ ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ], + "dsl-mapper-client" : [ "uma_protection" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "6e8ff208-0ede-436c-b1ee-b853d33c3d81", + "createdTimestamp" : 1646998107929, + "username" : "service-account-life-cycle-manager", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "serviceAccountClientId" : "life-cycle-manager", + "credentials" : [ ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "7cdaece4-9f13-4a89-9e46-f56a3cee862e", + "createdTimestamp" : 1647940729928, + "username" : "service-account-nl2cnl-translator-client", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "serviceAccountClientId" : "nl2cnl-translator-client", + "credentials" : [ ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization" ], + "clientRoles" : { + "nl2cnl-translator-client" : [ "uma_protection" ], + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "20913f11-a80b-4b95-9e9c-3b7318275a9f", + "createdTimestamp" : 1650445410351, + "username" : "service-account-raof", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "serviceAccountClientId" : "raof", + "credentials" : [ ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization" ], + "clientRoles" : { + "raof" : [ "uma_protection" ], + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "42584464-92a0-40b9-a9ff-0a43a6358956", + "createdTimestamp" : 1651501788820, + "username" : "service-account-raof-app", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "serviceAccountClientId" : "raof-app", + "credentials" : [ ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization" ], + "clientRoles" : { + "raof-app" : [ "uma_protection" ], + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "d12a0ea0-d7d4-4194-b8f7-6e1190bbfcff", + "createdTimestamp" : 1650377634668, + "username" : "service-account-wazuh-vat-evidence-collector-dev", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "serviceAccountClientId" : "wazuh-vat-evidence-collector-dev", + "credentials" : [ ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization" ], + "clientRoles" : { + "wazuh-vat-evidence-collector-dev" : [ "uma_protection" ], + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "9c57f6db-6643-48b4-8fc8-cb48c627e6df", + "createdTimestamp" : 1674719353111, + "username" : "ssi-user", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "firstName" : "Aitor", + "lastName" : "GG", + "email" : "aitor.gomez@tecnalia.com", + "credentials" : [ { + "id" : "40582145-880c-4421-991f-8deaa243ffc4", + "type" : "password", + "createdDate" : 1674719424557, + "secretData" : "{\"value\":\"cDkRTyBio4JGyNnbmeJxuoXU3XA07VJ/A1jsrfZX93HXWqM2rfQdWDFl5wlqvyvaHLH+m5UICNPzPMhUg2qhfQ==\",\"salt\":\"ZM/7ntKfebO0NJ3/aOeZDg==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "ROLE_USER", "offline_access", "Auditor", "uma_authorization", "Compliance Manager" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "77bce8b9-706d-4249-a4cc-cacfa5a5b91b", + "createdTimestamp" : 1671626314628, + "username" : "t2", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "credentials" : [ { + "id" : "cbb382dd-a160-4202-a8c0-861afb87cf02", + "type" : "password", + "createdDate" : 1671626348428, + "secretData" : "{\"value\":\"dHUuLiejLrygJr6HaIwDqrwxu/ssA9/VIj9m51hSxnauSOp9hpmIGRmCYCZic0zvta/3mw1N2XUVfCW5KWR/Sw==\",\"salt\":\"bYGVI+Zooj2/GvXZ2MEStQ==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "ROLE_USER", "offline_access", "uma_authorization", "ROLE_ADMIN", "Compliance Manager" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "2ea72f64-2701-4b3b-ba1d-532149d37202", + "createdTimestamp" : 1652186093284, + "username" : "test_compliance_manager", + "enabled" : true, + "totp" : true, + "emailVerified" : true, + "firstName" : "Test", + "lastName" : "Manager", + "email" : "test@manager.com", + "credentials" : [ { + "id" : "70348399-c811-4b3e-96a3-991579b32bb7", + "type" : "password", + "createdDate" : 1652186110401, + "secretData" : "{\"value\":\"7bYUhg72bGCJCY+PRnuL0yO496Miksy+Psc+YGGWPtD0OJdzIvhGW0B6wnj6YInAQEfh8TN/h/FqLDkQMIYWcg==\",\"salt\":\"TGfGXtzLm0dPGXjuT2dCnw==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + }, { + "id" : "1d57e74b-6017-4d55-bb0d-25d434748402", + "type" : "otp", + "userLabel" : "Mobile Phone", + "createdDate" : 1652186263250, + "secretData" : "{\"value\":\"Dgk5BqB0qJ1k9Afll5mj\"}", + "credentialData" : "{\"subType\":\"totp\",\"digits\":6,\"counter\":0,\"period\":30,\"algorithm\":\"HmacSHA1\"}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization", "Compliance Manager" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "e19545f8-3579-483f-9004-790d578dddfa", + "createdTimestamp" : 1674145886816, + "username" : "uc1_auditor", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "credentials" : [ { + "id" : "70d94477-ceec-4932-9935-4ee984d14389", + "type" : "password", + "createdDate" : 1674145904588, + "secretData" : "{\"value\":\"ksIULvCzo+bvULy0jirrF8rtvbbWAfyzSy/eMfuqF5mnziIGqxWyIC+KwAQTqhys8l7rTaGZLNzdyn17r1/K0Q==\",\"salt\":\"RvlSLO78qi1K8lGMxOhNHg==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "Auditor", "uma_authorization" ], + "clientRoles" : { + "raof" : [ "engine" ], + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ "/CloudServicesGroup/Bosch_IaaS", "/CloudServicesGroup/Bosch_PaaS" ] + }, { + "id" : "6d6d63b1-e1fd-461e-9427-d2891934f2c8", + "createdTimestamp" : 1674145751069, + "username" : "uc1_ciso", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "credentials" : [ { + "id" : "fb3515d2-cb63-4755-9891-a59bfe03de91", + "type" : "password", + "createdDate" : 1674145765210, + "secretData" : "{\"value\":\"YpfIVnyCtPFS0eIw6hOvrR6IN5KtejRLRaS+uOvp1MTUTXqzBSi7eeJyBFs2f/LEuwW2M2+1MocaJDmT+AOZCg==\",\"salt\":\"cTW2gbBBk6chX9YZcQZNEg==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization", "CISO" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ "/AlwaysGreen", "/AlwaysGreenExceptOne", "/AlwaysRed", "/CloudServicesGroup/Bosch", "/CloudServiceProvidersGroup/Bosch Cloud Service Provider", "/CloudServicesGroup/Bosch_IaaS", "/CloudServicesGroup/Bosch_PaaS", "/CloudServicesGroup/Bosch_SaaS", "/CloudServiceProvidersGroup/CloudServiceProviderTest1", "/CloudServicesGroup/CloudServiceTest1", "/CloudServicesGroup/CloudServiceTest2", "/CloudServicesGroup/CloudServiceWithValidUUID", "/CloudServicesGroup/DefaultCloudService", "/CloudServicesGroup/Fabasoft", "/CloudServiceProvidersGroup/Fabasoft Cloud Service Provider", "/CloudServicesGroup/MichelaCS1", "/CloudServicesGroup/TestCCDCloudService", "/CloudServicesGroup/hpe-csid1", "/CloudServicesGroup/hpe-csid2" ] + }, { + "id" : "a297bee2-1e9e-4c2b-aee8-9895816ab47c", + "createdTimestamp" : 1674145341569, + "username" : "uc1_domgov", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "credentials" : [ { + "id" : "5b4aad96-5016-42df-afec-f9893e280c4d", + "type" : "password", + "createdDate" : 1674145359184, + "secretData" : "{\"value\":\"N6w0KcmWLsMENdat9eaMRoM34QZAxPjEiT55YVvnmEF6v2j6RNqHVv17hXWyXsEkNalyRi7jaERxOF3IQGF0kA==\",\"salt\":\"8jkW8WDLldHOJ1h5F7oGKg==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "SecurityGovernance", "uma_authorization" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ "/CloudServicesGroup/Bosch_IaaS", "/CloudServicesGroup/Bosch_PaaS" ] + }, { + "id" : "d7b43b52-b048-4fea-a90b-ce6388b18831", + "createdTimestamp" : 1674145455906, + "username" : "uc1_prodown", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "credentials" : [ { + "id" : "0544042d-3b6d-4995-a680-30c8f398e688", + "type" : "password", + "createdDate" : 1674145475221, + "secretData" : "{\"value\":\"RwVqLSQax/flyOgNk1cHoYoAmA0+uhE4K7jrn+hgTZ2k/CPuuhWcXTh8C/QjO0TmiSKj9tew1SiWDjY+vdr8AQ==\",\"salt\":\"MRKS4kOhNIhivhjPFgVxVA==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization", "ProductOwner" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ "/CloudServicesGroup/Bosch_IaaS" ] + }, { + "id" : "027b55fb-dec7-4ae2-a9e6-eaf6a3cd0f50", + "createdTimestamp" : 1674145592731, + "username" : "uc1_prodsec", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "credentials" : [ { + "id" : "e8bb2853-4cdc-4392-bde3-03549222999f", + "type" : "password", + "createdDate" : 1674145608293, + "secretData" : "{\"value\":\"tQcf31ARRsR2FMO9NsadvUG+TVtVrL3krEebP0C2aX3HfyT3yKc9WWK9vB7jg5eyEsj8cJ2bVyo0jXkw5xnfrg==\",\"salt\":\"qYccy+Nsyj9+uJ56Jf9NmQ==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "ProductSecurityEng", "uma_authorization" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ "/CloudServicesGroup/Bosch_IaaS" ] + }, { + "id" : "8cd26e6b-af60-4192-9962-489ac1a586c2", + "createdTimestamp" : 1674144766118, + "username" : "uc1_secanalyst", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "credentials" : [ { + "id" : "201521cd-677e-4a0b-91f4-be2a240747c4", + "type" : "password", + "createdDate" : 1674144783147, + "secretData" : "{\"value\":\"5Akf4Tyfbenem77IjCv2enXE90qzVCTcRVZq+2FguHTbaY3TTlwDjKmzHMXaia8h2rmOc3x9F0Eo+E9DMWFczQ==\",\"salt\":\"rWV6q1kzfej5oTOOEVlHyQ==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "SecurityAnalyst", "uma_authorization" ], + "clientRoles" : { + "integrated-ui" : [ "user", "showSATRA", "showCCE", "showAMOE", "showUser", "showCNL", "showCatalogue", "showOrchestrator", "admin" ], + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ "/CloudServicesGroup/Bosch_IaaS", "/CloudServicesGroup/Bosch_PaaS", "/CloudServicesGroup/Bosch_SaaS" ] + }, { + "id" : "20a895c6-4cb9-4707-a06c-804d5328b67c", + "createdTimestamp" : 1674144525022, + "username" : "uc1_secgov", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "credentials" : [ { + "id" : "6f2db9a7-2879-43cc-9581-6bd8682052c0", + "type" : "password", + "createdDate" : 1674144659301, + "secretData" : "{\"value\":\"b1RipaQ+5wTvV3auTm1y7E8JqqY7XyWjOk3PFcQcKtVvHX0I9mEsem05nd2qImgX2M4d25Udshsv2WkY9v3yfw==\",\"salt\":\"if6yR8YUa7oV2UYXB8gBDg==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "SecurityGovernance", "uma_authorization" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ "/CloudServicesGroup/Bosch_IaaS", "/CloudServicesGroup/Bosch_PaaS", "/CloudServicesGroup/Bosch_SaaS" ] + }, { + "id" : "a2d9c454-960f-47e9-860e-e1876cdd81e7", + "createdTimestamp" : 1648054983093, + "username" : "user", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "firstName" : "U.", + "lastName" : "Ser", + "email" : "user@localhost", + "credentials" : [ { + "id" : "b6a60d24-da76-47f4-a07b-885bac646b7a", + "type" : "password", + "createdDate" : 1650406346090, + "secretData" : "{\"value\":\"NTNpm0k7ky3gLf9pcYTklGY8qn0LPwCrhUYu94nhHVUl1vp5IHb5eSjgFJjpFaKKObNDcz7qJFWjyJ/mWCtwGA==\",\"salt\":\"fQAJhWFTktzewkFQ5ypbRQ==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "ROLE_USER", "offline_access", "Auditor", "uma_authorization" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "228eed5c-845a-42b6-a60d-27bfe62167c3", + "createdTimestamp" : 1659009856941, + "username" : "usertest", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "credentials" : [ { + "id" : "5909c50c-2225-4403-8995-3132b851b1c0", + "type" : "password", + "createdDate" : 1659009866614, + "secretData" : "{\"value\":\"PNVxA2+Kv2nyJfQjLcDvYagzfE/loAyrsJ1QEUkhL/bVWDku+VJu/QkCKXU1Dr4rTnTGBaOxl2ASFoRm6oP3Cg==\",\"salt\":\"T0N9Ed98G4wz5iBwyo2tRQ==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization", "Compliance Manager" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ "/CloudServiceProvidersGroup/CloudServiceProviderTest1", "/CloudServicesGroup/CloudServiceTest1" ] + }, { + "id" : "a3f3653e-d47e-4d21-bae4-40265bf90318", + "createdTimestamp" : 1667576437610, + "username" : "xlab", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "credentials" : [ { + "id" : "9238dc63-0ef0-47a9-8c53-2bce6f4f35b2", + "type" : "password", + "createdDate" : 1667576457684, + "secretData" : "{\"value\":\"jw9KOFdG6tGZBMY7NdX2FNtvCBXfq4igmlEOCZ67jPRaWpPASPlnYD5EVqNfcmVBvGmnjV73PMUgo4L/Zg/9pw==\",\"salt\":\"DRbV1mX842qUu+Zifrm4Gg==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "Customer", "ROLE_USER", "offline_access", "Auditor", "Company", "ICO", "uma_authorization", "CISO", "test-role-1", "Compliance Manager" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + } ], + "scopeMappings" : [ { + "clientScope" : "offline_access", + "roles" : [ "offline_access" ] + } ], + "clientScopeMappings" : { + "account" : [ { + "client" : "account-console", + "roles" : [ "manage-account" ] + } ] + }, + "clients" : [ { + "id" : "8bd89baf-08f6-4e4b-8394-6b4dd6050ed2", + "clientId" : "account", + "name" : "${client_account}", + "rootUrl" : "${authBaseUrl}", + "baseUrl" : "/realms/medina/account/", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "533f8bfc-73ca-4950-a17e-29510052e70a", + "defaultRoles" : [ "manage-account", "view-profile" ], + "redirectUris" : [ "/realms/medina/account/*" ], + "webOrigins" : [ ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : false, + "serviceAccountsEnabled" : false, + "publicClient" : false, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : false, + "nodeReRegistrationTimeout" : 0, + "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "8f7fee7a-d32e-4c08-85fd-0a92ace43970", + "clientId" : "account-console", + "name" : "${client_account-console}", + "rootUrl" : "${authBaseUrl}", + "baseUrl" : "/realms/medina/account/", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "0ffbdc8a-e2b4-4693-abc0-cf08d0a3127e", + "redirectUris" : [ "/realms/medina/account/*" ], + "webOrigins" : [ ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : false, + "serviceAccountsEnabled" : false, + "publicClient" : true, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "pkce.code.challenge.method" : "S256" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : false, + "nodeReRegistrationTimeout" : 0, + "protocolMappers" : [ { + "id" : "edc42cad-bd34-4811-8354-0adaee774340", + "name" : "audience resolve", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-audience-resolve-mapper", + "consentRequired" : false, + "config" : { } + } ], + "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "24244b46-4845-4734-a061-bcb8ec91b84c", + "clientId" : "admin-cli", + "name" : "${client_admin-cli}", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "c29d2164-1f3d-476b-951c-c5eea7518fd6", + "redirectUris" : [ ], + "webOrigins" : [ ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : false, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : true, + "serviceAccountsEnabled" : true, + "publicClient" : false, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "false", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : 0, + "protocolMappers" : [ { + "id" : "8b8f8749-0adc-492d-a73d-3029413881be", + "name" : "Client ID", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientId", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientId", + "jsonType.label" : "String" + } + }, { + "id" : "6117fb7e-ecbe-4f0f-90da-d5a5c805e5d7", + "name" : "Client IP Address", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientAddress", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientAddress", + "jsonType.label" : "String" + } + }, { + "id" : "786a08b5-a459-43d0-b0d4-1d45a084a14a", + "name" : "Client Host", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientHost", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientHost", + "jsonType.label" : "String" + } + } ], + "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "a25b15fc-202b-4dc6-9340-fcc94f491a24", + "clientId" : "amoe-client", + "rootUrl" : "https://amoe-dev.192.168.56.1.digital.tecnalia.dev/", + "adminUrl" : "https://amoe-dev.192.168.56.1.digital.tecnalia.dev/", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "781dfe86-109c-47f5-8776-72a1aad0a370", + "redirectUris" : [ "*" ], + "webOrigins" : [ "*" ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : true, + "serviceAccountsEnabled" : false, + "publicClient" : false, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "backchannel.logout.url" : "https://amoe-dev.192.168.56.1.digital.tecnalia.dev/openid/logout_request", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "protocolMappers" : [ { + "id" : "7adfc5e5-5248-4737-8b84-78567a897980", + "name" : "Client Host", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientHost", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientHost", + "jsonType.label" : "String" + } + }, { + "id" : "f96e6e25-77e4-4ffe-a4ca-5081f6dd3488", + "name" : "Client ID", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientId", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientId", + "jsonType.label" : "String" + } + }, { + "id" : "0078d78f-a368-41c5-9c41-16ba08b0dd64", + "name" : "Client IP Address", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientAddress", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientAddress", + "jsonType.label" : "String" + } + } ], + "defaultClientScopes" : [ "web-origins", "role_list", "cloudservice", "offline_access", "profile", "roles", "cladmin-backend-services", "email" ], + "optionalClientScopes" : [ "address", "phone", "microprofile-jwt" ] + }, { + "id" : "a08fc1fe-7c85-4c1c-9d04-604c6e35faa8", + "clientId" : "api-swagger", + "rootUrl" : "https://api-swagger-dev.192.168.56.1.digital.tecnalia.dev", + "adminUrl" : "https://api-swagger-dev.192.168.56.1.digital.tecnalia.dev", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "c29a5cf2-52c0-4fa2-89fc-8951fa80ce84", + "redirectUris" : [ "https://api-swagger-dev.192.168.56.1.digital.tecnalia.dev/*" ], + "webOrigins" : [ "https://api-swagger-dev.192.168.56.1.digital.tecnalia.dev" ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : true, + "serviceAccountsEnabled" : true, + "authorizationServicesEnabled" : true, + "publicClient" : false, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "protocolMappers" : [ { + "id" : "a1b33188-ca81-44c0-ba56-772581a94038", + "name" : "Client IP Address", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientAddress", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientAddress", + "jsonType.label" : "String" + } + }, { + "id" : "7455b7e4-2b73-4a6d-b7e6-8434370a7a85", + "name" : "Client Host", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientHost", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientHost", + "jsonType.label" : "String" + } + }, { + "id" : "d9167dc9-6937-4bea-bc20-6e885857ccd0", + "name" : "Client ID", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientId", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientId", + "jsonType.label" : "String" + } + } ], + "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ], + "authorizationSettings" : { + "allowRemoteResourceManagement" : true, + "policyEnforcementMode" : "ENFORCING", + "resources" : [ { + "name" : "Default Resource", + "type" : "urn:api-swagger:resources:default", + "ownerManagedAccess" : false, + "attributes" : { }, + "_id" : "b8d55282-f977-4e89-9e8e-2b3e8ef07200", + "uris" : [ "/*" ] + } ], + "policies" : [ { + "id" : "9dc0a736-90a6-4428-be5a-0695b9153f93", + "name" : "Default Policy", + "description" : "A policy that grants access only for users within this realm", + "type" : "js", + "logic" : "POSITIVE", + "decisionStrategy" : "AFFIRMATIVE", + "config" : { + "code" : "// by default, grants any permission associated with this policy\n$evaluation.grant();\n" + } + }, { + "id" : "4058b893-6396-4351-ae9c-e4ecf5329d18", + "name" : "Default Permission", + "description" : "A permission that applies to the default resource type", + "type" : "resource", + "logic" : "POSITIVE", + "decisionStrategy" : "UNANIMOUS", + "config" : { + "defaultResourceType" : "urn:api-swagger:resources:default", + "applyPolicies" : "[\"Default Policy\"]" + } + } ], + "scopes" : [ ], + "decisionStrategy" : "UNANIMOUS" + } + }, { + "id" : "8d1a867d-537c-433e-8234-b3582127cc54", + "clientId" : "broker", + "name" : "${client_broker}", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "4293f846-3a76-4628-a9a4-810bebcdc51b", + "redirectUris" : [ ], + "webOrigins" : [ ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : false, + "serviceAccountsEnabled" : false, + "publicClient" : false, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : false, + "nodeReRegistrationTimeout" : 0, + "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "df274002-83dd-4c7f-b64b-8cf7b90d9a97", + "clientId" : "catalogue-backend", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "47b59168-f965-4a6f-941c-ae7ee1ba463c", + "redirectUris" : [ ], + "webOrigins" : [ ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : false, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : false, + "serviceAccountsEnabled" : true, + "publicClient" : false, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "protocolMappers" : [ { + "id" : "6ea5df11-551c-44e4-a4e7-74e787bea43e", + "name" : "Client Host", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientHost", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientHost", + "jsonType.label" : "String" + } + }, { + "id" : "0544b98a-f678-4395-b3cf-bdb0529a5661", + "name" : "Client IP Address", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientAddress", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientAddress", + "jsonType.label" : "String" + } + }, { + "id" : "adace2ba-512e-4856-a187-75031220377d", + "name" : "Client ID", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientId", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientId", + "jsonType.label" : "String" + } + } ], + "defaultClientScopes" : [ "web-origins", "role_list", "cloudservice", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "fa074dc3-e8de-4f34-9437-dc5d93f60f9a", + "clientId" : "catalogue-gateway", + "rootUrl" : "https://192.168.56.1.digital.tecnalia.dev", + "adminUrl" : "https://192.168.56.1.digital.tecnalia.dev", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "1895c8be-10f2-4243-a7da-8443aa1a2851", + "redirectUris" : [ "*" ], + "webOrigins" : [ "*" ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : true, + "directAccessGrantsEnabled" : false, + "serviceAccountsEnabled" : false, + "publicClient" : true, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "defaultClientScopes" : [ "web-origins", "jhipster", "role_list", "cloudservice", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "b7769853-8605-4a36-9352-7633d3be0f22", + "clientId" : "catalogue-jhipster-control-center", + "rootUrl" : "http://localhost:7419", + "adminUrl" : "http://localhost:7419", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "a77e5efc-e542-4ed2-b8a2-535fe4c4fb34", + "redirectUris" : [ "dev.localhost.ionic:*", "http://127.0.0.1:*", "http://localhost:*", "https://127.0.0.1:*", "https://localhost:*" ], + "webOrigins" : [ "*" ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : true, + "directAccessGrantsEnabled" : false, + "serviceAccountsEnabled" : false, + "publicClient" : true, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "645cf799-be24-42fd-a169-f9d5fc39be31", + "clientId" : "catalogue-registry", + "rootUrl" : "https://registry.192.168.56.1.digital.tecnalia.dev", + "adminUrl" : "https://registry.192.168.56.1.digital.tecnalia.dev", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "ff31a06d-d850-48d2-8355-6723e856c1b6", + "redirectUris" : [ "*" ], + "webOrigins" : [ "*" ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : true, + "serviceAccountsEnabled" : false, + "publicClient" : true, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "defaultClientScopes" : [ "web-origins", "jhipster", "role_list", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "12d63192-94cd-4692-b557-ab76a331eaa6", + "clientId" : "ccd-client", + "name" : "Company compliance dashboard", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "cc728558-1c40-48ae-8be4-e48b582a727a", + "redirectUris" : [ "http://localhost:8080/" ], + "webOrigins" : [ ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : true, + "serviceAccountsEnabled" : false, + "publicClient" : false, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "defaultClientScopes" : [ "web-origins", "role_list", "cloudservice", "profile", "roles", "cladmin-backend-services", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "dc64b28b-a696-4b0c-8e24-2aeae138c3e5", + "clientId" : "cce", + "rootUrl" : "http://cce-api-dev.192.168.56.1.digital.tecnalia.dev", + "adminUrl" : "http://cce-api-dev.192.168.56.1.digital.tecnalia.dev", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "efe3acb8-b4c1-43f0-a3a2-b75402e76afc", + "redirectUris" : [ "https://cce-api-dev.192.168.56.1.digital.tecnalia.dev/*" ], + "webOrigins" : [ "http://cce-api-dev.192.168.56.1.digital.tecnalia.dev" ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : true, + "serviceAccountsEnabled" : true, + "authorizationServicesEnabled" : true, + "publicClient" : false, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "access.token.lifespan" : "3600", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "protocolMappers" : [ { + "id" : "12f94f61-bb5e-41dc-ae0b-20206ff6173c", + "name" : "Client IP Address", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientAddress", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientAddress", + "jsonType.label" : "String" + } + }, { + "id" : "3920d8ac-45ea-4bf5-a203-1c831cb845ab", + "name" : "Client Host", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientHost", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientHost", + "jsonType.label" : "String" + } + }, { + "id" : "75f9dc3a-6aaa-4206-9c52-729d326117ef", + "name" : "cladmin", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-hardcoded-claim-mapper", + "consentRequired" : false, + "config" : { + "claim.value" : "true", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "cladmin", + "jsonType.label" : "boolean", + "access.tokenResponse.claim" : "false" + } + }, { + "id" : "5f427941-d12d-432c-b883-ac39fe209705", + "name" : "Client ID", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientId", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientId", + "jsonType.label" : "String" + } + } ], + "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "cladmin-backend-services", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ], + "authorizationSettings" : { + "allowRemoteResourceManagement" : true, + "policyEnforcementMode" : "ENFORCING", + "resources" : [ { + "name" : "Default Resource", + "type" : "urn:cce-dev:resources:default", + "ownerManagedAccess" : false, + "attributes" : { }, + "_id" : "ef475897-65aa-4813-a810-340268090336", + "uris" : [ "/*" ] + } ], + "policies" : [ { + "id" : "ff85e02d-5048-473c-8bd0-fa22b6574852", + "name" : "Default Policy", + "description" : "A policy that grants access only for users within this realm", + "type" : "js", + "logic" : "POSITIVE", + "decisionStrategy" : "AFFIRMATIVE", + "config" : { + "code" : "// by default, grants any permission associated with this policy\n$evaluation.grant();\n" + } + }, { + "id" : "043cee90-99a8-4f2b-9ad2-3f37ce518483", + "name" : "Default Permission", + "description" : "A permission that applies to the default resource type", + "type" : "resource", + "logic" : "POSITIVE", + "decisionStrategy" : "UNANIMOUS", + "config" : { + "defaultResourceType" : "urn:cce-dev:resources:default", + "applyPolicies" : "[\"Default Policy\"]" + } + } ], + "scopes" : [ ], + "decisionStrategy" : "UNANIMOUS" + } + }, { + "id" : "3917091b-6bf1-4865-96e2-141077a43b92", + "clientId" : "cce-frontend", + "rootUrl" : "https://cce-dev.192.168.56.1.digital.tecnalia.dev", + "adminUrl" : "https://cce-dev.192.168.56.1.digital.tecnalia.dev", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "59e20d74-9053-4f7e-9cc8-cd63bd5c4909", + "redirectUris" : [ "https://cce-dev.192.168.56.1.digital.tecnalia.dev/*" ], + "webOrigins" : [ "https://cce-dev.192.168.56.1.digital.tecnalia.dev" ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : true, + "serviceAccountsEnabled" : false, + "publicClient" : true, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "backchannel.logout.session.required" : "true", + "backchannel.logout.revoke.offline.tokens" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "defaultClientScopes" : [ "web-origins", "role_list", "cloudservice", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "4a57f2cd-5b99-4b78-ba31-d994521abd30", + "clientId" : "clouditor-assessment", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "4a47f42a-df33-418f-b687-64e7c8ffbbda", + "redirectUris" : [ "https://security-assessment-dev.192.168.56.1.digital.tecnalia.dev" ], + "webOrigins" : [ ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : false, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : false, + "serviceAccountsEnabled" : true, + "publicClient" : false, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "protocolMappers" : [ { + "id" : "caf7c5a7-f72e-44d8-aa9d-37c185e415ca", + "name" : "Client ID", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientId", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientId", + "jsonType.label" : "String" + } + }, { + "id" : "7dde8113-bf11-4cb4-be6b-d342ed64b1b6", + "name" : "Client Host", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientHost", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientHost", + "jsonType.label" : "String" + } + }, { + "id" : "1261d141-6010-4868-b659-2ce26e1680b4", + "name" : "Client IP Address", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientAddress", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientAddress", + "jsonType.label" : "String" + } + } ], + "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "cladmin-backend-services", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "69bba521-b088-45a6-9e56-bd29e557cea4", + "clientId" : "clouditor-cli", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "c3228efe-8dc3-4c09-bc89-8bdc362ae878", + "redirectUris" : [ "http://localhost:10000/callback" ], + "webOrigins" : [ ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : false, + "serviceAccountsEnabled" : false, + "publicClient" : true, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "protocolMappers" : [ { + "id" : "d6f6611d-8fa1-4116-82db-e23ee7574c0c", + "name" : "cladmin", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-attribute-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "cladmin", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "cladmin", + "jsonType.label" : "boolean" + } + } ], + "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "8fedfacb-2df9-4342-be33-7d3e18dc316f", + "clientId" : "clouditor-discovery", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "2f38b7bd-c3fa-4e7b-af59-5b8d67ddd8c1", + "redirectUris" : [ "https://orchestrator-dev.192.168.56.1.digital.tecnalia.dev/" ], + "webOrigins" : [ ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : false, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : false, + "serviceAccountsEnabled" : true, + "publicClient" : false, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "protocolMappers" : [ { + "id" : "8dfab4e0-512c-4879-8878-c949ba32a641", + "name" : "Client Host", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientHost", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientHost", + "jsonType.label" : "String" + } + }, { + "id" : "9bba24ce-80f6-4a69-844d-7406c39d678b", + "name" : "Client ID", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientId", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientId", + "jsonType.label" : "String" + } + }, { + "id" : "112001f6-9584-4949-9d79-4d8e337bb9eb", + "name" : "Client IP Address", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientAddress", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientAddress", + "jsonType.label" : "String" + } + } ], + "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "cladmin-backend-services", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "fb2b3d0e-e2d7-4cb2-819d-bab9043f0d11", + "clientId" : "clouditor-orchestrator", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "eb100a60-92f7-4321-b9a6-55e8f82bc3a7", + "redirectUris" : [ ], + "webOrigins" : [ ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : false, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : false, + "serviceAccountsEnabled" : true, + "publicClient" : false, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "protocolMappers" : [ { + "id" : "1cefc460-e6b3-4077-a9f1-dab69ca3e2ba", + "name" : "Client ID", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientId", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientId", + "jsonType.label" : "String" + } + }, { + "id" : "34f93a44-5113-4638-bff8-4c89544a512e", + "name" : "Client Host", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientHost", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientHost", + "jsonType.label" : "String" + } + }, { + "id" : "cced5616-8012-473d-9cfb-95cf88efad11", + "name" : "Client IP Address", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientAddress", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientAddress", + "jsonType.label" : "String" + } + } ], + "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "fcf4c413-07b8-40e1-9ee0-2ffa646dfdf5", + "clientId" : "clouditor-ui", + "rootUrl" : "https://orchestrator-dev.192.168.56.1.digital.tecnalia.dev", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "7a189e46-8e44-4968-9228-2115e84dbcdd", + "redirectUris" : [ "https://orchestrator-dev.192.168.56.1.digital.tecnalia.dev/callback" ], + "webOrigins" : [ "https://orchestrator-dev.192.168.56.1.digital.tecnalia.dev" ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : false, + "serviceAccountsEnabled" : false, + "publicClient" : true, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "protocolMappers" : [ { + "id" : "1489a48c-4d85-4566-a4f6-b453809bfaf3", + "name" : "cladmin", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-attribute-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "cladmin", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "cladmin", + "jsonType.label" : "boolean" + } + } ], + "defaultClientScopes" : [ "web-origins", "role_list", "cloudservice", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "15a81bd1-4edd-4e2a-87ec-3bbcac30d2a3", + "clientId" : "cnl-editor-frontend", + "rootUrl" : "https://cnl-editor-frontend-dev.192.168.56.1.digital.tecnalia.dev", + "adminUrl" : "https://cnl-editor-frontend-dev.192.168.56.1.digital.tecnalia.dev", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "e6b76254-187d-441b-9061-cb6b03dd51a4", + "redirectUris" : [ "http://cnl-editor-frontend-dev.192.168.56.1.digital.tecnalia.dev/*", "https://cnl-editor-frontend-dev.192.168.56.1.digital.tecnalia.dev/*" ], + "webOrigins" : [ "https://cnl-editor-frontend-dev.192.168.56.1.digital.tecnalia.dev" ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : true, + "serviceAccountsEnabled" : false, + "publicClient" : true, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "defaultClientScopes" : [ "web-origins", "role_list", "cloudservice", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "01fce0c3-2db7-46dd-af1c-115dc1800053", + "clientId" : "codyze", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "7ff65ca2-a54a-4093-84f3-3b5756cc4e5c", + "redirectUris" : [ ], + "webOrigins" : [ ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : false, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : false, + "serviceAccountsEnabled" : true, + "publicClient" : false, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "protocolMappers" : [ { + "id" : "43fbe8e9-8141-4868-b85c-91220bd5f08f", + "name" : "Client IP Address", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientAddress", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientAddress", + "jsonType.label" : "String" + } + }, { + "id" : "ab5e553c-34e4-4411-b6c2-23235f3d7f84", + "name" : "Client ID", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientId", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientId", + "jsonType.label" : "String" + } + }, { + "id" : "8d070365-134e-4302-b0bd-e6ce82b1c2db", + "name" : "Client Host", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientHost", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientHost", + "jsonType.label" : "String" + } + } ], + "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "cladmin-backend-services", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "4cb90bba-1483-48f8-85c3-af800943c740", + "clientId" : "dsl-mapper-client", + "rootUrl" : "https://dsl-mapper-dev.192.168.56.1.digital.tecnalia.dev/", + "adminUrl" : "https://dsl-mapper-dev.192.168.56.1.digital.tecnalia.dev/", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "0fa48e19-90a5-4e6c-addd-446691dbf8eb", + "redirectUris" : [ "https://dsl-mapper-dev.192.168.56.1.digital.tecnalia.dev/*" ], + "webOrigins" : [ "https://dsl-mapper-dev.192.168.56.1.digital.tecnalia.dev" ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : true, + "serviceAccountsEnabled" : true, + "authorizationServicesEnabled" : true, + "publicClient" : false, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "protocolMappers" : [ { + "id" : "987c2d9a-ef46-4d60-881d-72d495260d07", + "name" : "Client Host", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientHost", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientHost", + "jsonType.label" : "String" + } + }, { + "id" : "7c8815a1-7820-46ed-93d8-45398092f0ff", + "name" : "Client IP Address", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientAddress", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientAddress", + "jsonType.label" : "String" + } + }, { + "id" : "c5b8af61-2816-47e9-aa22-743172954c8c", + "name" : "Client ID", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientId", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientId", + "jsonType.label" : "String" + } + }, { + "id" : "ac9a4d80-4c93-4875-95e4-e8bd7e7150c0", + "name" : "cladmin", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-hardcoded-claim-mapper", + "consentRequired" : false, + "config" : { + "claim.value" : "true", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "cladmin", + "jsonType.label" : "boolean", + "access.tokenResponse.claim" : "false" + } + } ], + "defaultClientScopes" : [ "web-origins", "role_list", "cloudservice", "profile", "roles", "cladmin-backend-services", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ], + "authorizationSettings" : { + "allowRemoteResourceManagement" : true, + "policyEnforcementMode" : "ENFORCING", + "resources" : [ { + "name" : "Default Resource", + "type" : "urn:dsl-mapper-client:resources:default", + "ownerManagedAccess" : false, + "attributes" : { }, + "_id" : "09ef8b92-846c-4f44-af8a-73138006111b", + "uris" : [ "/*" ] + } ], + "policies" : [ { + "id" : "586e6b4a-0614-4102-b48d-cd633f918809", + "name" : "Default Policy", + "description" : "A policy that grants access only for users within this realm", + "type" : "js", + "logic" : "POSITIVE", + "decisionStrategy" : "AFFIRMATIVE", + "config" : { + "code" : "// by default, grants any permission associated with this policy\n$evaluation.grant();\n" + } + }, { + "id" : "43e2f264-68dc-44a6-9db2-f2f31dcb67ad", + "name" : "Default Permission", + "description" : "A permission that applies to the default resource type", + "type" : "resource", + "logic" : "POSITIVE", + "decisionStrategy" : "UNANIMOUS", + "config" : { + "defaultResourceType" : "urn:dsl-mapper-client:resources:default", + "applyPolicies" : "[\"Default Policy\"]" + } + } ], + "scopes" : [ ], + "decisionStrategy" : "UNANIMOUS" + } + }, { + "id" : "1150f83f-37bc-4b14-98a0-e179aaee0f6c", + "clientId" : "integrated-ui", + "rootUrl" : "https://integrated-ui-dev.192.168.56.1.digital.tecnalia.dev", + "adminUrl" : "https://integrated-ui-dev.192.168.56.1.digital.tecnalia.dev", + "baseUrl" : "https://integrated-ui-dev.192.168.56.1.digital.tecnalia.dev", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "9049e030-2e66-496e-accf-b7a5037bc0eb", + "redirectUris" : [ "", "https://integrated-ui-dev.192.168.56.1.digital.tecnalia.dev/*" ], + "webOrigins" : [ "https://integrated-ui-dev.192.168.56.1.digital.tecnalia.dev" ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : true, + "serviceAccountsEnabled" : false, + "publicClient" : true, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "defaultClientScopes" : [ "web-origins", "role_list", "cloudservice", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "095fac49-b0b4-4c44-b5b9-fa22bed6d160", + "clientId" : "life-cycle-manager", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "0191bfe6-1d93-4d89-b1e4-4b505d348057", + "redirectUris" : [ ], + "webOrigins" : [ ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : false, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : false, + "serviceAccountsEnabled" : true, + "publicClient" : false, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "protocolMappers" : [ { + "id" : "415b43bf-765a-4dba-a488-2dd969b7b253", + "name" : "cladmin", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-hardcoded-claim-mapper", + "consentRequired" : false, + "config" : { + "claim.value" : "true", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "cladmin", + "jsonType.label" : "boolean", + "access.tokenResponse.claim" : "false" + } + }, { + "id" : "cdb336c7-b22f-44c6-b30b-9136364b8229", + "name" : "Client IP Address", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientAddress", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientAddress", + "jsonType.label" : "String" + } + }, { + "id" : "3c6e3fe1-37bb-4ef0-a162-720b0d78b3af", + "name" : "Client ID", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientId", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientId", + "jsonType.label" : "String" + } + }, { + "id" : "e39ee5e2-dd4a-4d0e-9fc3-a0a84b200143", + "name" : "Client Host", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientHost", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientHost", + "jsonType.label" : "String" + } + } ], + "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "cladmin-backend-services", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "9f7c65f7-9ae9-4c9e-9bd7-971d0cbe146d", + "clientId" : "nl2cnl-translator-client", + "rootUrl" : "https://nl2cnl-translator-dev.192.168.56.1.digital.tecnalia.dev/", + "adminUrl" : "https://nl2cnl-translator-dev.192.168.56.1.digital.tecnalia.dev/", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "b1d1d98d-b5e5-46ac-9b45-30502cfb53ab", + "redirectUris" : [ "https://nl2cnl-translator-dev.192.168.56.1.digital.tecnalia.dev/*" ], + "webOrigins" : [ "https://nl2cnl-translator-dev.192.168.56.1.digital.tecnalia.dev" ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : true, + "serviceAccountsEnabled" : true, + "authorizationServicesEnabled" : true, + "publicClient" : false, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "protocolMappers" : [ { + "id" : "ad2d1f98-62a8-4859-8cce-1ce4034b9920", + "name" : "Client Host", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientHost", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientHost", + "jsonType.label" : "String" + } + }, { + "id" : "480e69e8-ebca-4e89-8d20-24bba626bbce", + "name" : "Client ID", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientId", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientId", + "jsonType.label" : "String" + } + }, { + "id" : "42724a07-f05f-4d65-82cb-b1c2288810d8", + "name" : "Client IP Address", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientAddress", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientAddress", + "jsonType.label" : "String" + } + } ], + "defaultClientScopes" : [ "web-origins", "role_list", "cloudservice", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ], + "authorizationSettings" : { + "allowRemoteResourceManagement" : true, + "policyEnforcementMode" : "ENFORCING", + "resources" : [ { + "name" : "Default Resource", + "type" : "urn:nl2cnl-translator-client:resources:default", + "ownerManagedAccess" : false, + "attributes" : { }, + "_id" : "cf0de028-f233-4f59-83cb-3d60d34450a3", + "uris" : [ "/*" ] + } ], + "policies" : [ { + "id" : "46935297-5bfb-4a43-b493-b28efe8c863b", + "name" : "Default Policy", + "description" : "A policy that grants access only for users within this realm", + "type" : "js", + "logic" : "POSITIVE", + "decisionStrategy" : "AFFIRMATIVE", + "config" : { + "code" : "// by default, grants any permission associated with this policy\n$evaluation.grant();\n" + } + }, { + "id" : "9cd3da2f-0302-4033-a9ed-36758ffa7730", + "name" : "Default Permission", + "description" : "A permission that applies to the default resource type", + "type" : "resource", + "logic" : "POSITIVE", + "decisionStrategy" : "UNANIMOUS", + "config" : { + "defaultResourceType" : "urn:nl2cnl-translator-client:resources:default", + "applyPolicies" : "[\"Default Policy\"]" + } + } ], + "scopes" : [ ], + "decisionStrategy" : "UNANIMOUS" + } + }, { + "id" : "785a9f77-d06f-4a65-9ba9-341921fda61a", + "clientId" : "raof", + "rootUrl" : "http://risk-assessment-engine-dev.192.168.56.1.digital.tecnalia.dev", + "adminUrl" : "http://risk-assessment-engine-dev.192.168.56.1.digital.tecnalia.dev", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "92d45bca-073b-49e3-8b23-2615f7fcbb3e", + "redirectUris" : [ "http://risk-assessment-engine-dev.192.168.56.1.digital.tecnalia.dev/*" ], + "webOrigins" : [ "http://risk-assessment-engine-dev.192.168.56.1.digital.tecnalia.dev" ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : true, + "serviceAccountsEnabled" : true, + "publicClient" : true, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "protocolMappers" : [ { + "id" : "1fddcb23-2a23-4ce6-acd4-cb48155d9034", + "name" : "Client Host", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientHost", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientHost", + "jsonType.label" : "String" + } + }, { + "id" : "1b88c2af-c338-4cf2-ab8d-69d1a60837a2", + "name" : "Client IP Address", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientAddress", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientAddress", + "jsonType.label" : "String" + } + }, { + "id" : "1c4f9074-9c2a-40bc-b55e-07a4eccfedab", + "name" : "Client ID", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientId", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientId", + "jsonType.label" : "String" + } + } ], + "defaultClientScopes" : [ "web-origins", "role_list", "cloudservice", "profile", "roles", "cladmin-backend-services", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "1c198016-f44c-4620-b2f6-821173bc2e54", + "clientId" : "raof-app", + "rootUrl" : "https://risk-assessment-app-dev.192.168.56.1.digital.tecnalia.dev", + "adminUrl" : "https://risk-assessment-app-dev.192.168.56.1.digital.tecnalia.dev", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "5f3391fb-e3da-4d24-bf49-a110ce86e5de", + "redirectUris" : [ "https://risk-assessment-app-dev.192.168.56.1.digital.tecnalia.dev/*" ], + "webOrigins" : [ "https://risk-assessment-app-dev.192.168.56.1.digital.tecnalia.dev" ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : true, + "serviceAccountsEnabled" : true, + "authorizationServicesEnabled" : true, + "publicClient" : false, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "protocolMappers" : [ { + "id" : "84cd6938-b5aa-4003-b0ee-0090073e2a88", + "name" : "Client IP Address", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientAddress", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientAddress", + "jsonType.label" : "String" + } + }, { + "id" : "9f22b311-05a4-4575-b7a5-ee07f2a38c08", + "name" : "Client ID", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientId", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientId", + "jsonType.label" : "String" + } + }, { + "id" : "f5e2cf3e-2f89-449b-bd1d-3cac7224b576", + "name" : "Client Host", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientHost", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientHost", + "jsonType.label" : "String" + } + } ], + "defaultClientScopes" : [ "web-origins", "role_list", "cloudservice", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ], + "authorizationSettings" : { + "allowRemoteResourceManagement" : true, + "policyEnforcementMode" : "ENFORCING", + "resources" : [ { + "name" : "Default Resource", + "type" : "urn:raof-app:resources:default", + "ownerManagedAccess" : false, + "attributes" : { }, + "_id" : "c9d1728e-3f6a-4003-8362-d6f5f960515c", + "uris" : [ "/*" ] + } ], + "policies" : [ { + "id" : "73bfec51-aca5-4ac8-b537-51a78d5de521", + "name" : "Default Policy", + "description" : "A policy that grants access only for users within this realm", + "type" : "js", + "logic" : "POSITIVE", + "decisionStrategy" : "AFFIRMATIVE", + "config" : { + "code" : "// by default, grants any permission associated with this policy\n$evaluation.grant();\n" + } + }, { + "id" : "67de5082-2eb9-4f99-b13e-a269a911952f", + "name" : "Default Permission", + "description" : "A permission that applies to the default resource type", + "type" : "resource", + "logic" : "POSITIVE", + "decisionStrategy" : "UNANIMOUS", + "config" : { + "defaultResourceType" : "urn:raof-app:resources:default", + "applyPolicies" : "[\"Default Policy\"]" + } + } ], + "scopes" : [ ], + "decisionStrategy" : "UNANIMOUS" + } + }, { + "id" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", + "clientId" : "realm-management", + "name" : "${client_realm-management}", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "eac6413c-b76b-4d1a-b4dc-b217fe77326b", + "redirectUris" : [ ], + "webOrigins" : [ ], + "notBefore" : 0, + "bearerOnly" : true, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : false, + "serviceAccountsEnabled" : false, + "publicClient" : false, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : false, + "nodeReRegistrationTimeout" : 0, + "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "7d57284a-3eba-4ceb-8088-b13aeef3df24", + "clientId" : "security-admin-console", + "name" : "${client_security-admin-console}", + "rootUrl" : "${authAdminUrl}", + "baseUrl" : "/admin/medina/console/", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "11fb3ec1-97dc-46e4-aee3-7d61493a0184", + "redirectUris" : [ "/admin/medina/console/*" ], + "webOrigins" : [ "+" ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : false, + "serviceAccountsEnabled" : false, + "publicClient" : true, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "pkce.code.challenge.method" : "S256" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : false, + "nodeReRegistrationTimeout" : 0, + "protocolMappers" : [ { + "id" : "ce06926e-1e52-49b7-86ea-ddfd7665b90b", + "name" : "locale", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-attribute-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "locale", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "locale", + "jsonType.label" : "String" + } + } ], + "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "52938086-6278-49af-b311-48ec89d2c3dc", + "clientId" : "ssi-frontend", + "rootUrl" : "http://localhost:3000", + "adminUrl" : "http://localhost:3000", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "7f73d06a-5f9e-4b0f-88f7-40b43b62e58f", + "redirectUris" : [ "https://ssi-framework-ui-dev.192.168.56.1.digital.tecnalia.dev/*", "http://localhost:3000/*", "https://static.cybersec.digital.tecnalia.dev/*" ], + "webOrigins" : [ "https://ssi-framework-ui-dev.192.168.56.1.digital.tecnalia.dev", "https://static.cybersec.digital.tecnalia.dev", "http://localhost:3000" ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : true, + "serviceAccountsEnabled" : false, + "publicClient" : true, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "access.token.lifespan" : "3600", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "pkce.code.challenge.method" : "S256", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "defaultClientScopes" : [ "web-origins", "role_list", "cloudservice", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "ea94ba36-c7d0-4eb1-9e05-1c7bfffc6a3b", + "clientId" : "trustworthiness_verification", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "78105567-dd19-4705-9e8f-9b1c6e21baae", + "redirectUris" : [ "*" ], + "webOrigins" : [ "*" ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : true, + "serviceAccountsEnabled" : false, + "publicClient" : true, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "access.token.lifespan" : "86400", + "saml.multivalued.roles" : "false", + "saml.force.post.binding" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "defaultClientScopes" : [ "web-origins", "role_list", "cloudservice", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "aa18689d-6d81-4b92-8b9e-291eb4733408", + "clientId" : "wazuh-vat-evidence-collector-dev", + "rootUrl" : "http://wazuh-vat-evidence-collector-dev.192.168.56.1.digital.tecnalia.dev/", + "adminUrl" : "http://wazuh-vat-evidence-collector-dev.192.168.56.1.digital.tecnalia.dev/", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "68dec932-77fc-4322-8089-d64c3a3317bf", + "redirectUris" : [ "http://wazuh-vat-evidence-collector-dev.192.168.56.1.digital.tecnalia.dev/*" ], + "webOrigins" : [ "http://wazuh-vat-evidence-collector-dev.192.168.56.1.digital.tecnalia.dev" ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : true, + "serviceAccountsEnabled" : true, + "authorizationServicesEnabled" : true, + "publicClient" : false, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "protocolMappers" : [ { + "id" : "21e80b89-4ab6-4eb1-b1b1-1a44c133e922", + "name" : "Client IP Address", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientAddress", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientAddress", + "jsonType.label" : "String" + } + }, { + "id" : "f9117947-484b-4486-9299-97a1bac403bc", + "name" : "Client Host", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientHost", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientHost", + "jsonType.label" : "String" + } + }, { + "id" : "a610e8bf-64c2-4c57-ba45-f576d1dbd1b9", + "name" : "Client ID", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientId", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientId", + "jsonType.label" : "String" + } + } ], + "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "cladmin-backend-services", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ], + "authorizationSettings" : { + "allowRemoteResourceManagement" : true, + "policyEnforcementMode" : "ENFORCING", + "resources" : [ { + "name" : "Default Resource", + "type" : "urn:wazuh-vat-evidence-collector-dev:resources:default", + "ownerManagedAccess" : false, + "attributes" : { }, + "_id" : "9b151dde-64db-48eb-a5c8-1cb76dbda106", + "uris" : [ "/*" ] + } ], + "policies" : [ { + "id" : "ea4d0471-d8e0-4eb3-b978-5e08ed330193", + "name" : "Default Policy", + "description" : "A policy that grants access only for users within this realm", + "type" : "js", + "logic" : "POSITIVE", + "decisionStrategy" : "AFFIRMATIVE", + "config" : { + "code" : "// by default, grants any permission associated with this policy\n$evaluation.grant();\n" + } + }, { + "id" : "d56c4a80-9aea-4527-80b8-fa8736d55cbe", + "name" : "Default Permission", + "description" : "A permission that applies to the default resource type", + "type" : "resource", + "logic" : "POSITIVE", + "decisionStrategy" : "UNANIMOUS", + "config" : { + "defaultResourceType" : "urn:wazuh-vat-evidence-collector-dev:resources:default", + "applyPolicies" : "[\"Default Policy\"]" + } + } ], + "scopes" : [ ], + "decisionStrategy" : "UNANIMOUS" + } + } ], + "clientScopes" : [ { + "id" : "448d9d12-2046-483f-9951-9cfb26270957", + "name" : "address", + "description" : "OpenID Connect built-in scope: address", + "protocol" : "openid-connect", + "attributes" : { + "include.in.token.scope" : "true", + "display.on.consent.screen" : "true", + "consent.screen.text" : "${addressScopeConsentText}" + }, + "protocolMappers" : [ { + "id" : "d9a1907f-8701-4b47-85a8-b7d959c37d52", + "name" : "address", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-address-mapper", + "consentRequired" : false, + "config" : { + "user.attribute.formatted" : "formatted", + "user.attribute.country" : "country", + "user.attribute.postal_code" : "postal_code", + "userinfo.token.claim" : "true", + "user.attribute.street" : "street", + "id.token.claim" : "true", + "user.attribute.region" : "region", + "access.token.claim" : "true", + "user.attribute.locality" : "locality" + } + } ] + }, { + "id" : "54b21e72-237f-455f-81c6-1f2719ea6466", + "name" : "cladmin-backend-services", + "protocol" : "openid-connect", + "attributes" : { + "include.in.token.scope" : "true", + "display.on.consent.screen" : "true" + }, + "protocolMappers" : [ { + "id" : "798044a8-4388-4a98-9376-15e31b42590a", + "name" : "cladmin", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-hardcoded-claim-mapper", + "consentRequired" : false, + "config" : { + "claim.value" : "true", + "userinfo.token.claim" : "false", + "id.token.claim" : "false", + "access.token.claim" : "true", + "claim.name" : "cladmin", + "jsonType.label" : "boolean", + "access.tokenResponse.claim" : "false" + } + } ] + }, { + "id" : "f5b5d781-271d-4d03-9fc9-6e56c0349f32", + "name" : "cloudservice", + "protocol" : "openid-connect", + "attributes" : { + "include.in.token.scope" : "true", + "display.on.consent.screen" : "true" + }, + "protocolMappers" : [ { + "id" : "bb0a28a6-e1c5-4a1c-9eb9-404b6158b71b", + "name" : "cloudserviceid", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-attribute-mapper", + "consentRequired" : false, + "config" : { + "aggregate.attrs" : "true", + "multivalued" : "true", + "userinfo.token.claim" : "true", + "user.attribute" : "cloudserviceid", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "cloudserviceid", + "jsonType.label" : "String" + } + }, { + "id" : "99f13ac5-3ddd-4183-af53-d352b32616a5", + "name" : "cloudserviceproviderid", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-attribute-mapper", + "consentRequired" : false, + "config" : { + "aggregate.attrs" : "true", + "multivalued" : "true", + "userinfo.token.claim" : "true", + "user.attribute" : "cloudserviceproviderid", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "cloudserviceproviderid", + "jsonType.label" : "String" + } + }, { + "id" : "ed488ec6-a3a7-4ffb-a117-8b92127569bb", + "name" : "is_admin", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-attribute-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "is_admin", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "is_admin", + "jsonType.label" : "boolean" + } + } ] + }, { + "id" : "275d79c9-b59c-40f6-bea2-ce277f3bb3e0", + "name" : "email", + "description" : "OpenID Connect built-in scope: email", + "protocol" : "openid-connect", + "attributes" : { + "include.in.token.scope" : "true", + "display.on.consent.screen" : "true", + "consent.screen.text" : "${emailScopeConsentText}" + }, + "protocolMappers" : [ { + "id" : "e2e140c5-e12f-4a38-ad55-dbeb73558260", + "name" : "email", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-property-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "email", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "email", + "jsonType.label" : "String" + } + }, { + "id" : "a22524be-6358-4d93-beaa-38faed65e198", + "name" : "email verified", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-property-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "emailVerified", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "email_verified", + "jsonType.label" : "boolean" + } + } ] + }, { + "id" : "bbfebad4-3f48-432f-9696-1529017fd411", + "name" : "jhipster", + "description" : "Jhipster specific claims", + "protocol" : "openid-connect", + "attributes" : { + "include.in.token.scope" : "true", + "display.on.consent.screen" : "true" + }, + "protocolMappers" : [ { + "id" : "71c49d92-db9e-4669-b945-a6dd790b8b00", + "name" : "langKey", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-attribute-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "langKey", + "id.token.claim" : "false", + "access.token.claim" : "false", + "claim.name" : "langKey", + "jsonType.label" : "String" + } + }, { + "id" : "79e9563d-3c27-4cb3-b8c7-cb11bc43ebc9", + "name" : "login", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-attribute-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "preferred_username", + "id.token.claim" : "false", + "access.token.claim" : "false", + "claim.name" : "login", + "jsonType.label" : "String" + } + }, { + "id" : "d8ce7859-d0c3-4e55-9415-438c81bfdaa2", + "name" : "roles", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-realm-role-mapper", + "consentRequired" : false, + "config" : { + "multivalued" : "true", + "userinfo.token.claim" : "true", + "id.token.claim" : "false", + "access.token.claim" : "true", + "claim.name" : "roles", + "jsonType.label" : "String" + } + } ] + }, { + "id" : "3dd12f9d-3af5-4757-b89c-4d2a8c448316", + "name" : "microprofile-jwt", + "description" : "Microprofile - JWT built-in scope", + "protocol" : "openid-connect", + "attributes" : { + "include.in.token.scope" : "true", + "display.on.consent.screen" : "false" + }, + "protocolMappers" : [ { + "id" : "995d9d7f-97af-4c01-81d8-8ca11aa34553", + "name" : "groups", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-realm-role-mapper", + "consentRequired" : false, + "config" : { + "multivalued" : "true", + "userinfo.token.claim" : "true", + "user.attribute" : "foo", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "groups", + "jsonType.label" : "String" + } + }, { + "id" : "43df77e9-387b-4f80-bd3e-c2153178ee72", + "name" : "upn", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-property-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "username", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "upn", + "jsonType.label" : "String" + } + } ] + }, { + "id" : "31c108bb-1587-4373-b46a-7d2f0d7acdba", + "name" : "offline_access", + "description" : "OpenID Connect built-in scope: offline_access", + "protocol" : "openid-connect", + "attributes" : { + "consent.screen.text" : "${offlineAccessScopeConsentText}", + "display.on.consent.screen" : "true" + } + }, { + "id" : "b8b09b9e-6096-46ae-8e90-3cd03d364a0a", + "name" : "phone", + "description" : "OpenID Connect built-in scope: phone", + "protocol" : "openid-connect", + "attributes" : { + "include.in.token.scope" : "true", + "display.on.consent.screen" : "true", + "consent.screen.text" : "${phoneScopeConsentText}" + }, + "protocolMappers" : [ { + "id" : "5464cfbe-e421-4034-8f6a-378e99476bf4", + "name" : "phone number", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-attribute-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "phoneNumber", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "phone_number", + "jsonType.label" : "String" + } + }, { + "id" : "f8a484ce-7c5f-4562-8d61-ec161e2929f6", + "name" : "phone number verified", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-attribute-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "phoneNumberVerified", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "phone_number_verified", + "jsonType.label" : "boolean" + } + } ] + }, { + "id" : "b188dc18-eca7-4941-ab04-d3e599e9aa93", + "name" : "profile", + "description" : "OpenID Connect built-in scope: profile", + "protocol" : "openid-connect", + "attributes" : { + "include.in.token.scope" : "true", + "display.on.consent.screen" : "true", + "consent.screen.text" : "${profileScopeConsentText}" + }, + "protocolMappers" : [ { + "id" : "0d52d80c-a7e1-45f9-a16e-1965220474d5", + "name" : "nickname", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-attribute-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "nickname", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "nickname", + "jsonType.label" : "String" + } + }, { + "id" : "cf0e8f74-1996-4ad1-8bcc-3f331bea4e45", + "name" : "birthdate", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-attribute-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "birthdate", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "birthdate", + "jsonType.label" : "String" + } + }, { + "id" : "c58346fb-1470-420c-a6cb-c115e833444b", + "name" : "full name", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-full-name-mapper", + "consentRequired" : false, + "config" : { + "id.token.claim" : "true", + "access.token.claim" : "true", + "userinfo.token.claim" : "true" + } + }, { + "id" : "bdfca3bd-1dda-4ebe-993c-ea11c674c919", + "name" : "gender", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-attribute-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "gender", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "gender", + "jsonType.label" : "String" + } + }, { + "id" : "1299560c-f37d-47d2-96f7-712761cf679a", + "name" : "middle name", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-attribute-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "middleName", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "middle_name", + "jsonType.label" : "String" + } + }, { + "id" : "c67dab67-c3b4-40c4-91fe-7c9ce61fca5f", + "name" : "zoneinfo", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-attribute-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "zoneinfo", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "zoneinfo", + "jsonType.label" : "String" + } + }, { + "id" : "8682ba32-def5-4111-b2ab-79cd865844d0", + "name" : "family name", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-property-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "lastName", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "family_name", + "jsonType.label" : "String" + } + }, { + "id" : "0ee61bf2-d022-420a-aa6d-c7e8bd60e24f", + "name" : "picture", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-attribute-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "picture", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "picture", + "jsonType.label" : "String" + } + }, { + "id" : "3acdc903-7ceb-40b8-8516-ebbc7874d6e4", + "name" : "given name", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-property-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "firstName", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "given_name", + "jsonType.label" : "String" + } + }, { + "id" : "d1fe9f83-141c-4c8c-9635-20367c7e5218", + "name" : "locale", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-attribute-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "locale", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "locale", + "jsonType.label" : "String" + } + }, { + "id" : "502de8c4-4cdf-402b-8453-d407a7b666da", + "name" : "username", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-property-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "username", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "preferred_username", + "jsonType.label" : "String" + } + }, { + "id" : "1603ac87-6a50-4205-b9b9-4ba4d3224d83", + "name" : "website", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-attribute-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "website", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "website", + "jsonType.label" : "String" + } + }, { + "id" : "f2c9d6f6-06b7-415a-87b3-c872a26ab921", + "name" : "updated at", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-attribute-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "updatedAt", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "updated_at", + "jsonType.label" : "String" + } + }, { + "id" : "ee586b78-b33e-4a0b-842f-9bd7059a747a", + "name" : "profile", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-attribute-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "profile", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "profile", + "jsonType.label" : "String" + } + } ] + }, { + "id" : "83717992-b174-46c3-99f1-1a097b02e99c", + "name" : "role_list", + "description" : "SAML role list", + "protocol" : "saml", + "attributes" : { + "consent.screen.text" : "${samlRoleListScopeConsentText}", + "display.on.consent.screen" : "true" + }, + "protocolMappers" : [ { + "id" : "0c0b8746-2e89-4ede-9ea6-ac76d2c66f33", + "name" : "role list", + "protocol" : "saml", + "protocolMapper" : "saml-role-list-mapper", + "consentRequired" : false, + "config" : { + "single" : "false", + "attribute.nameformat" : "Basic", + "attribute.name" : "Role" + } + } ] + }, { + "id" : "da1df8bb-b502-44fb-94a4-cff04b190a8c", + "name" : "roles", + "description" : "OpenID Connect scope for add user roles to the access token", + "protocol" : "openid-connect", + "attributes" : { + "include.in.token.scope" : "false", + "display.on.consent.screen" : "true", + "consent.screen.text" : "${rolesScopeConsentText}" + }, + "protocolMappers" : [ { + "id" : "cef58889-d64f-4405-a1f9-4978962472aa", + "name" : "realm roles", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-realm-role-mapper", + "consentRequired" : false, + "config" : { + "user.attribute" : "foo", + "access.token.claim" : "true", + "claim.name" : "realm_access.roles", + "jsonType.label" : "String", + "multivalued" : "true" + } + }, { + "id" : "44e1ccc5-63d0-464f-a88c-535864dba161", + "name" : "audience resolve", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-audience-resolve-mapper", + "consentRequired" : false, + "config" : { } + }, { + "id" : "fc7ab48f-7268-4f85-874c-8b35d00d5fb1", + "name" : "client roles", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-client-role-mapper", + "consentRequired" : false, + "config" : { + "user.attribute" : "foo", + "access.token.claim" : "true", + "claim.name" : "resource_access.${client_id}.roles", + "jsonType.label" : "String", + "multivalued" : "true" + } + } ] + }, { + "id" : "cab2790d-6362-4d1a-96cb-427e906ea1d0", + "name" : "web-origins", + "description" : "OpenID Connect scope for add allowed web origins to the access token", + "protocol" : "openid-connect", + "attributes" : { + "include.in.token.scope" : "false", + "display.on.consent.screen" : "false", + "consent.screen.text" : "" + }, + "protocolMappers" : [ { + "id" : "e8c45111-ab73-4a68-a793-fdcc71c4f2ad", + "name" : "allowed web origins", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-allowed-origins-mapper", + "consentRequired" : false, + "config" : { } + } ] + } ], + "defaultDefaultClientScopes" : [ "email", "role_list", "profile", "web-origins", "roles", "cloudservice" ], + "defaultOptionalClientScopes" : [ "offline_access", "microprofile-jwt", "address", "phone" ], + "browserSecurityHeaders" : { + "contentSecurityPolicyReportOnly" : "", + "xContentTypeOptions" : "nosniff", + "xRobotsTag" : "none", + "xFrameOptions" : "ALLOW-FROM https://integrated-ui-dev.192.168.56.1.digital.tecnalia.dev", + "contentSecurityPolicy" : "", + "xXSSProtection" : "1; mode=block", + "strictTransportSecurity" : "max-age=31536000; includeSubDomains" + }, + "smtpServer" : { + "password" : "medinaPassword", + "starttls" : "", + "auth" : "true", + "host" : "smtp.gmail.com", + "from" : "medinatestuser@gmail.com", + "ssl" : "true", + "user" : "medinatestuser@gmail.com" + }, + "eventsEnabled" : false, + "eventsListeners" : [ "jboss-logging" ], + "enabledEventTypes" : [ ], + "adminEventsEnabled" : false, + "adminEventsDetailsEnabled" : false, + "identityProviders" : [ { + "alias" : "oidc", + "displayName" : "Bosch Login", + "internalId" : "0a60d4b9-c19c-4df7-9d55-f27547b90af0", + "providerId" : "oidc", + "enabled" : true, + "updateProfileFirstLoginMode" : "on", + "trustEmail" : false, + "storeToken" : false, + "addReadTokenRoleOnCreate" : false, + "authenticateByDefault" : false, + "linkOnly" : false, + "firstBrokerLoginFlowAlias" : "first broker login", + "config" : { + "userInfoUrl" : "https://stfs.test-bosch.com/adfs/userinfo", + "validateSignature" : "true", + "clientId" : "acfbc2ab-64e4-4b64-ad0e-204ec212cbbf", + "tokenUrl" : "https://stfs.test-bosch.com/adfs/oauth2/token/", + "jwksUrl" : "https://stfs.test-bosch.com/adfs/discovery/keys", + "issuer" : "https://stfs.test-bosch.com/adfs", + "useJwksUrl" : "true", + "authorizationUrl" : "https://stfs.test-bosch.com/adfs/oauth2/authorize/", + "clientAuthMethod" : "client_secret_post", + "disableUserInfo" : "true", + "logoutUrl" : "https://stfs.test-bosch.com/adfs/oauth2/logout", + "syncMode" : "IMPORT", + "clientSecret" : "Iog6MCAS2DoU0tLURqTVOME5p_Fq-LY_eewuOye4" + } + } ], + "identityProviderMappers" : [ { + "id" : "07f77793-a333-4c4f-a394-49eb29857486", + "name" : "Username Custom Mapper", + "identityProviderAlias" : "oidc", + "identityProviderMapper" : "oidc-username-idp-mapper", + "config" : { + "template" : "${CLAIM.email}", + "syncMode" : "INHERIT", + "target" : "LOCAL" + } + }, { + "id" : "bb71a007-f1e3-4dc7-9a8a-1e6e21d09544", + "name" : "Default Compliance Manager mapper", + "identityProviderAlias" : "oidc", + "identityProviderMapper" : "oidc-hardcoded-role-idp-mapper", + "config" : { + "syncMode" : "INHERIT", + "role" : "Compliance Manager" + } + } ], + "components" : { + "org.keycloak.services.clientregistration.policy.ClientRegistrationPolicy" : [ { + "id" : "fbccf871-d01e-4d47-99d0-3bdce3bfa12c", + "name" : "Allowed Client Scopes", + "providerId" : "allowed-client-templates", + "subType" : "anonymous", + "subComponents" : { }, + "config" : { + "allow-default-scopes" : [ "true" ] + } + }, { + "id" : "611a0a79-84c4-4d2d-9d11-01eb58141a46", + "name" : "Trusted Hosts", + "providerId" : "trusted-hosts", + "subType" : "anonymous", + "subComponents" : { }, + "config" : { + "host-sending-registration-request-must-match" : [ "true" ], + "client-uris-must-match" : [ "true" ] + } + }, { + "id" : "2124ff56-7c6f-4095-ba92-ae335222f88c", + "name" : "Full Scope Disabled", + "providerId" : "scope", + "subType" : "anonymous", + "subComponents" : { }, + "config" : { } + }, { + "id" : "b8f02611-098d-402f-90a6-a1f09afcdb22", + "name" : "Allowed Protocol Mapper Types", + "providerId" : "allowed-protocol-mappers", + "subType" : "anonymous", + "subComponents" : { }, + "config" : { + "allowed-protocol-mapper-types" : [ "oidc-usermodel-attribute-mapper", "saml-role-list-mapper", "oidc-full-name-mapper", "saml-user-attribute-mapper", "saml-user-property-mapper", "oidc-sha256-pairwise-sub-mapper", "oidc-address-mapper", "oidc-usermodel-property-mapper" ] + } + }, { + "id" : "cca940dd-d866-44db-a211-0ed1bc682ae7", + "name" : "Allowed Protocol Mapper Types", + "providerId" : "allowed-protocol-mappers", + "subType" : "authenticated", + "subComponents" : { }, + "config" : { + "allowed-protocol-mapper-types" : [ "saml-user-attribute-mapper", "oidc-sha256-pairwise-sub-mapper", "saml-role-list-mapper", "oidc-usermodel-property-mapper", "oidc-full-name-mapper", "oidc-address-mapper", "saml-user-property-mapper", "oidc-usermodel-attribute-mapper" ] + } + }, { + "id" : "dfb48f4f-8760-419e-9337-15eb81a41fdb", + "name" : "Max Clients Limit", + "providerId" : "max-clients", + "subType" : "anonymous", + "subComponents" : { }, + "config" : { + "max-clients" : [ "200" ] + } + }, { + "id" : "dfbcfdd0-4628-4a27-927a-4a476017ca56", + "name" : "Allowed Client Scopes", + "providerId" : "allowed-client-templates", + "subType" : "authenticated", + "subComponents" : { }, + "config" : { + "allow-default-scopes" : [ "true" ] + } + }, { + "id" : "cb8bff43-35e8-4fbc-9758-02da2892008d", + "name" : "Consent Required", + "providerId" : "consent-required", + "subType" : "anonymous", + "subComponents" : { }, + "config" : { } + } ], + "org.keycloak.keys.KeyProvider" : [ { + "id" : "4fcc8a9a-8dac-4051-8c34-748bf12d011d", + "name" : "rsa-generated", + "providerId" : "rsa-generated", + "subComponents" : { }, + "config" : { + "privateKey" : [ "MIIEpAIBAAKCAQEAqpMWsm7G85cM6j1jJCxmM6UAssq+oVsfdFUNEXJPpjy4FGRo4cIzaSPjqLAHn1xrBY4wWoPQU+4h2RRurXw0ELLhCIy+LIfUU0djB/5v0s5vqzaj/v8nSKQuKT2NY04b1oNTSeUuL1/sopo8ZcvtOdD2gTlVE2qDQJvJuKxIK9D4r2h2E7Kh7GwI0VIuywi0Ehdbwm21LTZlcrrmNu1pzN8oodjz0uYRIQ/p+AJCa0b+RhFQWN40XTmW1hmERE/J21ZK8sMcmO0vKcg5v2yzDOMQUcTMVVA1MHER8Q08yTYWmyQNP6E3xobVhqwCeClzcNCw1SdNfOVTuqCiZOWQWQIDAQABAoIBAEhcYbKMYAYSPD5akGZWF30tMGCotboJyAw30HVoQvXIqGauOfgbxGeD/B4hnvox4IzYxxZ++K/CQ8Wtb05VdFjpKaHQ4xRNAvvZOt+3RoTtYl4FrgiNAYNFcve3zvUju5eC2qBsgu1CCkbom1qr6hUu2oPzaG32L3wHGsom++7p4YE7FAzfqrEhntlVouMf9oW2477823gcr4LtX3tz2uIw8ZtSGsAxPGWfunxtX9qTgEVzXUFYou94fn7u6vRbRKSqq/udjQcSRaPzdrdto98oH6Y+3rm0PKj5sTkJf8SJHJFCPTgIgnG/7VZm8ZVJAoGLLUGzNC6pgEFdYjDmhSkCgYEA+mQYOKF6f8c5axsrUXtHHoWKYjZCXnWCH+P+DJQAHFSvdPAZgLJ6odKS8tFhujh8murE5WGsVkXxqZOHwXqBHrWrpJhfO8otHPEklhjn2MAhrxWxHEVokdUJjfUzoK0S6RVni/4hZIFkj3322lW7KXdSoeM5dfe9hFKxYM8G+jMCgYEArmVGSJtOzrIAzRZCmMwXwW/rV9Hi8QQOJRy8IM5zLvQutZa3RbqGPjOnq8XjsT98L6w4tM6WsTXWmGxOKDFzPhtg3pxz0ghFC895WaDqz1EL3Wjzp0p1a0mqo8zA+vOh9h+0YQs649eOPHkdr5AvMqenpxIwhu7nG0WOK+OKl0MCgYEAzcYiza+PP6GXg3kxkWYRnXi7sFjNFFnX1aOF7gpXSPEjvKNxIf4LoB+w2lLO0L6JULstkyFBAym6H9V5lLy7jmRYqgz6/uT5TDa1DZFsQAot5HicNBKqjGaa0oo3oo155AnOLhNsl+9qmC46B1a7WKmSRC6700IFAtD+qwOYxVcCgYB1892ToietOUu9ar7kZbXziWUd4sGhzeJbS5Iahkf1jAZDn4qZyMyfKYTQc2nLKmsuO0enUsstVIKuWSKLoNaXPSFJr3vOpPU+RbeH3YSzb9eciy2xCnVceVjGrOghU8NJmqv/rv7Ht7VmRWzEn7qsgiSspWrY+KCrG2JLYP0NzQKBgQDtcbX43N7aGMs/wP2Y/PDoTPeIB6f0+D7rdoHBmK6nUxQ9V70uAyYC4WtJudrKkVKUKAK8oOgbD2Qne2t02pbYKxQQDyBGQObuyC28fA5DHl9F8j6jx2u+He1s23V9HZhxj36TOVIjdjctRCDGTg32RMLGZlli0St2hK9EWSrUvQ==" ], + "certificate" : [ "MIICmzCCAYMCBgF/LGg1XzANBgkqhkiG9w0BAQsFADARMQ8wDQYDVQQDDAZtZWRpbmEwHhcNMjIwMjI0MTU0MzIxWhcNMzIwMjI0MTU0NTAxWjARMQ8wDQYDVQQDDAZtZWRpbmEwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCqkxaybsbzlwzqPWMkLGYzpQCyyr6hWx90VQ0Rck+mPLgUZGjhwjNpI+OosAefXGsFjjBag9BT7iHZFG6tfDQQsuEIjL4sh9RTR2MH/m/Szm+rNqP+/ydIpC4pPY1jThvWg1NJ5S4vX+yimjxly+050PaBOVUTaoNAm8m4rEgr0PivaHYTsqHsbAjRUi7LCLQSF1vCbbUtNmVyuuY27WnM3yih2PPS5hEhD+n4AkJrRv5GEVBY3jRdOZbWGYRET8nbVkrywxyY7S8pyDm/bLMM4xBRxMxVUDUwcRHxDTzJNhabJA0/oTfGhtWGrAJ4KXNw0LDVJ0185VO6oKJk5ZBZAgMBAAEwDQYJKoZIhvcNAQELBQADggEBAD7yJ2HegJ3/LzAmn/JIDXH1qfZ2DgGyfFQk82tWmFnsxVaLrv0sehS7Ufza5JRsudmzL6I8LHTgYuS1zyDZ1kmEB4gIpmw+ZI4M+isIpuzGRz8B3t2y3jOnEKjykjTWWYQrINYQiqPKU8LSFwe+Uqtcqga0TqgZ2fO8tkeP74a7JVk1hd4JD50shuPIInPx5PfqN7xAUebyPeJk91RQVC4tSpIIlFyd13MFQOzocj9uB685SE6DT3vjguYod6tv7JIUme0+JZIhd67hBlZS71ebL2B0gcX7+9jKZi3oeGFX+2k5CWCHZUf7KBvY3WaxxZTlFCtRcNbWKkMUmVTjRJ8=" ], + "priority" : [ "100" ] + } + }, { + "id" : "025383fb-ebfe-4e5d-b82e-ada254fff0fc", + "name" : "hmac-generated", + "providerId" : "hmac-generated", + "subComponents" : { }, + "config" : { + "kid" : [ "672cf3de-8a6e-43a9-bbb3-3b4cda7477a5" ], + "secret" : [ "lxJLgn2fZb9sMr0OZOzv98PC9GZWRJRGrNP86lb99Ded4XqqVXPU5HGxdn6RCxXdJxZyydNbrCnzDhZSpYLJDw" ], + "priority" : [ "100" ], + "algorithm" : [ "HS256" ] + } + }, { + "id" : "9e25e190-e32d-4bc8-9c9d-f5683ba8d2c3", + "name" : "aes-generated", + "providerId" : "aes-generated", + "subComponents" : { }, + "config" : { + "kid" : [ "5fe1d9fe-f688-4e7b-8871-176b5cf97cd4" ], + "secret" : [ "o_z-vBEGNLSgbqxfgun_sg" ], + "priority" : [ "100" ] + } + } ] + }, + "internationalizationEnabled" : false, + "supportedLocales" : [ ], + "authenticationFlows" : [ { + "id" : "542e66b3-00a6-46d0-bebd-573aa184f412", + "alias" : "Account verification options", + "description" : "Method with which to verity the existing account", + "providerId" : "basic-flow", + "topLevel" : false, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticator" : "idp-email-verification", + "requirement" : "ALTERNATIVE", + "priority" : 10, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "requirement" : "ALTERNATIVE", + "priority" : 20, + "flowAlias" : "Verify Existing Account by Re-authentication", + "userSetupAllowed" : false, + "autheticatorFlow" : true + } ] + }, { + "id" : "acef3f99-a8be-4ee7-ba5e-09b49fd09771", + "alias" : "Authentication Options", + "description" : "Authentication options.", + "providerId" : "basic-flow", + "topLevel" : false, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticator" : "basic-auth", + "requirement" : "REQUIRED", + "priority" : 10, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "authenticator" : "basic-auth-otp", + "requirement" : "DISABLED", + "priority" : 20, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "authenticator" : "auth-spnego", + "requirement" : "DISABLED", + "priority" : 30, + "userSetupAllowed" : false, + "autheticatorFlow" : false + } ] + }, { + "id" : "55f0883b-5df6-4c1a-98e2-5042260ce86e", + "alias" : "Browser - Conditional OTP", + "description" : "Flow to determine if the OTP is required for the authentication", + "providerId" : "basic-flow", + "topLevel" : false, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticator" : "conditional-user-configured", + "requirement" : "REQUIRED", + "priority" : 10, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "authenticator" : "auth-otp-form", + "requirement" : "REQUIRED", + "priority" : 20, + "userSetupAllowed" : false, + "autheticatorFlow" : false + } ] + }, { + "id" : "e137d77f-4a04-444a-8653-f207118e60c9", + "alias" : "Direct Grant - Conditional OTP", + "description" : "Flow to determine if the OTP is required for the authentication", + "providerId" : "basic-flow", + "topLevel" : false, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticator" : "conditional-user-configured", + "requirement" : "REQUIRED", + "priority" : 10, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "authenticator" : "direct-grant-validate-otp", + "requirement" : "REQUIRED", + "priority" : 20, + "userSetupAllowed" : false, + "autheticatorFlow" : false + } ] + }, { + "id" : "7d0bf21f-60bf-48e5-9e6d-b081f0a8cfaf", + "alias" : "First broker login - Conditional OTP", + "description" : "Flow to determine if the OTP is required for the authentication", + "providerId" : "basic-flow", + "topLevel" : false, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticator" : "conditional-user-configured", + "requirement" : "REQUIRED", + "priority" : 10, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "authenticator" : "auth-otp-form", + "requirement" : "REQUIRED", + "priority" : 20, + "userSetupAllowed" : false, + "autheticatorFlow" : false + } ] + }, { + "id" : "55a04a80-9de5-4889-9145-584e00efb74c", + "alias" : "Handle Existing Account", + "description" : "Handle what to do if there is existing account with same email/username like authenticated identity provider", + "providerId" : "basic-flow", + "topLevel" : false, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticator" : "idp-confirm-link", + "requirement" : "REQUIRED", + "priority" : 10, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "requirement" : "REQUIRED", + "priority" : 20, + "flowAlias" : "Account verification options", + "userSetupAllowed" : false, + "autheticatorFlow" : true + } ] + }, { + "id" : "b8c46e73-2dba-4479-a2d9-8de9781411f0", + "alias" : "Reset - Conditional OTP", + "description" : "Flow to determine if the OTP should be reset or not. Set to REQUIRED to force.", + "providerId" : "basic-flow", + "topLevel" : false, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticator" : "conditional-user-configured", + "requirement" : "REQUIRED", + "priority" : 10, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "authenticator" : "reset-otp", + "requirement" : "REQUIRED", + "priority" : 20, + "userSetupAllowed" : false, + "autheticatorFlow" : false + } ] + }, { + "id" : "2be49850-cfdc-421a-a3b3-4ba373aa0a06", + "alias" : "User creation or linking", + "description" : "Flow for the existing/non-existing user alternatives", + "providerId" : "basic-flow", + "topLevel" : false, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticatorConfig" : "create unique user config", + "authenticator" : "idp-create-user-if-unique", + "requirement" : "ALTERNATIVE", + "priority" : 10, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "requirement" : "ALTERNATIVE", + "priority" : 20, + "flowAlias" : "Handle Existing Account", + "userSetupAllowed" : false, + "autheticatorFlow" : true + } ] + }, { + "id" : "fca3935e-19bc-422c-b3fd-cfd431424e61", + "alias" : "Verify Existing Account by Re-authentication", + "description" : "Reauthentication of existing account", + "providerId" : "basic-flow", + "topLevel" : false, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticator" : "idp-username-password-form", + "requirement" : "REQUIRED", + "priority" : 10, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "requirement" : "CONDITIONAL", + "priority" : 20, + "flowAlias" : "First broker login - Conditional OTP", + "userSetupAllowed" : false, + "autheticatorFlow" : true + } ] + }, { + "id" : "5e831b42-7e44-41d6-b4b6-4e60b79766e1", + "alias" : "browser", + "description" : "browser based authentication", + "providerId" : "basic-flow", + "topLevel" : true, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticator" : "auth-cookie", + "requirement" : "ALTERNATIVE", + "priority" : 10, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "authenticator" : "auth-spnego", + "requirement" : "DISABLED", + "priority" : 20, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "authenticator" : "identity-provider-redirector", + "requirement" : "ALTERNATIVE", + "priority" : 25, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "requirement" : "ALTERNATIVE", + "priority" : 30, + "flowAlias" : "forms", + "userSetupAllowed" : false, + "autheticatorFlow" : true + } ] + }, { + "id" : "85a60306-f8aa-4176-84cc-6ecd6a6e78b4", + "alias" : "clients", + "description" : "Base authentication for clients", + "providerId" : "client-flow", + "topLevel" : true, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticator" : "client-secret", + "requirement" : "ALTERNATIVE", + "priority" : 10, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "authenticator" : "client-jwt", + "requirement" : "ALTERNATIVE", + "priority" : 20, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "authenticator" : "client-secret-jwt", + "requirement" : "ALTERNATIVE", + "priority" : 30, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "authenticator" : "client-x509", + "requirement" : "ALTERNATIVE", + "priority" : 40, + "userSetupAllowed" : false, + "autheticatorFlow" : false + } ] + }, { + "id" : "18adc4b6-c061-4a14-9e86-d3c81f41761e", + "alias" : "direct grant", + "description" : "OpenID Connect Resource Owner Grant", + "providerId" : "basic-flow", + "topLevel" : true, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticator" : "direct-grant-validate-username", + "requirement" : "REQUIRED", + "priority" : 10, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "authenticator" : "direct-grant-validate-password", + "requirement" : "REQUIRED", + "priority" : 20, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "requirement" : "CONDITIONAL", + "priority" : 30, + "flowAlias" : "Direct Grant - Conditional OTP", + "userSetupAllowed" : false, + "autheticatorFlow" : true + } ] + }, { + "id" : "c7ee3e5c-6bcf-4307-a5e1-2803d06b0ef8", + "alias" : "docker auth", + "description" : "Used by Docker clients to authenticate against the IDP", + "providerId" : "basic-flow", + "topLevel" : true, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticator" : "docker-http-basic-authenticator", + "requirement" : "REQUIRED", + "priority" : 10, + "userSetupAllowed" : false, + "autheticatorFlow" : false + } ] + }, { + "id" : "ff29c759-441e-465b-8f34-990e1b342841", + "alias" : "first broker login", + "description" : "Actions taken after first broker login with identity provider account, which is not yet linked to any Keycloak account", + "providerId" : "basic-flow", + "topLevel" : true, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticatorConfig" : "review profile config", + "authenticator" : "idp-review-profile", + "requirement" : "REQUIRED", + "priority" : 10, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "requirement" : "REQUIRED", + "priority" : 20, + "flowAlias" : "User creation or linking", + "userSetupAllowed" : false, + "autheticatorFlow" : true + } ] + }, { + "id" : "30411610-5d4f-41c0-8e0b-6a5d31dd670d", + "alias" : "forms", + "description" : "Username, password, otp and other auth forms.", + "providerId" : "basic-flow", + "topLevel" : false, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticator" : "auth-username-password-form", + "requirement" : "REQUIRED", + "priority" : 10, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "requirement" : "CONDITIONAL", + "priority" : 20, + "flowAlias" : "Browser - Conditional OTP", + "userSetupAllowed" : false, + "autheticatorFlow" : true + } ] + }, { + "id" : "03f219b5-78b7-47dc-a68a-0eb2269032a4", + "alias" : "http challenge", + "description" : "An authentication flow based on challenge-response HTTP Authentication Schemes", + "providerId" : "basic-flow", + "topLevel" : true, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticator" : "no-cookie-redirect", + "requirement" : "REQUIRED", + "priority" : 10, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "requirement" : "REQUIRED", + "priority" : 20, + "flowAlias" : "Authentication Options", + "userSetupAllowed" : false, + "autheticatorFlow" : true + } ] + }, { + "id" : "daa97eda-8144-44f1-9564-15575a4ed989", + "alias" : "registration", + "description" : "registration flow", + "providerId" : "basic-flow", + "topLevel" : true, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticator" : "registration-page-form", + "requirement" : "REQUIRED", + "priority" : 10, + "flowAlias" : "registration form", + "userSetupAllowed" : false, + "autheticatorFlow" : true + } ] + }, { + "id" : "8c85f001-0257-4ed5-a485-574849241362", + "alias" : "registration form", + "description" : "registration form", + "providerId" : "form-flow", + "topLevel" : false, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticator" : "registration-user-creation", + "requirement" : "REQUIRED", + "priority" : 20, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "authenticator" : "registration-profile-action", + "requirement" : "REQUIRED", + "priority" : 40, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "authenticator" : "registration-password-action", + "requirement" : "REQUIRED", + "priority" : 50, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "authenticator" : "registration-recaptcha-action", + "requirement" : "DISABLED", + "priority" : 60, + "userSetupAllowed" : false, + "autheticatorFlow" : false + } ] + }, { + "id" : "70a789e0-8b93-4a6d-9281-14fc023d695c", + "alias" : "reset credentials", + "description" : "Reset credentials for a user if they forgot their password or something", + "providerId" : "basic-flow", + "topLevel" : true, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticator" : "reset-credentials-choose-user", + "requirement" : "REQUIRED", + "priority" : 10, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "authenticator" : "reset-credential-email", + "requirement" : "REQUIRED", + "priority" : 20, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "authenticator" : "reset-password", + "requirement" : "REQUIRED", + "priority" : 30, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "requirement" : "CONDITIONAL", + "priority" : 40, + "flowAlias" : "Reset - Conditional OTP", + "userSetupAllowed" : false, + "autheticatorFlow" : true + } ] + }, { + "id" : "bc2ebe7a-6827-4bb7-b888-fdc3a7ca2534", + "alias" : "saml ecp", + "description" : "SAML ECP Profile Authentication Flow", + "providerId" : "basic-flow", + "topLevel" : true, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticator" : "http-basic-authenticator", + "requirement" : "REQUIRED", + "priority" : 10, + "userSetupAllowed" : false, + "autheticatorFlow" : false + } ] + } ], + "authenticatorConfig" : [ { + "id" : "6c90efa8-3c70-4a6b-b04e-abfd516056b2", + "alias" : "create unique user config", + "config" : { + "require.password.update.after.registration" : "false" + } + }, { + "id" : "ddf4310d-2e82-45d2-8621-7ce4beb366a1", + "alias" : "review profile config", + "config" : { + "update.profile.on.first.login" : "missing" + } + } ], + "requiredActions" : [ { + "alias" : "CONFIGURE_TOTP", + "name" : "Configure OTP", + "providerId" : "CONFIGURE_TOTP", + "enabled" : true, + "defaultAction" : false, + "priority" : 10, + "config" : { } + }, { + "alias" : "terms_and_conditions", + "name" : "Terms and Conditions", + "providerId" : "terms_and_conditions", + "enabled" : false, + "defaultAction" : false, + "priority" : 20, + "config" : { } + }, { + "alias" : "UPDATE_PASSWORD", + "name" : "Update Password", + "providerId" : "UPDATE_PASSWORD", + "enabled" : true, + "defaultAction" : false, + "priority" : 30, + "config" : { } + }, { + "alias" : "UPDATE_PROFILE", + "name" : "Update Profile", + "providerId" : "UPDATE_PROFILE", + "enabled" : true, + "defaultAction" : false, + "priority" : 40, + "config" : { } + }, { + "alias" : "VERIFY_EMAIL", + "name" : "Verify Email", + "providerId" : "VERIFY_EMAIL", + "enabled" : true, + "defaultAction" : false, + "priority" : 50, + "config" : { } + }, { + "alias" : "delete_account", + "name" : "Delete Account", + "providerId" : "delete_account", + "enabled" : false, + "defaultAction" : false, + "priority" : 60, + "config" : { } + }, { + "alias" : "update_user_locale", + "name" : "Update User Locale", + "providerId" : "update_user_locale", + "enabled" : true, + "defaultAction" : false, + "priority" : 1000, + "config" : { } + } ], + "browserFlow" : "browser", + "registrationFlow" : "registration", + "directGrantFlow" : "direct grant", + "resetCredentialsFlow" : "reset credentials", + "clientAuthenticationFlow" : "clients", + "dockerAuthenticationFlow" : "docker auth", + "attributes" : { + "clientOfflineSessionMaxLifespan" : "0", + "clientSessionIdleTimeout" : "0", + "clientSessionMaxLifespan" : "0", + "frontendUrl" : "", + "clientOfflineSessionIdleTimeout" : "0" + }, + "keycloakVersion" : "12.0.4", + "userManagedAccessAllowed" : false +} \ No newline at end of file diff --git a/data/keycloak-setup/192.168.56.1.digital.tecnalia.dev/users.json b/data/keycloak-setup/192.168.56.1.digital.tecnalia.dev/users.json new file mode 100644 index 0000000000000000000000000000000000000000..c6738463f9271eafe5adbebba2eeebc5018a4bcd --- /dev/null +++ b/data/keycloak-setup/192.168.56.1.digital.tecnalia.dev/users.json @@ -0,0 +1,5262 @@ +{ + "id" : "medina", + "realm" : "medina", + "displayName" : "", + "notBefore" : 1674222044, + "revokeRefreshToken" : false, + "refreshTokenMaxReuse" : 0, + "accessTokenLifespan" : 300, + "accessTokenLifespanForImplicitFlow" : 900, + "ssoSessionIdleTimeout" : 7200, + "ssoSessionMaxLifespan" : 36000, + "ssoSessionIdleTimeoutRememberMe" : 0, + "ssoSessionMaxLifespanRememberMe" : 0, + "offlineSessionIdleTimeout" : 2592000, + "offlineSessionMaxLifespanEnabled" : false, + "offlineSessionMaxLifespan" : 5184000, + "clientSessionIdleTimeout" : 0, + "clientSessionMaxLifespan" : 0, + "clientOfflineSessionIdleTimeout" : 0, + "clientOfflineSessionMaxLifespan" : 0, + "accessCodeLifespan" : 60, + "accessCodeLifespanUserAction" : 300, + "accessCodeLifespanLogin" : 1800, + "actionTokenGeneratedByAdminLifespan" : 43200, + "actionTokenGeneratedByUserLifespan" : 300, + "enabled" : true, + "sslRequired" : "external", + "registrationAllowed" : false, + "registrationEmailAsUsername" : false, + "rememberMe" : false, + "verifyEmail" : false, + "loginWithEmailAllowed" : true, + "duplicateEmailsAllowed" : false, + "resetPasswordAllowed" : false, + "editUsernameAllowed" : false, + "bruteForceProtected" : false, + "permanentLockout" : false, + "maxFailureWaitSeconds" : 900, + "minimumQuickLoginWaitSeconds" : 60, + "waitIncrementSeconds" : 60, + "quickLoginCheckMilliSeconds" : 1000, + "maxDeltaTimeSeconds" : 43200, + "failureFactor" : 30, + "roles" : { + "realm" : [ { + "id" : "2f6015a8-ddee-42f9-99c5-4760bd5fb5c7", + "name" : "ROLE_USER", + "description" : "temporary role for catalogue jhipster", + "composite" : false, + "clientRole" : false, + "containerId" : "medina", + "attributes" : { } + }, { + "id" : "9d96522b-ff58-498d-ad7f-11a747bd924e", + "name" : "offline_access", + "description" : "${role_offline-access}", + "composite" : false, + "clientRole" : false, + "containerId" : "medina", + "attributes" : { } + }, { + "id" : "417a650d-7309-41d2-aecd-cd179c656c65", + "name" : "Auditor", + "description" : "The Conformity Assessment Body (CAB) is a body that performs conformity assessment services with the goal of demonstrating that specified requirements are fulfilled.", + "composite" : true, + "composites" : { + "client" : { + "clouditor-orchestrator" : [ "Create", "Delete", "Update", "Read" ], + "api-swagger" : [ "user", "test-fake-role" ], + "integrated-ui" : [ "showCCE", "user", "showUser", "showOrchestrator", "admin" ] + } + }, + "clientRole" : false, + "containerId" : "medina", + "attributes" : { } + }, { + "id" : "aba5b760-352b-493c-8c2b-86657d5852aa", + "name" : "SecurityGovernance", + "description" : "IT Security Governance (UC1) - Its main objective is the protection of Bosch business models, products, services, and data.", + "composite" : true, + "composites" : { + "client" : { + "integrated-ui" : [ "showSATRA", "showCCE", "showAMOE", "showUser", "showCNL", "showCatalogue", "showOrchestrator", "admin" ] + } + }, + "clientRole" : false, + "containerId" : "medina", + "attributes" : { } + }, { + "id" : "9d2b69b9-28c2-4c79-bc75-316100a7027e", + "name" : "SecurityAnalyst", + "description" : "Security Analyst (UC1) - Responsible for ensuring that the Bosch Group’s digital assets and sensitive information are protected as well as evaluating and reporting on the efficiency of the security policies in place.", + "composite" : false, + "clientRole" : false, + "containerId" : "medina", + "attributes" : { } + }, { + "id" : "dca59f95-5177-4721-92b4-b817c7c5d423", + "name" : "ProductOwner", + "description" : "Product and Service Owner (UC1) - The Product & Service Owner is the central point of contact for all questions concerning a specific Bosch IT product or service.", + "composite" : true, + "composites" : { + "client" : { + "integrated-ui" : [ "showSATRA", "showCCE", "user", "showAMOE", "showUser", "showCNL", "showCatalogue", "showOrchestrator", "admin" ] + } + }, + "clientRole" : false, + "containerId" : "medina", + "attributes" : { } + }, { + "id" : "0f08df2b-4b64-487c-9e51-2580a02ae0ef", + "name" : "Customer", + "description" : "The customer is either a company consuming cloud products or services (B2B, business-to-business context), or an individual (B2C, business-to-customer context).", + "composite" : false, + "clientRole" : false, + "containerId" : "medina", + "attributes" : { } + }, { + "id" : "dac0890c-0957-40ed-b72f-37ca91a59d6e", + "name" : "Company", + "description" : "Most of the defined roles are employed by the company. Products of company are being audited", + "composite" : true, + "composites" : { + "client" : { + "integrated-ui" : [ "showSATRA", "showCCE", "user", "showAMOE", "showUser", "showCNL", "showCatalogue", "showOrchestrator" ] + } + }, + "clientRole" : false, + "containerId" : "medina", + "attributes" : { } + }, { + "id" : "f4c52c7f-c34d-4101-8c11-523dbc526d72", + "name" : "ICO", + "description" : "Internal Control Owner - Responsible for creating internal controls. Executing the internal controls.", + "composite" : false, + "clientRole" : false, + "containerId" : "medina", + "attributes" : { } + }, { + "id" : "a73d220e-2c6b-4451-a80d-7689f6722884", + "name" : "ProductSecurityEng", + "description" : "Product (Security) Engineer (UC1) - Oversees the build, deploy, and run of a product and its system components.", + "composite" : true, + "composites" : { + "client" : { + "integrated-ui" : [ "showSATRA", "showCCE", "user", "showAMOE", "showUser", "showCNL", "showCatalogue", "showOrchestrator", "admin" ] + } + }, + "clientRole" : false, + "containerId" : "medina", + "attributes" : { } + }, { + "id" : "ec325a48-83c2-4b16-96be-305dc4767132", + "name" : "uma_authorization", + "description" : "${role_uma_authorization}", + "composite" : false, + "clientRole" : false, + "containerId" : "medina", + "attributes" : { } + }, { + "id" : "a45d5e5d-b5a5-4a2d-8026-a2371ad84577", + "name" : "DomainGovernance", + "description" : "Domain Governance (UC1) - Acts as the core competence holder and responsible topic owner for product security", + "composite" : true, + "composites" : { + "client" : { + "integrated-ui" : [ "showSATRA", "showCCE", "user", "showAMOE", "showUser", "showCNL", "showCatalogue", "showOrchestrator", "admin" ] + } + }, + "clientRole" : false, + "containerId" : "medina", + "attributes" : { } + }, { + "id" : "64dbcf9f-4231-4163-828a-5fa4fe9db278", + "name" : "CISO", + "description" : "Chief Information Security Officer - Responsible for security in the company, chooses what security controls should be implemented", + "composite" : true, + "composites" : { + "client" : { + "integrated-ui" : [ "showSATRA", "showCCE", "user", "showAMOE", "showUser", "showCNL", "showCatalogue", "showOrchestrator" ] + } + }, + "clientRole" : false, + "containerId" : "medina", + "attributes" : { } + }, { + "id" : "acdc368d-14d9-4478-b102-b67cfadebf49", + "name" : "test-role-1", + "composite" : false, + "clientRole" : false, + "containerId" : "medina", + "attributes" : { } + }, { + "id" : "e7c3caa6-1e16-4cf6-9484-b0af649117df", + "name" : "Compliance Manager", + "description" : "Responsible for the implementation of security control frameworks.\nResponsible for the correct implementation of the internal controls.\nResponsible for incident management.\nResponsible for performing internal audits.", + "composite" : true, + "composites" : { + "realm" : [ "ROLE_USER", "ROLE_ADMIN" ], + "client" : { + "raof" : [ "engine", "uma_protection" ], + "cnl-editor-frontend" : [ "user" ], + "integrated-ui" : [ "user", "showSATRA", "showCCE", "showAMOE", "showUser", "showCNL", "showCatalogue", "showOrchestrator", "admin", "showSSI" ], + "nl2cnl-translator-client" : [ "user" ] + } + }, + "clientRole" : false, + "containerId" : "medina", + "attributes" : { } + }, { + "id" : "fd93daa9-1357-4ba3-989d-7bf4b7ba2a07", + "name" : "ROLE_ADMIN", + "description" : "temporary role for catalogue jhipster", + "composite" : false, + "clientRole" : false, + "containerId" : "medina", + "attributes" : { } + } ], + "client" : { + "catalogue-backend" : [ ], + "raof-app" : [ { + "id" : "e08ef386-bb91-4ce8-8a02-8f65755d0612", + "name" : "uma_protection", + "composite" : false, + "clientRole" : true, + "containerId" : "1c198016-f44c-4620-b2f6-821173bc2e54", + "attributes" : { } + } ], + "security-admin-console" : [ ], + "wazuh-vat-evidence-collector-dev" : [ { + "id" : "3c40a84f-dc61-43d1-a607-e3fad0df3766", + "name" : "uma_protection", + "composite" : false, + "clientRole" : true, + "containerId" : "aa18689d-6d81-4b92-8b9e-291eb4733408", + "attributes" : { } + } ], + "clouditor-assessment" : [ ], + "account-console" : [ ], + "ssi-frontend" : [ ], + "amoe-client" : [ ], + "dsl-mapper-client" : [ { + "id" : "16f2a92a-594f-420a-92c7-e39fbee9901a", + "name" : "user", + "composite" : false, + "clientRole" : true, + "containerId" : "4cb90bba-1483-48f8-85c3-af800943c740", + "attributes" : { } + }, { + "id" : "e2b8af2e-38b0-4018-9a79-794fb47acd59", + "name" : "uma_protection", + "composite" : false, + "clientRole" : true, + "containerId" : "4cb90bba-1483-48f8-85c3-af800943c740", + "attributes" : { } + } ], + "cce-dev" : [ { + "id" : "aa5844fb-a4f8-4cfa-8514-1f4033e8bd9c", + "name" : "uma_protection", + "composite" : false, + "clientRole" : true, + "containerId" : "dc64b28b-a696-4b0c-8e24-2aeae138c3e5", + "attributes" : { } + } ], + "clouditor-cli" : [ ], + "codyze" : [ ], + "admin-cli" : [ ], + "catalogue-jhipster-control-center" : [ ], + "catalogue-registry" : [ ], + "clouditor-orchestrator" : [ { + "id" : "d0e4fbcd-ae45-48c3-89d5-29b1b5f35107", + "name" : "Create", + "composite" : false, + "clientRole" : true, + "containerId" : "fb2b3d0e-e2d7-4cb2-819d-bab9043f0d11", + "attributes" : { } + }, { + "id" : "22de6b01-a691-4b28-8f1d-95050048ade7", + "name" : "Delete", + "composite" : false, + "clientRole" : true, + "containerId" : "fb2b3d0e-e2d7-4cb2-819d-bab9043f0d11", + "attributes" : { } + }, { + "id" : "49d1cb98-55b9-48b3-a21c-4c7e8638cc19", + "name" : "Read", + "composite" : false, + "clientRole" : true, + "containerId" : "fb2b3d0e-e2d7-4cb2-819d-bab9043f0d11", + "attributes" : { } + }, { + "id" : "11bd1875-8f19-4216-8a2c-6dd2a5895c00", + "name" : "Update", + "composite" : false, + "clientRole" : true, + "containerId" : "fb2b3d0e-e2d7-4cb2-819d-bab9043f0d11", + "attributes" : { } + } ], + "realm-management" : [ { + "id" : "e02ce89a-c0b9-43b5-b6be-5c515624927a", + "name" : "manage-clients", + "description" : "${role_manage-clients}", + "composite" : false, + "clientRole" : true, + "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", + "attributes" : { } + }, { + "id" : "5bc05c8b-6d6a-45a1-92f7-cc33f4fe57bd", + "name" : "view-authorization", + "description" : "${role_view-authorization}", + "composite" : false, + "clientRole" : true, + "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", + "attributes" : { } + }, { + "id" : "0ee5608f-ab3a-4a8e-889b-e0d230a2fc86", + "name" : "view-clients", + "description" : "${role_view-clients}", + "composite" : true, + "composites" : { + "client" : { + "realm-management" : [ "query-clients" ] + } + }, + "clientRole" : true, + "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", + "attributes" : { } + }, { + "id" : "c2bd9190-451c-45d7-9588-412e1c40d5fd", + "name" : "manage-authorization", + "description" : "${role_manage-authorization}", + "composite" : false, + "clientRole" : true, + "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", + "attributes" : { } + }, { + "id" : "83e3e683-50b5-4050-b88b-2178342a13f8", + "name" : "manage-events", + "description" : "${role_manage-events}", + "composite" : false, + "clientRole" : true, + "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", + "attributes" : { } + }, { + "id" : "4e9c2113-f0d3-4691-bb66-49e3ca218d63", + "name" : "query-clients", + "description" : "${role_query-clients}", + "composite" : false, + "clientRole" : true, + "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", + "attributes" : { } + }, { + "id" : "cdca2718-5853-4969-9b63-2186e0382085", + "name" : "query-realms", + "description" : "${role_query-realms}", + "composite" : false, + "clientRole" : true, + "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", + "attributes" : { } + }, { + "id" : "33eb311b-fdbc-4ccf-b367-ae2b1c8c2e55", + "name" : "view-users", + "description" : "${role_view-users}", + "composite" : true, + "composites" : { + "client" : { + "realm-management" : [ "query-users", "query-groups" ] + } + }, + "clientRole" : true, + "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", + "attributes" : { } + }, { + "id" : "56382323-69f8-4eca-b433-aa14ccc83be3", + "name" : "manage-identity-providers", + "description" : "${role_manage-identity-providers}", + "composite" : false, + "clientRole" : true, + "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", + "attributes" : { } + }, { + "id" : "2db34bf8-3fac-4fb8-8ed4-b7f44cadcb2e", + "name" : "create-client", + "description" : "${role_create-client}", + "composite" : false, + "clientRole" : true, + "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", + "attributes" : { } + }, { + "id" : "ae7b03e5-747f-4341-8add-1c872658bec4", + "name" : "view-events", + "description" : "${role_view-events}", + "composite" : false, + "clientRole" : true, + "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", + "attributes" : { } + }, { + "id" : "a607a195-5e2c-4701-855d-d202ba52a313", + "name" : "manage-users", + "description" : "${role_manage-users}", + "composite" : false, + "clientRole" : true, + "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", + "attributes" : { } + }, { + "id" : "3f2bf59d-4b3f-425a-a75f-e6b8c6d27af0", + "name" : "view-realm", + "description" : "${role_view-realm}", + "composite" : false, + "clientRole" : true, + "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", + "attributes" : { } + }, { + "id" : "d23239ef-028a-4409-b965-e20ea6ac8795", + "name" : "impersonation", + "description" : "${role_impersonation}", + "composite" : false, + "clientRole" : true, + "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", + "attributes" : { } + }, { + "id" : "f724e1e9-a878-4ae3-9bc8-995767add1a3", + "name" : "manage-realm", + "description" : "${role_manage-realm}", + "composite" : false, + "clientRole" : true, + "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", + "attributes" : { } + }, { + "id" : "e6b7421d-7d5c-4f1c-bb48-0a873c9870c4", + "name" : "query-users", + "description" : "${role_query-users}", + "composite" : false, + "clientRole" : true, + "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", + "attributes" : { } + }, { + "id" : "7a81ec99-e710-409d-bd34-ae3642a1912d", + "name" : "view-identity-providers", + "description" : "${role_view-identity-providers}", + "composite" : false, + "clientRole" : true, + "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", + "attributes" : { } + }, { + "id" : "fbeca797-27ee-44a0-8566-bec5666e6bcc", + "name" : "query-groups", + "description" : "${role_query-groups}", + "composite" : false, + "clientRole" : true, + "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", + "attributes" : { } + }, { + "id" : "f9ea5c84-0690-47f4-b887-a3351ca800de", + "name" : "realm-admin", + "description" : "${role_realm-admin}", + "composite" : true, + "composites" : { + "client" : { + "realm-management" : [ "view-authorization", "manage-clients", "view-clients", "manage-authorization", "query-clients", "manage-events", "view-users", "query-realms", "manage-identity-providers", "create-client", "view-events", "view-realm", "manage-users", "impersonation", "manage-realm", "query-users", "view-identity-providers", "query-groups" ] + } + }, + "clientRole" : true, + "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", + "attributes" : { } + } ], + "api-swagger" : [ { + "id" : "a7aa8c9f-7cc5-4c91-8657-31b74ba02a1a", + "name" : "uma_protection", + "composite" : false, + "clientRole" : true, + "containerId" : "a08fc1fe-7c85-4c1c-9d04-604c6e35faa8", + "attributes" : { } + }, { + "id" : "88fa7113-8fd5-4dd4-940d-e0e2e06471d4", + "name" : "user", + "composite" : false, + "clientRole" : true, + "containerId" : "a08fc1fe-7c85-4c1c-9d04-604c6e35faa8", + "attributes" : { } + }, { + "id" : "08979d05-5713-4826-a036-39a25cbbcba6", + "name" : "test-fake-role", + "description" : "this is a fake role, for testing purpose", + "composite" : false, + "clientRole" : true, + "containerId" : "a08fc1fe-7c85-4c1c-9d04-604c6e35faa8", + "attributes" : { } + } ], + "cnl-editor-frontend" : [ { + "id" : "910ffe29-95b3-4b82-a734-b24bff7cfa8d", + "name" : "user", + "composite" : false, + "clientRole" : true, + "containerId" : "15a81bd1-4edd-4e2a-87ec-3bbcac30d2a3", + "attributes" : { } + } ], + "life-cycle-manager" : [ ], + "integrated-ui" : [ { + "id" : "644bda67-3674-4a93-968d-8a7bb9679e50", + "name" : "showSATRA", + "composite" : false, + "clientRole" : true, + "containerId" : "1150f83f-37bc-4b14-98a0-e179aaee0f6c", + "attributes" : { } + }, { + "id" : "58b0ddb9-373c-47d1-889a-9adacc414bf0", + "name" : "showCCE", + "composite" : false, + "clientRole" : true, + "containerId" : "1150f83f-37bc-4b14-98a0-e179aaee0f6c", + "attributes" : { } + }, { + "id" : "eb0a3413-b986-4cb6-a49c-9148d89df25a", + "name" : "showAMOE", + "composite" : false, + "clientRole" : true, + "containerId" : "1150f83f-37bc-4b14-98a0-e179aaee0f6c", + "attributes" : { } + }, { + "id" : "258c00de-d88c-4239-908b-be79f895c3b0", + "name" : "user", + "composite" : false, + "clientRole" : true, + "containerId" : "1150f83f-37bc-4b14-98a0-e179aaee0f6c", + "attributes" : { } + }, { + "id" : "8309ecee-a10c-440b-909c-5c36d12c6e2e", + "name" : "showUser", + "composite" : false, + "clientRole" : true, + "containerId" : "1150f83f-37bc-4b14-98a0-e179aaee0f6c", + "attributes" : { } + }, { + "id" : "77ecaa02-0d8e-4544-8235-21c07c48d251", + "name" : "showCNL", + "composite" : false, + "clientRole" : true, + "containerId" : "1150f83f-37bc-4b14-98a0-e179aaee0f6c", + "attributes" : { } + }, { + "id" : "a4309640-7f2f-45b5-a0ed-bb9977d6b2e7", + "name" : "showCatalogue", + "composite" : false, + "clientRole" : true, + "containerId" : "1150f83f-37bc-4b14-98a0-e179aaee0f6c", + "attributes" : { } + }, { + "id" : "ceae1740-d2ed-414f-b316-651d192adef3", + "name" : "showOrchestrator", + "composite" : false, + "clientRole" : true, + "containerId" : "1150f83f-37bc-4b14-98a0-e179aaee0f6c", + "attributes" : { } + }, { + "id" : "ae424f76-ac11-4a9b-939d-67ab55a0fc5a", + "name" : "admin", + "composite" : false, + "clientRole" : true, + "containerId" : "1150f83f-37bc-4b14-98a0-e179aaee0f6c", + "attributes" : { } + }, { + "id" : "e779ba09-8cc8-4b87-8289-f96a6de40d24", + "name" : "showSSI", + "composite" : false, + "clientRole" : true, + "containerId" : "1150f83f-37bc-4b14-98a0-e179aaee0f6c", + "attributes" : { } + } ], + "ccd-client" : [ ], + "broker" : [ { + "id" : "381e01c5-2dce-4da6-854b-334d015e7224", + "name" : "read-token", + "description" : "${role_read-token}", + "composite" : false, + "clientRole" : true, + "containerId" : "8d1a867d-537c-433e-8234-b3582127cc54", + "attributes" : { } + } ], + "clouditor-ui" : [ ], + "raof" : [ { + "id" : "6de07826-dc41-4208-bc5e-8d64d38cfec2", + "name" : "engine", + "composite" : false, + "clientRole" : true, + "containerId" : "785a9f77-d06f-4a65-9ba9-341921fda61a", + "attributes" : { } + }, { + "id" : "9ecb4267-a5d3-421e-9aad-9b329fe4701d", + "name" : "uma_protection", + "composite" : false, + "clientRole" : true, + "containerId" : "785a9f77-d06f-4a65-9ba9-341921fda61a", + "attributes" : { } + } ], + "nl2cnl-translator-client" : [ { + "id" : "8fdf06d3-6c44-4aa3-bb0a-80dc589ced1c", + "name" : "uma_protection", + "composite" : false, + "clientRole" : true, + "containerId" : "9f7c65f7-9ae9-4c9e-9bd7-971d0cbe146d", + "attributes" : { } + }, { + "id" : "4486610d-0195-463c-bf2f-cf4cd10001c8", + "name" : "user", + "composite" : false, + "clientRole" : true, + "containerId" : "9f7c65f7-9ae9-4c9e-9bd7-971d0cbe146d", + "attributes" : { } + } ], + "catalogue-gateway" : [ ], + "clouditor-discovery" : [ ], + "account" : [ { + "id" : "ad76fbd3-fd48-4820-8454-c9e6e8b21da5", + "name" : "manage-consent", + "description" : "${role_manage-consent}", + "composite" : true, + "composites" : { + "client" : { + "account" : [ "view-consent" ] + } + }, + "clientRole" : true, + "containerId" : "8bd89baf-08f6-4e4b-8394-6b4dd6050ed2", + "attributes" : { } + }, { + "id" : "3cf9ad63-38af-430f-86da-bf7455dfb668", + "name" : "view-applications", + "description" : "${role_view-applications}", + "composite" : false, + "clientRole" : true, + "containerId" : "8bd89baf-08f6-4e4b-8394-6b4dd6050ed2", + "attributes" : { } + }, { + "id" : "a47fd133-6ba5-4870-af1b-9a17b76be404", + "name" : "view-consent", + "description" : "${role_view-consent}", + "composite" : false, + "clientRole" : true, + "containerId" : "8bd89baf-08f6-4e4b-8394-6b4dd6050ed2", + "attributes" : { } + }, { + "id" : "36ac4d35-7384-40c3-a877-7a2934bc9250", + "name" : "manage-account-links", + "description" : "${role_manage-account-links}", + "composite" : false, + "clientRole" : true, + "containerId" : "8bd89baf-08f6-4e4b-8394-6b4dd6050ed2", + "attributes" : { } + }, { + "id" : "3e5612a2-7c5c-4026-a6ac-7a332e266aab", + "name" : "manage-account", + "description" : "${role_manage-account}", + "composite" : true, + "composites" : { + "client" : { + "account" : [ "manage-account-links" ] + } + }, + "clientRole" : true, + "containerId" : "8bd89baf-08f6-4e4b-8394-6b4dd6050ed2", + "attributes" : { } + }, { + "id" : "1062c184-cad0-462d-ad3a-d51d5208536c", + "name" : "delete-account", + "description" : "${role_delete-account}", + "composite" : false, + "clientRole" : true, + "containerId" : "8bd89baf-08f6-4e4b-8394-6b4dd6050ed2", + "attributes" : { } + }, { + "id" : "d1a2381b-d165-43fb-a79d-8c614c46b96e", + "name" : "view-profile", + "description" : "${role_view-profile}", + "composite" : false, + "clientRole" : true, + "containerId" : "8bd89baf-08f6-4e4b-8394-6b4dd6050ed2", + "attributes" : { } + } ] + } + }, + "groups" : [ { + "id" : "ed9dd061-e96c-47e0-95bd-fcc39e359c0c", + "name" : "CloudServiceProvidersGroup", + "path" : "/CloudServiceProvidersGroup", + "attributes" : { }, + "realmRoles" : [ ], + "clientRoles" : { }, + "subGroups" : [ { + "id" : "8e2617d0-5711-44d1-a93e-d05d4423a63b", + "name" : "Fabasoft Cloud Service Provider", + "path" : "/CloudServiceProvidersGroup/Fabasoft Cloud Service Provider", + "attributes" : { + "cloudserviceproviderid" : [ "Fabasoft" ] + }, + "realmRoles" : [ ], + "clientRoles" : { }, + "subGroups" : [ ] + }, { + "id" : "a9cae5cc-8824-47fc-9564-d3976b6ae0ff", + "name" : "CloudServiceProviderTest1", + "path" : "/CloudServiceProvidersGroup/CloudServiceProviderTest1", + "attributes" : { + "cloudserviceproviderid" : [ "CloudServiceProviderTest1ID" ] + }, + "realmRoles" : [ ], + "clientRoles" : { }, + "subGroups" : [ ] + }, { + "id" : "372d7fb2-acfd-4338-aa9a-c04c1fe139e7", + "name" : "Bosch Cloud Service Provider", + "path" : "/CloudServiceProvidersGroup/Bosch Cloud Service Provider", + "attributes" : { + "cloudserviceproviderid" : [ "Bosch" ] + }, + "realmRoles" : [ ], + "clientRoles" : { }, + "subGroups" : [ ] + } ] + }, { + "id" : "b8508c0d-57db-4136-a469-b70e1f6332cc", + "name" : "CloudServicesGroup", + "path" : "/CloudServicesGroup", + "attributes" : { }, + "realmRoles" : [ ], + "clientRoles" : { }, + "subGroups" : [ { + "id" : "b6421285-efcf-4a4e-9a71-432cf325e2e4", + "name" : "CloudServiceTest2", + "path" : "/CloudServicesGroup/CloudServiceTest2", + "attributes" : { + "cloudserviceid" : [ "CloudServiceTest2ID" ] + }, + "realmRoles" : [ ], + "clientRoles" : { }, + "subGroups" : [ ] + }, { + "id" : "6ff013fa-c765-43e0-b7d6-a0ab1cac5000", + "name" : "TestCCDCloudService", + "path" : "/CloudServicesGroup/TestCCDCloudService", + "attributes" : { + "cloudserviceid" : [ "73633f38-9509-4820-a867-68d49622c5f7" ] + }, + "realmRoles" : [ ], + "clientRoles" : { }, + "subGroups" : [ ] + }, { + "id" : "23bd87c3-c46f-47fa-9925-d26e7e8b3045", + "name" : "MichelaCS1", + "path" : "/CloudServicesGroup/MichelaCS1", + "attributes" : { + "cloudserviceid" : [ "pippoplutopaperina" ] + }, + "realmRoles" : [ ], + "clientRoles" : { }, + "subGroups" : [ ] + }, { + "id" : "610a288f-b93b-4da2-ab58-a5e61b38dbc7", + "name" : "Fabasoft", + "path" : "/CloudServicesGroup/Fabasoft", + "attributes" : { + "cloudserviceid" : [ "27ec470e-952b-40e7-9167-a7c3e58bd53d" ] + }, + "realmRoles" : [ ], + "clientRoles" : { }, + "subGroups" : [ ] + }, { + "id" : "9dccce11-775b-4e2c-a471-90d91cc40dcf", + "name" : "Bosch", + "path" : "/CloudServicesGroup/Bosch", + "attributes" : { + "cloudserviceid" : [ "f712b8bc-5bd0-4df7-9e34-9e1fb2719763" ] + }, + "realmRoles" : [ ], + "clientRoles" : { }, + "subGroups" : [ ] + }, { + "id" : "c23dc3e7-334b-403f-a327-3f4761a8508a", + "name" : "Bosch_PaaS", + "path" : "/CloudServicesGroup/Bosch_PaaS", + "attributes" : { + "cloudserviceid" : [ "5a69a810-b523-4cb7-8f46-600098a9754f" ] + }, + "realmRoles" : [ ], + "clientRoles" : { }, + "subGroups" : [ ] + }, { + "id" : "fd59fb08-937f-4e3a-b9fd-cd3443781cad", + "name" : "DefaultCloudService", + "path" : "/CloudServicesGroup/DefaultCloudService", + "attributes" : { + "cloudserviceid" : [ "00000000-0000-0000-0000-000000000000" ] + }, + "realmRoles" : [ ], + "clientRoles" : { }, + "subGroups" : [ ] + }, { + "id" : "c7e191c6-ef16-4d6c-bc62-1cac4dbd8dc7", + "name" : "CloudServiceWithValidUUID", + "path" : "/CloudServicesGroup/CloudServiceWithValidUUID", + "attributes" : { + "cloudserviceid" : [ "813d82df-2d31-4ee1-9ca6-f38137bd1f14" ] + }, + "realmRoles" : [ ], + "clientRoles" : { }, + "subGroups" : [ ] + }, { + "id" : "3ae94354-6142-4999-a964-1c7fe5193657", + "name" : "Bosch_IaaS", + "path" : "/CloudServicesGroup/Bosch_IaaS", + "attributes" : { + "cloudserviceid" : [ "945d9c38-b2ad-4db5-9d33-cd10b7d5d840" ] + }, + "realmRoles" : [ ], + "clientRoles" : { }, + "subGroups" : [ ] + }, { + "id" : "f9da1040-2a1d-4dbb-b387-e68f159dd1b2", + "name" : "CloudServiceTest1", + "path" : "/CloudServicesGroup/CloudServiceTest1", + "attributes" : { + "cloudserviceid" : [ "CloudServiceTest1ID" ] + }, + "realmRoles" : [ ], + "clientRoles" : { }, + "subGroups" : [ ] + }, { + "id" : "f7822dbb-1b40-4992-903a-3102e83df6dc", + "name" : "hpe-csid1", + "path" : "/CloudServicesGroup/hpe-csid1", + "attributes" : { + "cloudserviceid" : [ "0000001-b2ad-4db5-9d33-cd10b7d5d840" ] + }, + "realmRoles" : [ ], + "clientRoles" : { }, + "subGroups" : [ ] + }, { + "id" : "7c09aad4-b0e8-4f00-8b40-05c8451de518", + "name" : "Bosch_SaaS", + "path" : "/CloudServicesGroup/Bosch_SaaS", + "attributes" : { + "cloudserviceid" : [ "35586422-bd0d-4a01-a467-7ced9c388748" ] + }, + "realmRoles" : [ ], + "clientRoles" : { }, + "subGroups" : [ ] + }, { + "id" : "d2fb3390-c515-41f9-9475-6abab61ae4d7", + "name" : "hpe-csid2", + "path" : "/CloudServicesGroup/hpe-csid2", + "attributes" : { + "cloudserviceid" : [ "00000002-b2ad-4db5-9d33-cd10b7d5d840" ] + }, + "realmRoles" : [ ], + "clientRoles" : { }, + "subGroups" : [ ] + } ] + }, { + "id" : "515497a3-59d5-4020-ab57-d07d4bde9c74", + "name" : "OldDefaultCS", + "path" : "/OldDefaultCS", + "attributes" : { + "cloudserviceid" : [ "00000000-0000-0000-000000000000" ] + }, + "realmRoles" : [ ], + "clientRoles" : { }, + "subGroups" : [ ] + } ], + "defaultRoles" : [ "offline_access", "uma_authorization" ], + "requiredCredentials" : [ "password" ], + "otpPolicyType" : "totp", + "otpPolicyAlgorithm" : "HmacSHA1", + "otpPolicyInitialCounter" : 0, + "otpPolicyDigits" : 6, + "otpPolicyLookAheadWindow" : 1, + "otpPolicyPeriod" : 30, + "otpSupportedApplications" : [ "FreeOTP", "Google Authenticator" ], + "webAuthnPolicyRpEntityName" : "keycloak", + "webAuthnPolicySignatureAlgorithms" : [ "ES256" ], + "webAuthnPolicyRpId" : "", + "webAuthnPolicyAttestationConveyancePreference" : "not specified", + "webAuthnPolicyAuthenticatorAttachment" : "not specified", + "webAuthnPolicyRequireResidentKey" : "not specified", + "webAuthnPolicyUserVerificationRequirement" : "not specified", + "webAuthnPolicyCreateTimeout" : 0, + "webAuthnPolicyAvoidSameAuthenticatorRegister" : false, + "webAuthnPolicyAcceptableAaguids" : [ ], + "webAuthnPolicyPasswordlessRpEntityName" : "keycloak", + "webAuthnPolicyPasswordlessSignatureAlgorithms" : [ "ES256" ], + "webAuthnPolicyPasswordlessRpId" : "", + "webAuthnPolicyPasswordlessAttestationConveyancePreference" : "not specified", + "webAuthnPolicyPasswordlessAuthenticatorAttachment" : "not specified", + "webAuthnPolicyPasswordlessRequireResidentKey" : "not specified", + "webAuthnPolicyPasswordlessUserVerificationRequirement" : "not specified", + "webAuthnPolicyPasswordlessCreateTimeout" : 0, + "webAuthnPolicyPasswordlessAvoidSameAuthenticatorRegister" : false, + "webAuthnPolicyPasswordlessAcceptableAaguids" : [ ], + "users" : [ { + "id" : "bb6244c3-35ec-4908-b4e0-73b159cc7a04", + "createdTimestamp" : 1646126460390, + "username" : "admin", + "enabled" : true, + "totp" : false, + "emailVerified" : true, + "firstName" : "admin", + "email" : "admin@localhost", + "credentials" : [ { + "id" : "4525a467-f0db-47e7-9f5a-edae4109844a", + "type" : "password", + "createdDate" : 1646126469027, + "secretData" : "{\"value\":\"BaRnqXmvxOYEu8fmlMYD+tpEIhbvW6m4KR9lzAl4f02Lt2WBUK2v7S/QobMoYEXqGWQxLpJnpsUcKlY9YGSiMw==\",\"salt\":\"rjK2JqIKXPdb1A03p8VcQw==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "ROLE_USER", "offline_access", "Auditor", "uma_authorization", "ROLE_ADMIN", "Compliance Manager" ], + "clientRoles" : { + "raof" : [ "engine", "uma_protection" ], + "integrated-ui" : [ "user" ], + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ "/CloudServicesGroup/Bosch", "/CloudServiceProvidersGroup/Bosch Cloud Service Provider", "/CloudServiceProvidersGroup/CloudServiceProviderTest1", "/CloudServicesGroup/CloudServiceTest1", "/CloudServicesGroup/CloudServiceTest2", "/CloudServicesGroup/CloudServiceWithValidUUID", "/CloudServicesGroup/DefaultCloudService", "/CloudServicesGroup/Fabasoft", "/CloudServiceProvidersGroup/Fabasoft Cloud Service Provider", "/OldDefaultCS", "/CloudServicesGroup/TestCCDCloudService" ] + }, { + "id" : "08fbe789-4ada-4b3a-bcf1-dc20b469911b", + "createdTimestamp" : 1646739467160, + "username" : "amoe_test", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "firstName" : "First name of amoe_test", + "lastName" : "Last name of amoe_test", + "credentials" : [ { + "id" : "da7be389-1b6a-42fa-8eb6-95fc83dc1cfa", + "type" : "password", + "createdDate" : 1659086998243, + "secretData" : "{\"value\":\"t0KyuUWeAlO6kD1pr6T65d9XGn1dGPDLYHPlVWO2PLp8bdyfEw83swDl2DZxjLueSA2Ko9Oj9YjdkAzHGIFL0g==\",\"salt\":\"gMuE/1NUTwSHg5Wad0GfwA==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "ICO", "uma_authorization" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ "/CloudServicesGroup/DefaultCloudService", "/CloudServicesGroup/Fabasoft" ] + }, { + "id" : "3c4f61ad-d73f-4f7e-9765-1423cdabab50", + "createdTimestamp" : 1652112647746, + "username" : "auditor", + "enabled" : true, + "totp" : false, + "emailVerified" : true, + "firstName" : "John", + "lastName" : "Doe", + "credentials" : [ { + "id" : "2f4b54a6-1156-4b45-a15a-9f82dc71f56b", + "type" : "password", + "createdDate" : 1652112667799, + "secretData" : "{\"value\":\"2d0Gsuw7tv/hqVqpyPgYvgZBhTFFjG4PzOvOPXyUjrQe51ObcPGrUQZnlcHv/eNAKGuIVpETuoDizmNtY0Q56A==\",\"salt\":\"0lLn1LPVUYiOqJvA4eUmBg==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "Auditor", "uma_authorization" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ "/CloudServiceProvidersGroup/CloudServiceProviderTest1", "/CloudServicesGroup/DefaultCloudService" ] + }, { + "id" : "02e668be-9d34-4eb5-ae44-a139de6f8f22", + "createdTimestamp" : 1652187672848, + "username" : "auditor_test", + "enabled" : true, + "totp" : false, + "emailVerified" : true, + "firstName" : "Test", + "lastName" : "Auditor", + "email" : "test@auditor.com", + "credentials" : [ { + "id" : "19bb6976-fb3c-4faa-909b-0391c123945c", + "type" : "password", + "createdDate" : 1652187687565, + "secretData" : "{\"value\":\"8id0z74ft3S127JZmjrj17SMlQFA5oRS50/JpzOSt5ivYc8d2XFcJEi/LgNQUPMc+OrBKzwGkqUOJAINGCgQ9w==\",\"salt\":\"jqiKjTRDRPABNeU1HRvUxw==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "Auditor", "uma_authorization" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "745cb22f-555b-4d93-8a77-f566494f1c12", + "createdTimestamp" : 1653297176816, + "username" : "bosch_test", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "email" : "michela.fazzolari@iit.cnr.it", + "credentials" : [ { + "id" : "b831343a-7f00-431b-b75f-852335d84347", + "type" : "password", + "createdDate" : 1653297431168, + "secretData" : "{\"value\":\"RY74rikcZ2dTQxWiMdtizGiTRHjH3uLjqrZR6o9NhQ3c3TMyl4u/BCKVwO3CGa1Y5BSBlUUb3u7PwgxkhCgwdw==\",\"salt\":\"fjV8yJwb94Raye/qg600vw==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "ROLE_USER", "offline_access", "Auditor", "uma_authorization", "Compliance Manager", "ROLE_ADMIN" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ "/CloudServicesGroup/Bosch", "/CloudServiceProvidersGroup/Bosch Cloud Service Provider" ] + }, { + "id" : "778ce3aa-e840-4fec-9b7a-52dde6a2f878", + "createdTimestamp" : 1671615249436, + "username" : "ccd_admin", + "enabled" : true, + "totp" : false, + "emailVerified" : true, + "firstName" : "CCD", + "lastName" : "Testuser", + "email" : "bernhard.cermak@fabasoft.com", + "credentials" : [ { + "id" : "b1f67032-d7da-4595-96fc-4d6f8073ba4d", + "type" : "password", + "userLabel" : "", + "createdDate" : 1671615440296, + "secretData" : "{\"value\":\"K+vbtk9rqKFZaD/Rs1p8t8uG+sz9xyyLs2KU89cXyWB7hFvdjsDD3VHz0/jzAWwAeN9Q6MOzCG3PtMCJJIlcsA==\",\"salt\":\"yUSxM8Vetd331zl/tfR+IQ==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "ROLE_USER", "offline_access", "Auditor", "uma_authorization", "CISO", "ROLE_ADMIN", "Compliance Manager" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ "/CloudServicesGroup/DefaultCloudService", "/CloudServicesGroup/Fabasoft", "/CloudServiceProvidersGroup/Fabasoft Cloud Service Provider" ] + }, { + "id" : "beac8e83-64e4-4b47-8140-8a85fa36fd12", + "createdTimestamp" : 1668692868046, + "username" : "ciso", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "firstName" : "amoe read only", + "credentials" : [ { + "id" : "9b7d688c-f9e0-4210-9727-fe4313882715", + "type" : "password", + "createdDate" : 1668692879318, + "secretData" : "{\"value\":\"HmPYkMZRirfATQ1fCAI85xw/qm+/9Vkkjp6xSId7w8yCLQgBEPwruhRxbJ0GDou0xzoHGesKf9JMRLXbLsCVKg==\",\"salt\":\"FnMudEOWxeN+No1LB2wpXQ==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "ROLE_USER", "offline_access", "uma_authorization", "CISO" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ "/CloudServiceProvidersGroup/CloudServiceProviderTest1", "/CloudServicesGroup/DefaultCloudService" ] + }, { + "id" : "67bb2090-c670-4ce9-ac41-c48d8390a82d", + "createdTimestamp" : 1668528487642, + "username" : "cnledito-test", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "firstName" : "cnleditortest", + "lastName" : "test", + "email" : "cnleditortest@editor.com", + "credentials" : [ { + "id" : "5c044583-cf1e-4fad-92eb-9a1fa9f2c219", + "type" : "password", + "createdDate" : 1668528520774, + "secretData" : "{\"value\":\"u+/Bx8qHcKSTfJxsydwyihI4opGHi0eX7V2161D3xZy0XdtcLQj+wFLBZlRFRpvca7EJcr8d5XCkXQ1SVOvhSA==\",\"salt\":\"Ch9289q4Ljsl08F0qIGRPA==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization", "Compliance Manager" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "5b083c04-bbda-48be-8441-fbe16968902b", + "createdTimestamp" : 1650710929018, + "username" : "cnr-user", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "firstName" : "Stefano", + "lastName" : "Fagnano", + "email" : "stefano.fagnano@me.com", + "credentials" : [ { + "id" : "fe14429e-56cf-4810-8ca2-7fab0ea81a80", + "type" : "password", + "createdDate" : 1650710973177, + "secretData" : "{\"value\":\"t+/Zdw3TRlptIsNjJh22t1t2rJmNsanwsZkqfgI0++tKxhnq8pMZCHmX8RTLuotokLNPjzC+oWTxpOjdQwJ5vg==\",\"salt\":\"7NvfqfUVIqeY9uVBwG5+kw==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization" ], + "clientRoles" : { + "raof" : [ "engine" ], + "raof-app" : [ "uma_protection" ], + "integrated-ui" : [ "user", "showSATRA", "showCCE", "showAMOE", "showUser", "showCNL", "showCatalogue", "showOrchestrator" ], + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 1660315722, + "groups" : [ ] + }, { + "id" : "efa7b51d-1c6a-4eb6-87ed-6e7afd3f5901", + "createdTimestamp" : 1651657436115, + "username" : "csp_test", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "credentials" : [ { + "id" : "02d21c6e-093f-4631-98fb-09a9315c8ee3", + "type" : "password", + "createdDate" : 1651657542422, + "secretData" : "{\"value\":\"PUExIha4Quy9RzbBQtRpXx5F5itYQrp3+fd5FcQuy3A4JjsRZ7DgZQ5abEvytgAKrI+vFUY9NvGeHR2vWijwoQ==\",\"salt\":\"EhGr0tjHnNSuKZp2hvNLHA==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization", "Compliance Manager" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "1247915b-d17c-4b5b-aad6-889c24225420", + "createdTimestamp" : 1646842473867, + "username" : "fabasoftpe", + "enabled" : true, + "totp" : false, + "emailVerified" : true, + "firstName" : "fabasoftpe", + "credentials" : [ { + "id" : "99ea9dc6-b4b3-4e0b-8aa9-2ecf58daa670", + "type" : "password", + "createdDate" : 1646842549296, + "secretData" : "{\"value\":\"rjCSXoy+G2SbrGgLqP8Qtx9eJYGheRLzVaZ2W7tZ7SO14I9K7W0GZFK7gg/wwZe7fNCT4c+kTWuuK42cR7JAiA==\",\"salt\":\"ViuDtUVx++5GGlqT+Kajvg==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "ROLE_USER", "offline_access", "Auditor", "uma_authorization", "Compliance Manager", "ROLE_ADMIN" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ "/CloudServicesGroup/Fabasoft", "/CloudServiceProvidersGroup/Fabasoft Cloud Service Provider" ] + }, { + "id" : "0f52f8dd-8347-4666-be72-2d44debec2d6", + "createdTimestamp" : 1675771346677, + "username" : "hpe-user1", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "credentials" : [ { + "id" : "cc5b9aa2-0fbb-44c6-a63d-4397bb117d7d", + "type" : "password", + "createdDate" : 1675771371499, + "secretData" : "{\"value\":\"BnLcEhRNKkj0UXexTGO0Jk7HvQp/uPP2P5M17MS9yHV/qGmrPnCX8bC7tU+bjnWfmS2lhtSXDTZIf8qZLtncWw==\",\"salt\":\"D9Ce0ExGm95QZ9jDZyO6hA==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "ROLE_USER", "offline_access", "uma_authorization", "Compliance Manager" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ "/CloudServicesGroup/hpe-csid1" ] + }, { + "id" : "3a3d32c9-6543-4ba7-b900-7dcabcf8457d", + "createdTimestamp" : 1675771545834, + "username" : "hpe-user2", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "credentials" : [ { + "id" : "9e9f5bf9-7378-4d2d-97cd-5904d72c83d2", + "type" : "password", + "createdDate" : 1675771558717, + "secretData" : "{\"value\":\"/dzDuLuAitMA1rzNf3+xUWI6/vrnkgS27tSyTLHQl8Ayn/8wSVwpEOU8dzeBPaNdYpyLs86v0Y0vVF0E0+KiEQ==\",\"salt\":\"VConj0TiO36bBTmmBTQUgg==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "ROLE_USER", "offline_access", "uma_authorization", "Compliance Manager" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ "/CloudServicesGroup/hpe-csid1", "/CloudServicesGroup/hpe-csid2" ] + }, { + "id" : "5cd36ec2-65fd-4373-aa16-9114d76d43da", + "createdTimestamp" : 1653465308946, + "username" : "jlunagar", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "firstName" : "Jesus", + "lastName" : "Luna", + "email" : "jesus.lunagarcia@de.bosch.com", + "credentials" : [ ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "federatedIdentities" : [ { + "identityProvider" : "oidc", + "userId" : "GKn0JglY4EuL/COIDpC4xtWS8XbWmlQcWNN1lxaxTMw=", + "userName" : "gkn0jgly4eul/coidpc4xtws8xbwmlqcwnn1lxaxtmw=" + } ], + "realmRoles" : [ "ROLE_USER", "offline_access", "uma_authorization", "Compliance Manager", "ROLE_ADMIN" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ "/CloudServicesGroup/Bosch", "/CloudServiceProvidersGroup/Bosch Cloud Service Provider" ] + }, { + "id" : "dbdb2c43-a90d-4bd8-a29a-c23d00e8a5fc", + "createdTimestamp" : 1646842573862, + "username" : "lawexpert", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "credentials" : [ { + "id" : "47c67cc2-9fec-471f-aee3-b93cb8fb50d4", + "type" : "password", + "createdDate" : 1646842584938, + "secretData" : "{\"value\":\"4u0v3JqYQ/m7qYSuG8gcxfdMveQyTLkOK1t9YTXsdH9b6XWmcmx+eemKvvZzlhGLrZ2JoyRv3Emr7E3gacWvbw==\",\"salt\":\"hKwIjTGtDpDCPw0r7xFMyA==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization", "Compliance Manager" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "c4eaac8d-860d-4f35-add0-00b52277deab", + "createdTimestamp" : 1668089005936, + "username" : "levilübbe", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "firstName" : "Levi", + "lastName" : "Lübbe", + "email" : "fixed-term.levi.luebbe@de.bosch.com", + "credentials" : [ ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "federatedIdentities" : [ { + "identityProvider" : "oidc", + "userId" : "n/s6GK+IJlhIlRsPzqrQtbn5RmwurgRTzMuZh/9IFGg=", + "userName" : "n/s6gk+ijlhilrspzqrqtbn5rmwurgrtzmuzh/9ifgg=" + } ], + "realmRoles" : [ "offline_access", "uma_authorization", "Compliance Manager" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "1a127e64-49ea-47ae-bc94-e65d60cc044f", + "createdTimestamp" : 1656060420821, + "username" : "luca", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "email" : "lucapetrillo0@gmail.com", + "credentials" : [ { + "id" : "89606e04-593a-462c-b105-49291a314f46", + "type" : "password", + "createdDate" : 1657004701136, + "secretData" : "{\"value\":\"AGZxDoD8TnZQWbjQ8C10czzhedMZbhik22BZwizM1NOWf1G1Bgk9jhSo3FG8Y8dSznlkHhqkux6pto3pFeAinA==\",\"salt\":\"t1l9/JcGqu80EmyPCHVJrA==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ "UPDATE_PASSWORD" ], + "realmRoles" : [ "offline_access", "uma_authorization" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "5459884f-0e81-4541-b0f7-039143074658", + "createdTimestamp" : 1647939833771, + "username" : "nl2cnl_test", + "enabled" : true, + "totp" : false, + "emailVerified" : true, + "firstName" : "", + "email" : "m.fazzolari@iit.cnr.it", + "credentials" : [ { + "id" : "0950817c-a5b2-4b9b-b0cf-8b7ae79526c2", + "type" : "password", + "createdDate" : 1651654675240, + "secretData" : "{\"value\":\"H5hcwQTSDwABIRHvMOOywIvJFEEDhn5GXyGttQVDJpqnY7uQaRD7KxfbXIb5nE9m495A4kpG5L0/AFCwdgL+ZQ==\",\"salt\":\"1Z6UllkkiwS6jf7FKA312Q==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "ROLE_USER", "offline_access", "Auditor", "uma_authorization", "ROLE_ADMIN", "Compliance Manager" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ "/CloudServicesGroup/MichelaCS1", "/OldDefaultCS", "/CloudServicesGroup/hpe-csid1" ] + }, { + "id" : "870ee3ee-7640-4ef3-8f37-c99306d7b02f", + "createdTimestamp" : 1668755928215, + "username" : "noroles", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "firstName" : "I have no", + "lastName" : "roles", + "credentials" : [ { + "id" : "d73fd5de-b5ec-4196-90eb-376cca300001", + "type" : "password", + "createdDate" : 1668755939191, + "secretData" : "{\"value\":\"j3HO2+EYY6HVOtKrdktKCRv+xf29S3ic14aU2e0+BG33E3AJGwbQ26u8QePXtaQvcnLjB9tgX3fzhiD8o2uXnw==\",\"salt\":\"pR9RdzE892uBElC3UbV0ng==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "78161698-ec9d-4fdc-ae05-d1b0b1dc0d97", + "createdTimestamp" : 1652873527037, + "username" : "patrick.weiss3@de.bosch.com", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "firstName" : "Patrick", + "lastName" : "Weiss", + "email" : "patrick.weiss3@de.bosch.com", + "credentials" : [ ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "federatedIdentities" : [ { + "identityProvider" : "oidc", + "userId" : "TQQySlVjXN8OaaXkrKUKJEMCx3dfuu4MuIuKiRgXgF8=", + "userName" : "tqqyslvjxn8oaaxkrkukjemcx3dfuu4muiukirgxgf8=" + } ], + "realmRoles" : [ "offline_access", "uma_authorization", "Compliance Manager" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "bb6d0c7f-e4ea-4f42-9375-f741b1ebac97", + "createdTimestamp" : 1646841881112, + "username" : "policyexpert", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "credentials" : [ { + "id" : "f9c4ca91-072f-418e-8bfb-0ef499620490", + "type" : "password", + "createdDate" : 1646841889121, + "secretData" : "{\"value\":\"6OlHWWs4Bad2qqMXi7PdiCAsNLjQTmbhgssnGuFAlTeMJeI/k48B8ahGyrJ2RYO4WcM29yBCEBZoZOWx7QUXEQ==\",\"salt\":\"FUl+Hwy2OqSWb+po3PvAGQ==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization", "Compliance Manager" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ "/CloudServiceProvidersGroup/CloudServiceProviderTest1", "/CloudServicesGroup/CloudServiceTest1", "/CloudServicesGroup/CloudServiceTest2" ] + }, { + "id" : "7fcfeba8-2512-4c10-b1e8-fac6d623a83e", + "createdTimestamp" : 1647940816157, + "username" : "service-account-admin-cli", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "serviceAccountClientId" : "admin-cli", + "credentials" : [ ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "465eb553-71ea-47bb-8557-3753e1679b0b", + "createdTimestamp" : 1648629087836, + "username" : "service-account-api-swagger", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "serviceAccountClientId" : "api-swagger", + "credentials" : [ ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization" ], + "clientRoles" : { + "api-swagger" : [ "uma_protection" ], + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "4ccb51e5-5911-4052-914b-41120086c8ef", + "createdTimestamp" : 1648043982626, + "username" : "service-account-catalogue-backend", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "serviceAccountClientId" : "catalogue-backend", + "credentials" : [ ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "72b2d795-8d27-4aa7-a935-4c1ce274f27d", + "createdTimestamp" : 1650355454172, + "username" : "service-account-cce-dev", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "serviceAccountClientId" : "cce-dev", + "credentials" : [ ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization" ], + "clientRoles" : { + "cce-dev" : [ "uma_protection" ], + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "4aafc668-9855-44b2-a079-a271a3c4a515", + "createdTimestamp" : 1646860326928, + "username" : "service-account-clouditor-assessment", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "serviceAccountClientId" : "clouditor-assessment", + "credentials" : [ ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "89145876-b402-435f-bcfc-1a5da1f948ac", + "createdTimestamp" : 1646860316152, + "username" : "service-account-clouditor-discovery", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "serviceAccountClientId" : "clouditor-discovery", + "credentials" : [ ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "7a3be6fa-aa06-4d47-92fe-0c7dbdcf081e", + "createdTimestamp" : 1652269527099, + "username" : "service-account-clouditor-orchestrator", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "serviceAccountClientId" : "clouditor-orchestrator", + "credentials" : [ ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "a5916f7c-3494-4b8b-a899-d6424762a7e8", + "createdTimestamp" : 1646917353062, + "username" : "service-account-codyze", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "serviceAccountClientId" : "codyze", + "credentials" : [ ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "b5130ada-9590-42ef-a690-ba7ff12f35bd", + "createdTimestamp" : 1657201467930, + "username" : "service-account-dsl-mapper-client", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "serviceAccountClientId" : "dsl-mapper-client", + "credentials" : [ ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ], + "dsl-mapper-client" : [ "uma_protection" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "6e8ff208-0ede-436c-b1ee-b853d33c3d81", + "createdTimestamp" : 1646998107929, + "username" : "service-account-life-cycle-manager", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "serviceAccountClientId" : "life-cycle-manager", + "credentials" : [ ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "7cdaece4-9f13-4a89-9e46-f56a3cee862e", + "createdTimestamp" : 1647940729928, + "username" : "service-account-nl2cnl-translator-client", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "serviceAccountClientId" : "nl2cnl-translator-client", + "credentials" : [ ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization" ], + "clientRoles" : { + "nl2cnl-translator-client" : [ "uma_protection" ], + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "20913f11-a80b-4b95-9e9c-3b7318275a9f", + "createdTimestamp" : 1650445410351, + "username" : "service-account-raof", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "serviceAccountClientId" : "raof", + "credentials" : [ ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization" ], + "clientRoles" : { + "raof" : [ "uma_protection" ], + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "42584464-92a0-40b9-a9ff-0a43a6358956", + "createdTimestamp" : 1651501788820, + "username" : "service-account-raof-app", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "serviceAccountClientId" : "raof-app", + "credentials" : [ ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization" ], + "clientRoles" : { + "raof-app" : [ "uma_protection" ], + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "d12a0ea0-d7d4-4194-b8f7-6e1190bbfcff", + "createdTimestamp" : 1650377634668, + "username" : "service-account-wazuh-vat-evidence-collector-dev", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "serviceAccountClientId" : "wazuh-vat-evidence-collector-dev", + "credentials" : [ ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization" ], + "clientRoles" : { + "wazuh-vat-evidence-collector-dev" : [ "uma_protection" ], + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "9c57f6db-6643-48b4-8fc8-cb48c627e6df", + "createdTimestamp" : 1674719353111, + "username" : "ssi-user", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "firstName" : "Aitor", + "lastName" : "GG", + "email" : "aitor.gomez@tecnalia.com", + "credentials" : [ { + "id" : "40582145-880c-4421-991f-8deaa243ffc4", + "type" : "password", + "createdDate" : 1674719424557, + "secretData" : "{\"value\":\"cDkRTyBio4JGyNnbmeJxuoXU3XA07VJ/A1jsrfZX93HXWqM2rfQdWDFl5wlqvyvaHLH+m5UICNPzPMhUg2qhfQ==\",\"salt\":\"ZM/7ntKfebO0NJ3/aOeZDg==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "ROLE_USER", "offline_access", "Auditor", "uma_authorization", "Compliance Manager" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "77bce8b9-706d-4249-a4cc-cacfa5a5b91b", + "createdTimestamp" : 1671626314628, + "username" : "t2", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "credentials" : [ { + "id" : "cbb382dd-a160-4202-a8c0-861afb87cf02", + "type" : "password", + "createdDate" : 1671626348428, + "secretData" : "{\"value\":\"dHUuLiejLrygJr6HaIwDqrwxu/ssA9/VIj9m51hSxnauSOp9hpmIGRmCYCZic0zvta/3mw1N2XUVfCW5KWR/Sw==\",\"salt\":\"bYGVI+Zooj2/GvXZ2MEStQ==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "ROLE_USER", "offline_access", "uma_authorization", "ROLE_ADMIN", "Compliance Manager" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "2ea72f64-2701-4b3b-ba1d-532149d37202", + "createdTimestamp" : 1652186093284, + "username" : "test_compliance_manager", + "enabled" : true, + "totp" : true, + "emailVerified" : true, + "firstName" : "Test", + "lastName" : "Manager", + "email" : "test@manager.com", + "credentials" : [ { + "id" : "70348399-c811-4b3e-96a3-991579b32bb7", + "type" : "password", + "createdDate" : 1652186110401, + "secretData" : "{\"value\":\"7bYUhg72bGCJCY+PRnuL0yO496Miksy+Psc+YGGWPtD0OJdzIvhGW0B6wnj6YInAQEfh8TN/h/FqLDkQMIYWcg==\",\"salt\":\"TGfGXtzLm0dPGXjuT2dCnw==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + }, { + "id" : "1d57e74b-6017-4d55-bb0d-25d434748402", + "type" : "otp", + "userLabel" : "Mobile Phone", + "createdDate" : 1652186263250, + "secretData" : "{\"value\":\"Dgk5BqB0qJ1k9Afll5mj\"}", + "credentialData" : "{\"subType\":\"totp\",\"digits\":6,\"counter\":0,\"period\":30,\"algorithm\":\"HmacSHA1\"}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization", "Compliance Manager" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "e19545f8-3579-483f-9004-790d578dddfa", + "createdTimestamp" : 1674145886816, + "username" : "uc1_auditor", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "credentials" : [ { + "id" : "70d94477-ceec-4932-9935-4ee984d14389", + "type" : "password", + "createdDate" : 1674145904588, + "secretData" : "{\"value\":\"ksIULvCzo+bvULy0jirrF8rtvbbWAfyzSy/eMfuqF5mnziIGqxWyIC+KwAQTqhys8l7rTaGZLNzdyn17r1/K0Q==\",\"salt\":\"RvlSLO78qi1K8lGMxOhNHg==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "Auditor", "uma_authorization" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ "/CloudServicesGroup/Bosch_IaaS", "/CloudServicesGroup/Bosch_PaaS" ] + }, { + "id" : "6d6d63b1-e1fd-461e-9427-d2891934f2c8", + "createdTimestamp" : 1674145751069, + "username" : "uc1_ciso", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "credentials" : [ { + "id" : "fb3515d2-cb63-4755-9891-a59bfe03de91", + "type" : "password", + "createdDate" : 1674145765210, + "secretData" : "{\"value\":\"YpfIVnyCtPFS0eIw6hOvrR6IN5KtejRLRaS+uOvp1MTUTXqzBSi7eeJyBFs2f/LEuwW2M2+1MocaJDmT+AOZCg==\",\"salt\":\"cTW2gbBBk6chX9YZcQZNEg==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization", "CISO" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ "/CloudServicesGroup/Bosch_IaaS", "/CloudServicesGroup/Bosch_PaaS", "/CloudServicesGroup/Bosch_SaaS" ] + }, { + "id" : "a297bee2-1e9e-4c2b-aee8-9895816ab47c", + "createdTimestamp" : 1674145341569, + "username" : "uc1_domgov", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "credentials" : [ { + "id" : "5b4aad96-5016-42df-afec-f9893e280c4d", + "type" : "password", + "createdDate" : 1674145359184, + "secretData" : "{\"value\":\"N6w0KcmWLsMENdat9eaMRoM34QZAxPjEiT55YVvnmEF6v2j6RNqHVv17hXWyXsEkNalyRi7jaERxOF3IQGF0kA==\",\"salt\":\"8jkW8WDLldHOJ1h5F7oGKg==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "SecurityGovernance", "uma_authorization" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ "/CloudServicesGroup/Bosch_IaaS", "/CloudServicesGroup/Bosch_PaaS" ] + }, { + "id" : "d7b43b52-b048-4fea-a90b-ce6388b18831", + "createdTimestamp" : 1674145455906, + "username" : "uc1_prodown", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "credentials" : [ { + "id" : "0544042d-3b6d-4995-a680-30c8f398e688", + "type" : "password", + "createdDate" : 1674145475221, + "secretData" : "{\"value\":\"RwVqLSQax/flyOgNk1cHoYoAmA0+uhE4K7jrn+hgTZ2k/CPuuhWcXTh8C/QjO0TmiSKj9tew1SiWDjY+vdr8AQ==\",\"salt\":\"MRKS4kOhNIhivhjPFgVxVA==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization", "ProductOwner" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ "/CloudServicesGroup/Bosch_IaaS" ] + }, { + "id" : "027b55fb-dec7-4ae2-a9e6-eaf6a3cd0f50", + "createdTimestamp" : 1674145592731, + "username" : "uc1_prodsec", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "credentials" : [ { + "id" : "e8bb2853-4cdc-4392-bde3-03549222999f", + "type" : "password", + "createdDate" : 1674145608293, + "secretData" : "{\"value\":\"tQcf31ARRsR2FMO9NsadvUG+TVtVrL3krEebP0C2aX3HfyT3yKc9WWK9vB7jg5eyEsj8cJ2bVyo0jXkw5xnfrg==\",\"salt\":\"qYccy+Nsyj9+uJ56Jf9NmQ==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "ProductSecurityEng", "uma_authorization" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ "/CloudServicesGroup/Bosch_IaaS" ] + }, { + "id" : "8cd26e6b-af60-4192-9962-489ac1a586c2", + "createdTimestamp" : 1674144766118, + "username" : "uc1_secanalyst", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "credentials" : [ { + "id" : "201521cd-677e-4a0b-91f4-be2a240747c4", + "type" : "password", + "createdDate" : 1674144783147, + "secretData" : "{\"value\":\"5Akf4Tyfbenem77IjCv2enXE90qzVCTcRVZq+2FguHTbaY3TTlwDjKmzHMXaia8h2rmOc3x9F0Eo+E9DMWFczQ==\",\"salt\":\"rWV6q1kzfej5oTOOEVlHyQ==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "SecurityAnalyst", "uma_authorization" ], + "clientRoles" : { + "integrated-ui" : [ "user", "showSATRA", "showCCE", "showAMOE", "showUser", "showCNL", "showCatalogue", "showOrchestrator", "admin" ], + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ "/CloudServicesGroup/Bosch_IaaS", "/CloudServicesGroup/Bosch_PaaS", "/CloudServicesGroup/Bosch_SaaS" ] + }, { + "id" : "20a895c6-4cb9-4707-a06c-804d5328b67c", + "createdTimestamp" : 1674144525022, + "username" : "uc1_secgov", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "credentials" : [ { + "id" : "6f2db9a7-2879-43cc-9581-6bd8682052c0", + "type" : "password", + "createdDate" : 1674144659301, + "secretData" : "{\"value\":\"b1RipaQ+5wTvV3auTm1y7E8JqqY7XyWjOk3PFcQcKtVvHX0I9mEsem05nd2qImgX2M4d25Udshsv2WkY9v3yfw==\",\"salt\":\"if6yR8YUa7oV2UYXB8gBDg==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "SecurityGovernance", "uma_authorization" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ "/CloudServicesGroup/Bosch_IaaS", "/CloudServicesGroup/Bosch_PaaS", "/CloudServicesGroup/Bosch_SaaS" ] + }, { + "id" : "a2d9c454-960f-47e9-860e-e1876cdd81e7", + "createdTimestamp" : 1648054983093, + "username" : "user", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "firstName" : "U.", + "lastName" : "Ser", + "email" : "user@localhost", + "credentials" : [ { + "id" : "b6a60d24-da76-47f4-a07b-885bac646b7a", + "type" : "password", + "createdDate" : 1650406346090, + "secretData" : "{\"value\":\"NTNpm0k7ky3gLf9pcYTklGY8qn0LPwCrhUYu94nhHVUl1vp5IHb5eSjgFJjpFaKKObNDcz7qJFWjyJ/mWCtwGA==\",\"salt\":\"fQAJhWFTktzewkFQ5ypbRQ==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "ROLE_USER", "offline_access", "Auditor", "uma_authorization" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "228eed5c-845a-42b6-a60d-27bfe62167c3", + "createdTimestamp" : 1659009856941, + "username" : "usertest", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "credentials" : [ { + "id" : "5909c50c-2225-4403-8995-3132b851b1c0", + "type" : "password", + "createdDate" : 1659009866614, + "secretData" : "{\"value\":\"PNVxA2+Kv2nyJfQjLcDvYagzfE/loAyrsJ1QEUkhL/bVWDku+VJu/QkCKXU1Dr4rTnTGBaOxl2ASFoRm6oP3Cg==\",\"salt\":\"T0N9Ed98G4wz5iBwyo2tRQ==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization", "Compliance Manager" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ "/CloudServiceProvidersGroup/CloudServiceProviderTest1", "/CloudServicesGroup/CloudServiceTest1" ] + }, { + "id" : "a3f3653e-d47e-4d21-bae4-40265bf90318", + "createdTimestamp" : 1667576437610, + "username" : "xlab", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "credentials" : [ { + "id" : "9238dc63-0ef0-47a9-8c53-2bce6f4f35b2", + "type" : "password", + "createdDate" : 1667576457684, + "secretData" : "{\"value\":\"jw9KOFdG6tGZBMY7NdX2FNtvCBXfq4igmlEOCZ67jPRaWpPASPlnYD5EVqNfcmVBvGmnjV73PMUgo4L/Zg/9pw==\",\"salt\":\"DRbV1mX842qUu+Zifrm4Gg==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "Customer", "ROLE_USER", "offline_access", "Auditor", "Company", "ICO", "uma_authorization", "CISO", "test-role-1", "Compliance Manager" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + } ], + "scopeMappings" : [ { + "clientScope" : "offline_access", + "roles" : [ "offline_access" ] + } ], + "clientScopeMappings" : { + "account" : [ { + "client" : "account-console", + "roles" : [ "manage-account" ] + } ] + }, + "clients" : [ { + "id" : "8bd89baf-08f6-4e4b-8394-6b4dd6050ed2", + "clientId" : "account", + "name" : "${client_account}", + "rootUrl" : "${authBaseUrl}", + "baseUrl" : "/realms/medina/account/", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "533f8bfc-73ca-4950-a17e-29510052e70a", + "defaultRoles" : [ "manage-account", "view-profile" ], + "redirectUris" : [ "/realms/medina/account/*" ], + "webOrigins" : [ ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : false, + "serviceAccountsEnabled" : false, + "publicClient" : false, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : false, + "nodeReRegistrationTimeout" : 0, + "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "8f7fee7a-d32e-4c08-85fd-0a92ace43970", + "clientId" : "account-console", + "name" : "${client_account-console}", + "rootUrl" : "${authBaseUrl}", + "baseUrl" : "/realms/medina/account/", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "0ffbdc8a-e2b4-4693-abc0-cf08d0a3127e", + "redirectUris" : [ "/realms/medina/account/*" ], + "webOrigins" : [ ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : false, + "serviceAccountsEnabled" : false, + "publicClient" : true, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "pkce.code.challenge.method" : "S256" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : false, + "nodeReRegistrationTimeout" : 0, + "protocolMappers" : [ { + "id" : "edc42cad-bd34-4811-8354-0adaee774340", + "name" : "audience resolve", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-audience-resolve-mapper", + "consentRequired" : false, + "config" : { } + } ], + "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "24244b46-4845-4734-a061-bcb8ec91b84c", + "clientId" : "admin-cli", + "name" : "${client_admin-cli}", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "c29d2164-1f3d-476b-951c-c5eea7518fd6", + "redirectUris" : [ ], + "webOrigins" : [ ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : false, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : true, + "serviceAccountsEnabled" : true, + "publicClient" : false, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "false", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : 0, + "protocolMappers" : [ { + "id" : "8b8f8749-0adc-492d-a73d-3029413881be", + "name" : "Client ID", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientId", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientId", + "jsonType.label" : "String" + } + }, { + "id" : "6117fb7e-ecbe-4f0f-90da-d5a5c805e5d7", + "name" : "Client IP Address", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientAddress", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientAddress", + "jsonType.label" : "String" + } + }, { + "id" : "786a08b5-a459-43d0-b0d4-1d45a084a14a", + "name" : "Client Host", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientHost", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientHost", + "jsonType.label" : "String" + } + } ], + "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "a25b15fc-202b-4dc6-9340-fcc94f491a24", + "clientId" : "amoe-client", + "rootUrl" : "https://amoe-dev.192.168.56.1.digital.tecnalia.dev/", + "adminUrl" : "https://amoe-dev.192.168.56.1.digital.tecnalia.dev/", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "54d58c5f-dfd7-4902-819c-5b316ca13770", + "redirectUris" : [ "*" ], + "webOrigins" : [ "*" ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : true, + "serviceAccountsEnabled" : false, + "publicClient" : false, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "backchannel.logout.url" : "https://amoe-dev.192.168.56.1.digital.tecnalia.dev/openid/logout_request", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "protocolMappers" : [ { + "id" : "7adfc5e5-5248-4737-8b84-78567a897980", + "name" : "Client Host", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientHost", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientHost", + "jsonType.label" : "String" + } + }, { + "id" : "f96e6e25-77e4-4ffe-a4ca-5081f6dd3488", + "name" : "Client ID", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientId", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientId", + "jsonType.label" : "String" + } + }, { + "id" : "0078d78f-a368-41c5-9c41-16ba08b0dd64", + "name" : "Client IP Address", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientAddress", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientAddress", + "jsonType.label" : "String" + } + } ], + "defaultClientScopes" : [ "web-origins", "role_list", "cloudservice", "profile", "roles", "offline_access", "email" ], + "optionalClientScopes" : [ "address", "phone", "microprofile-jwt" ] + }, { + "id" : "a08fc1fe-7c85-4c1c-9d04-604c6e35faa8", + "clientId" : "api-swagger", + "rootUrl" : "https://api-swagger-dev.192.168.56.1.digital.tecnalia.dev", + "adminUrl" : "https://api-swagger-dev.192.168.56.1.digital.tecnalia.dev", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "c29a5cf2-52c0-4fa2-89fc-8951fa80ce84", + "redirectUris" : [ "https://api-swagger-dev.192.168.56.1.digital.tecnalia.dev/*" ], + "webOrigins" : [ "https://api-swagger-dev.192.168.56.1.digital.tecnalia.dev" ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : true, + "serviceAccountsEnabled" : true, + "authorizationServicesEnabled" : true, + "publicClient" : false, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "protocolMappers" : [ { + "id" : "a1b33188-ca81-44c0-ba56-772581a94038", + "name" : "Client IP Address", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientAddress", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientAddress", + "jsonType.label" : "String" + } + }, { + "id" : "7455b7e4-2b73-4a6d-b7e6-8434370a7a85", + "name" : "Client Host", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientHost", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientHost", + "jsonType.label" : "String" + } + }, { + "id" : "d9167dc9-6937-4bea-bc20-6e885857ccd0", + "name" : "Client ID", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientId", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientId", + "jsonType.label" : "String" + } + } ], + "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ], + "authorizationSettings" : { + "allowRemoteResourceManagement" : true, + "policyEnforcementMode" : "ENFORCING", + "resources" : [ { + "name" : "Default Resource", + "type" : "urn:api-swagger:resources:default", + "ownerManagedAccess" : false, + "attributes" : { }, + "_id" : "b8d55282-f977-4e89-9e8e-2b3e8ef07200", + "uris" : [ "/*" ] + } ], + "policies" : [ { + "id" : "9dc0a736-90a6-4428-be5a-0695b9153f93", + "name" : "Default Policy", + "description" : "A policy that grants access only for users within this realm", + "type" : "js", + "logic" : "POSITIVE", + "decisionStrategy" : "AFFIRMATIVE", + "config" : { + "code" : "// by default, grants any permission associated with this policy\n$evaluation.grant();\n" + } + }, { + "id" : "4058b893-6396-4351-ae9c-e4ecf5329d18", + "name" : "Default Permission", + "description" : "A permission that applies to the default resource type", + "type" : "resource", + "logic" : "POSITIVE", + "decisionStrategy" : "UNANIMOUS", + "config" : { + "defaultResourceType" : "urn:api-swagger:resources:default", + "applyPolicies" : "[\"Default Policy\"]" + } + } ], + "scopes" : [ ], + "decisionStrategy" : "UNANIMOUS" + } + }, { + "id" : "8d1a867d-537c-433e-8234-b3582127cc54", + "clientId" : "broker", + "name" : "${client_broker}", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "4293f846-3a76-4628-a9a4-810bebcdc51b", + "redirectUris" : [ ], + "webOrigins" : [ ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : false, + "serviceAccountsEnabled" : false, + "publicClient" : false, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : false, + "nodeReRegistrationTimeout" : 0, + "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "df274002-83dd-4c7f-b64b-8cf7b90d9a97", + "clientId" : "catalogue-backend", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "47b59168-f965-4a6f-941c-ae7ee1ba463c", + "redirectUris" : [ ], + "webOrigins" : [ ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : false, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : false, + "serviceAccountsEnabled" : true, + "publicClient" : false, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "protocolMappers" : [ { + "id" : "6ea5df11-551c-44e4-a4e7-74e787bea43e", + "name" : "Client Host", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientHost", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientHost", + "jsonType.label" : "String" + } + }, { + "id" : "0544b98a-f678-4395-b3cf-bdb0529a5661", + "name" : "Client IP Address", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientAddress", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientAddress", + "jsonType.label" : "String" + } + }, { + "id" : "adace2ba-512e-4856-a187-75031220377d", + "name" : "Client ID", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientId", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientId", + "jsonType.label" : "String" + } + } ], + "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "fa074dc3-e8de-4f34-9437-dc5d93f60f9a", + "clientId" : "catalogue-gateway", + "rootUrl" : "https://192.168.56.1.digital.tecnalia.dev", + "adminUrl" : "https://192.168.56.1.digital.tecnalia.dev", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "1895c8be-10f2-4243-a7da-8443aa1a2851", + "redirectUris" : [ "*" ], + "webOrigins" : [ "*" ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : true, + "directAccessGrantsEnabled" : false, + "serviceAccountsEnabled" : false, + "publicClient" : true, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "defaultClientScopes" : [ "web-origins", "jhipster", "role_list", "cloudservice", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "b7769853-8605-4a36-9352-7633d3be0f22", + "clientId" : "catalogue-jhipster-control-center", + "rootUrl" : "http://localhost:7419", + "adminUrl" : "http://localhost:7419", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "a77e5efc-e542-4ed2-b8a2-535fe4c4fb34", + "redirectUris" : [ "dev.localhost.ionic:*", "http://127.0.0.1:*", "http://localhost:*", "https://127.0.0.1:*", "https://localhost:*" ], + "webOrigins" : [ "*" ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : true, + "directAccessGrantsEnabled" : false, + "serviceAccountsEnabled" : false, + "publicClient" : true, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "645cf799-be24-42fd-a169-f9d5fc39be31", + "clientId" : "catalogue-registry", + "rootUrl" : "https://registry.192.168.56.1.digital.tecnalia.dev", + "adminUrl" : "https://registry.192.168.56.1.digital.tecnalia.dev", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "ff31a06d-d850-48d2-8355-6723e856c1b6", + "redirectUris" : [ "*" ], + "webOrigins" : [ "*" ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : true, + "serviceAccountsEnabled" : false, + "publicClient" : true, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "defaultClientScopes" : [ "web-origins", "jhipster", "role_list", "roles", "profile", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "12d63192-94cd-4692-b557-ab76a331eaa6", + "clientId" : "ccd-client", + "name" : "Company compliance dashboard", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "cc728558-1c40-48ae-8be4-e48b582a727a", + "redirectUris" : [ "http://localhost:8080/" ], + "webOrigins" : [ ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : true, + "serviceAccountsEnabled" : false, + "publicClient" : false, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "defaultClientScopes" : [ "web-origins", "role_list", "cloudservice", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "dc64b28b-a696-4b0c-8e24-2aeae138c3e5", + "clientId" : "cce-dev", + "rootUrl" : "http://cce-api-dev.192.168.56.1.digital.tecnalia.dev/", + "adminUrl" : "http://cce-api-dev.192.168.56.1.digital.tecnalia.dev/", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "efe3acb8-b4c1-43f0-a3a2-b75402e76afc", + "redirectUris" : [ "http://localhost:8080/*", "https://cce-api-dev.192.168.56.1.digital.tecnalia.dev/*" ], + "webOrigins" : [ "http://cce-api-dev.192.168.56.1.digital.tecnalia.dev" ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : true, + "serviceAccountsEnabled" : true, + "authorizationServicesEnabled" : true, + "publicClient" : false, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "protocolMappers" : [ { + "id" : "12f94f61-bb5e-41dc-ae0b-20206ff6173c", + "name" : "Client IP Address", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientAddress", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientAddress", + "jsonType.label" : "String" + } + }, { + "id" : "3920d8ac-45ea-4bf5-a203-1c831cb845ab", + "name" : "Client Host", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientHost", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientHost", + "jsonType.label" : "String" + } + }, { + "id" : "5f427941-d12d-432c-b883-ac39fe209705", + "name" : "Client ID", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientId", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientId", + "jsonType.label" : "String" + } + } ], + "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ], + "authorizationSettings" : { + "allowRemoteResourceManagement" : true, + "policyEnforcementMode" : "ENFORCING", + "resources" : [ { + "name" : "Default Resource", + "type" : "urn:cce-dev:resources:default", + "ownerManagedAccess" : false, + "attributes" : { }, + "_id" : "ef475897-65aa-4813-a810-340268090336", + "uris" : [ "/*" ] + } ], + "policies" : [ { + "id" : "ff85e02d-5048-473c-8bd0-fa22b6574852", + "name" : "Default Policy", + "description" : "A policy that grants access only for users within this realm", + "type" : "js", + "logic" : "POSITIVE", + "decisionStrategy" : "AFFIRMATIVE", + "config" : { + "code" : "// by default, grants any permission associated with this policy\n$evaluation.grant();\n" + } + }, { + "id" : "043cee90-99a8-4f2b-9ad2-3f37ce518483", + "name" : "Default Permission", + "description" : "A permission that applies to the default resource type", + "type" : "resource", + "logic" : "POSITIVE", + "decisionStrategy" : "UNANIMOUS", + "config" : { + "defaultResourceType" : "urn:cce-dev:resources:default", + "applyPolicies" : "[\"Default Policy\"]" + } + } ], + "scopes" : [ ], + "decisionStrategy" : "UNANIMOUS" + } + }, { + "id" : "4a57f2cd-5b99-4b78-ba31-d994521abd30", + "clientId" : "clouditor-assessment", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "4a47f42a-df33-418f-b687-64e7c8ffbbda", + "redirectUris" : [ "https://security-assessment-dev.192.168.56.1.digital.tecnalia.dev" ], + "webOrigins" : [ ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : false, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : false, + "serviceAccountsEnabled" : true, + "publicClient" : false, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "protocolMappers" : [ { + "id" : "caf7c5a7-f72e-44d8-aa9d-37c185e415ca", + "name" : "Client ID", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientId", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientId", + "jsonType.label" : "String" + } + }, { + "id" : "7dde8113-bf11-4cb4-be6b-d342ed64b1b6", + "name" : "Client Host", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientHost", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientHost", + "jsonType.label" : "String" + } + }, { + "id" : "1261d141-6010-4868-b659-2ce26e1680b4", + "name" : "Client IP Address", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientAddress", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientAddress", + "jsonType.label" : "String" + } + } ], + "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "69bba521-b088-45a6-9e56-bd29e557cea4", + "clientId" : "clouditor-cli", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "c3228efe-8dc3-4c09-bc89-8bdc362ae878", + "redirectUris" : [ "http://localhost:10000/callback" ], + "webOrigins" : [ ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : false, + "serviceAccountsEnabled" : false, + "publicClient" : true, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "8fedfacb-2df9-4342-be33-7d3e18dc316f", + "clientId" : "clouditor-discovery", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "2f38b7bd-c3fa-4e7b-af59-5b8d67ddd8c1", + "redirectUris" : [ "https://orchestrator-dev.192.168.56.1.digital.tecnalia.dev/" ], + "webOrigins" : [ ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : false, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : false, + "serviceAccountsEnabled" : true, + "publicClient" : false, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "protocolMappers" : [ { + "id" : "8dfab4e0-512c-4879-8878-c949ba32a641", + "name" : "Client Host", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientHost", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientHost", + "jsonType.label" : "String" + } + }, { + "id" : "9bba24ce-80f6-4a69-844d-7406c39d678b", + "name" : "Client ID", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientId", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientId", + "jsonType.label" : "String" + } + }, { + "id" : "112001f6-9584-4949-9d79-4d8e337bb9eb", + "name" : "Client IP Address", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientAddress", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientAddress", + "jsonType.label" : "String" + } + } ], + "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "fb2b3d0e-e2d7-4cb2-819d-bab9043f0d11", + "clientId" : "clouditor-orchestrator", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "eb100a60-92f7-4321-b9a6-55e8f82bc3a7", + "redirectUris" : [ ], + "webOrigins" : [ ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : false, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : false, + "serviceAccountsEnabled" : true, + "publicClient" : false, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "protocolMappers" : [ { + "id" : "1cefc460-e6b3-4077-a9f1-dab69ca3e2ba", + "name" : "Client ID", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientId", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientId", + "jsonType.label" : "String" + } + }, { + "id" : "34f93a44-5113-4638-bff8-4c89544a512e", + "name" : "Client Host", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientHost", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientHost", + "jsonType.label" : "String" + } + }, { + "id" : "cced5616-8012-473d-9cfb-95cf88efad11", + "name" : "Client IP Address", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientAddress", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientAddress", + "jsonType.label" : "String" + } + } ], + "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "fcf4c413-07b8-40e1-9ee0-2ffa646dfdf5", + "clientId" : "clouditor-ui", + "rootUrl" : "https://orchestrator-dev.192.168.56.1.digital.tecnalia.dev", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "7a189e46-8e44-4968-9228-2115e84dbcdd", + "redirectUris" : [ "https://orchestrator-dev.192.168.56.1.digital.tecnalia.dev/callback" ], + "webOrigins" : [ "https://orchestrator-dev.192.168.56.1.digital.tecnalia.dev" ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : false, + "serviceAccountsEnabled" : false, + "publicClient" : true, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "defaultClientScopes" : [ "web-origins", "role_list", "cloudservice", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "15a81bd1-4edd-4e2a-87ec-3bbcac30d2a3", + "clientId" : "cnl-editor-frontend", + "rootUrl" : "https://cnl-editor-frontend-dev.192.168.56.1.digital.tecnalia.dev", + "adminUrl" : "https://cnl-editor-frontend-dev.192.168.56.1.digital.tecnalia.dev", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "e6b76254-187d-441b-9061-cb6b03dd51a4", + "redirectUris" : [ "http://cnl-editor-frontend-dev.192.168.56.1.digital.tecnalia.dev/*", "https://cnl-editor-frontend-dev.192.168.56.1.digital.tecnalia.dev/*" ], + "webOrigins" : [ "https://cnl-editor-frontend-dev.192.168.56.1.digital.tecnalia.dev" ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : true, + "serviceAccountsEnabled" : false, + "publicClient" : true, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "defaultClientScopes" : [ "web-origins", "role_list", "cloudservice", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "01fce0c3-2db7-46dd-af1c-115dc1800053", + "clientId" : "codyze", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "7ff65ca2-a54a-4093-84f3-3b5756cc4e5c", + "redirectUris" : [ ], + "webOrigins" : [ ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : false, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : false, + "serviceAccountsEnabled" : true, + "publicClient" : false, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "protocolMappers" : [ { + "id" : "43fbe8e9-8141-4868-b85c-91220bd5f08f", + "name" : "Client IP Address", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientAddress", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientAddress", + "jsonType.label" : "String" + } + }, { + "id" : "ab5e553c-34e4-4411-b6c2-23235f3d7f84", + "name" : "Client ID", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientId", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientId", + "jsonType.label" : "String" + } + }, { + "id" : "8d070365-134e-4302-b0bd-e6ce82b1c2db", + "name" : "Client Host", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientHost", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientHost", + "jsonType.label" : "String" + } + } ], + "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "4cb90bba-1483-48f8-85c3-af800943c740", + "clientId" : "dsl-mapper-client", + "rootUrl" : "https://dsl-mapper-dev.192.168.56.1.digital.tecnalia.dev/", + "adminUrl" : "https://dsl-mapper-dev.192.168.56.1.digital.tecnalia.dev/", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "0fa48e19-90a5-4e6c-addd-446691dbf8eb", + "redirectUris" : [ "https://dsl-mapper-dev.192.168.56.1.digital.tecnalia.dev/*" ], + "webOrigins" : [ "https://dsl-mapper-dev.192.168.56.1.digital.tecnalia.dev" ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : true, + "serviceAccountsEnabled" : true, + "authorizationServicesEnabled" : true, + "publicClient" : false, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "protocolMappers" : [ { + "id" : "987c2d9a-ef46-4d60-881d-72d495260d07", + "name" : "Client Host", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientHost", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientHost", + "jsonType.label" : "String" + } + }, { + "id" : "7c8815a1-7820-46ed-93d8-45398092f0ff", + "name" : "Client IP Address", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientAddress", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientAddress", + "jsonType.label" : "String" + } + }, { + "id" : "c5b8af61-2816-47e9-aa22-743172954c8c", + "name" : "Client ID", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientId", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientId", + "jsonType.label" : "String" + } + } ], + "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ], + "authorizationSettings" : { + "allowRemoteResourceManagement" : true, + "policyEnforcementMode" : "ENFORCING", + "resources" : [ { + "name" : "Default Resource", + "type" : "urn:dsl-mapper-client:resources:default", + "ownerManagedAccess" : false, + "attributes" : { }, + "_id" : "09ef8b92-846c-4f44-af8a-73138006111b", + "uris" : [ "/*" ] + } ], + "policies" : [ { + "id" : "586e6b4a-0614-4102-b48d-cd633f918809", + "name" : "Default Policy", + "description" : "A policy that grants access only for users within this realm", + "type" : "js", + "logic" : "POSITIVE", + "decisionStrategy" : "AFFIRMATIVE", + "config" : { + "code" : "// by default, grants any permission associated with this policy\n$evaluation.grant();\n" + } + }, { + "id" : "43e2f264-68dc-44a6-9db2-f2f31dcb67ad", + "name" : "Default Permission", + "description" : "A permission that applies to the default resource type", + "type" : "resource", + "logic" : "POSITIVE", + "decisionStrategy" : "UNANIMOUS", + "config" : { + "defaultResourceType" : "urn:dsl-mapper-client:resources:default", + "applyPolicies" : "[\"Default Policy\"]" + } + } ], + "scopes" : [ ], + "decisionStrategy" : "UNANIMOUS" + } + }, { + "id" : "1150f83f-37bc-4b14-98a0-e179aaee0f6c", + "clientId" : "integrated-ui", + "rootUrl" : "https://integrated-ui-dev.192.168.56.1.digital.tecnalia.dev", + "adminUrl" : "https://integrated-ui-dev.192.168.56.1.digital.tecnalia.dev", + "baseUrl" : "https://integrated-ui-dev.192.168.56.1.digital.tecnalia.dev", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "9049e030-2e66-496e-accf-b7a5037bc0eb", + "redirectUris" : [ "", "https://integrated-ui-dev.192.168.56.1.digital.tecnalia.dev/*" ], + "webOrigins" : [ "https://integrated-ui-dev.192.168.56.1.digital.tecnalia.dev" ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : true, + "serviceAccountsEnabled" : false, + "publicClient" : true, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "defaultClientScopes" : [ "web-origins", "role_list", "cloudservice", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "095fac49-b0b4-4c44-b5b9-fa22bed6d160", + "clientId" : "life-cycle-manager", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "0191bfe6-1d93-4d89-b1e4-4b505d348057", + "redirectUris" : [ ], + "webOrigins" : [ ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : false, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : false, + "serviceAccountsEnabled" : true, + "publicClient" : false, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "protocolMappers" : [ { + "id" : "cdb336c7-b22f-44c6-b30b-9136364b8229", + "name" : "Client IP Address", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientAddress", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientAddress", + "jsonType.label" : "String" + } + }, { + "id" : "3c6e3fe1-37bb-4ef0-a162-720b0d78b3af", + "name" : "Client ID", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientId", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientId", + "jsonType.label" : "String" + } + }, { + "id" : "e39ee5e2-dd4a-4d0e-9fc3-a0a84b200143", + "name" : "Client Host", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientHost", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientHost", + "jsonType.label" : "String" + } + } ], + "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "9f7c65f7-9ae9-4c9e-9bd7-971d0cbe146d", + "clientId" : "nl2cnl-translator-client", + "rootUrl" : "https://nl2cnl-translator-dev.192.168.56.1.digital.tecnalia.dev/", + "adminUrl" : "https://nl2cnl-translator-dev.192.168.56.1.digital.tecnalia.dev/", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "b1d1d98d-b5e5-46ac-9b45-30502cfb53ab", + "redirectUris" : [ "https://nl2cnl-translator-dev.192.168.56.1.digital.tecnalia.dev/*" ], + "webOrigins" : [ "https://nl2cnl-translator-dev.192.168.56.1.digital.tecnalia.dev" ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : true, + "serviceAccountsEnabled" : true, + "authorizationServicesEnabled" : true, + "publicClient" : false, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "protocolMappers" : [ { + "id" : "ad2d1f98-62a8-4859-8cce-1ce4034b9920", + "name" : "Client Host", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientHost", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientHost", + "jsonType.label" : "String" + } + }, { + "id" : "480e69e8-ebca-4e89-8d20-24bba626bbce", + "name" : "Client ID", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientId", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientId", + "jsonType.label" : "String" + } + }, { + "id" : "42724a07-f05f-4d65-82cb-b1c2288810d8", + "name" : "Client IP Address", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientAddress", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientAddress", + "jsonType.label" : "String" + } + } ], + "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ], + "authorizationSettings" : { + "allowRemoteResourceManagement" : true, + "policyEnforcementMode" : "ENFORCING", + "resources" : [ { + "name" : "Default Resource", + "type" : "urn:nl2cnl-translator-client:resources:default", + "ownerManagedAccess" : false, + "attributes" : { }, + "_id" : "cf0de028-f233-4f59-83cb-3d60d34450a3", + "uris" : [ "/*" ] + } ], + "policies" : [ { + "id" : "46935297-5bfb-4a43-b493-b28efe8c863b", + "name" : "Default Policy", + "description" : "A policy that grants access only for users within this realm", + "type" : "js", + "logic" : "POSITIVE", + "decisionStrategy" : "AFFIRMATIVE", + "config" : { + "code" : "// by default, grants any permission associated with this policy\n$evaluation.grant();\n" + } + }, { + "id" : "9cd3da2f-0302-4033-a9ed-36758ffa7730", + "name" : "Default Permission", + "description" : "A permission that applies to the default resource type", + "type" : "resource", + "logic" : "POSITIVE", + "decisionStrategy" : "UNANIMOUS", + "config" : { + "defaultResourceType" : "urn:nl2cnl-translator-client:resources:default", + "applyPolicies" : "[\"Default Policy\"]" + } + } ], + "scopes" : [ ], + "decisionStrategy" : "UNANIMOUS" + } + }, { + "id" : "785a9f77-d06f-4a65-9ba9-341921fda61a", + "clientId" : "raof", + "rootUrl" : "http://risk-assessment-engine-dev.192.168.56.1.digital.tecnalia.dev", + "adminUrl" : "http://risk-assessment-engine-dev.192.168.56.1.digital.tecnalia.dev", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "92d45bca-073b-49e3-8b23-2615f7fcbb3e", + "redirectUris" : [ "http://risk-assessment-engine-dev.192.168.56.1.digital.tecnalia.dev/*" ], + "webOrigins" : [ "http://risk-assessment-engine-dev.192.168.56.1.digital.tecnalia.dev" ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : true, + "serviceAccountsEnabled" : true, + "publicClient" : true, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "protocolMappers" : [ { + "id" : "1fddcb23-2a23-4ce6-acd4-cb48155d9034", + "name" : "Client Host", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientHost", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientHost", + "jsonType.label" : "String" + } + }, { + "id" : "1b88c2af-c338-4cf2-ab8d-69d1a60837a2", + "name" : "Client IP Address", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientAddress", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientAddress", + "jsonType.label" : "String" + } + }, { + "id" : "1c4f9074-9c2a-40bc-b55e-07a4eccfedab", + "name" : "Client ID", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientId", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientId", + "jsonType.label" : "String" + } + } ], + "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "1c198016-f44c-4620-b2f6-821173bc2e54", + "clientId" : "raof-app", + "rootUrl" : "https://risk-assessment-app-dev.192.168.56.1.digital.tecnalia.dev", + "adminUrl" : "https://risk-assessment-app-dev.192.168.56.1.digital.tecnalia.dev", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "5f3391fb-e3da-4d24-bf49-a110ce86e5de", + "redirectUris" : [ "https://risk-assessment-app-dev.192.168.56.1.digital.tecnalia.dev/*" ], + "webOrigins" : [ "https://risk-assessment-app-dev.192.168.56.1.digital.tecnalia.dev" ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : true, + "serviceAccountsEnabled" : true, + "authorizationServicesEnabled" : true, + "publicClient" : false, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "protocolMappers" : [ { + "id" : "84cd6938-b5aa-4003-b0ee-0090073e2a88", + "name" : "Client IP Address", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientAddress", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientAddress", + "jsonType.label" : "String" + } + }, { + "id" : "9f22b311-05a4-4575-b7a5-ee07f2a38c08", + "name" : "Client ID", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientId", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientId", + "jsonType.label" : "String" + } + }, { + "id" : "f5e2cf3e-2f89-449b-bd1d-3cac7224b576", + "name" : "Client Host", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientHost", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientHost", + "jsonType.label" : "String" + } + } ], + "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ], + "authorizationSettings" : { + "allowRemoteResourceManagement" : true, + "policyEnforcementMode" : "ENFORCING", + "resources" : [ { + "name" : "Default Resource", + "type" : "urn:raof-app:resources:default", + "ownerManagedAccess" : false, + "attributes" : { }, + "_id" : "c9d1728e-3f6a-4003-8362-d6f5f960515c", + "uris" : [ "/*" ] + } ], + "policies" : [ { + "id" : "73bfec51-aca5-4ac8-b537-51a78d5de521", + "name" : "Default Policy", + "description" : "A policy that grants access only for users within this realm", + "type" : "js", + "logic" : "POSITIVE", + "decisionStrategy" : "AFFIRMATIVE", + "config" : { + "code" : "// by default, grants any permission associated with this policy\n$evaluation.grant();\n" + } + }, { + "id" : "67de5082-2eb9-4f99-b13e-a269a911952f", + "name" : "Default Permission", + "description" : "A permission that applies to the default resource type", + "type" : "resource", + "logic" : "POSITIVE", + "decisionStrategy" : "UNANIMOUS", + "config" : { + "defaultResourceType" : "urn:raof-app:resources:default", + "applyPolicies" : "[\"Default Policy\"]" + } + } ], + "scopes" : [ ], + "decisionStrategy" : "UNANIMOUS" + } + }, { + "id" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", + "clientId" : "realm-management", + "name" : "${client_realm-management}", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "eac6413c-b76b-4d1a-b4dc-b217fe77326b", + "redirectUris" : [ ], + "webOrigins" : [ ], + "notBefore" : 0, + "bearerOnly" : true, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : false, + "serviceAccountsEnabled" : false, + "publicClient" : false, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : false, + "nodeReRegistrationTimeout" : 0, + "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "7d57284a-3eba-4ceb-8088-b13aeef3df24", + "clientId" : "security-admin-console", + "name" : "${client_security-admin-console}", + "rootUrl" : "${authAdminUrl}", + "baseUrl" : "/admin/medina/console/", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "11fb3ec1-97dc-46e4-aee3-7d61493a0184", + "redirectUris" : [ "/admin/medina/console/*" ], + "webOrigins" : [ "+" ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : false, + "serviceAccountsEnabled" : false, + "publicClient" : true, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "pkce.code.challenge.method" : "S256" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : false, + "nodeReRegistrationTimeout" : 0, + "protocolMappers" : [ { + "id" : "ce06926e-1e52-49b7-86ea-ddfd7665b90b", + "name" : "locale", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-attribute-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "locale", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "locale", + "jsonType.label" : "String" + } + } ], + "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "52938086-6278-49af-b311-48ec89d2c3dc", + "clientId" : "ssi-frontend", + "rootUrl" : "http://localhost:3000", + "adminUrl" : "http://localhost:3000", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "7f73d06a-5f9e-4b0f-88f7-40b43b62e58f", + "redirectUris" : [ "https://ssi-framework-ui-dev.192.168.56.1.digital.tecnalia.dev/*", "http://localhost:3000/*", "https://static.cybersec.digital.tecnalia.dev/*" ], + "webOrigins" : [ "https://ssi-framework-ui-dev.192.168.56.1.digital.tecnalia.dev", "https://static.cybersec.digital.tecnalia.dev", "http://localhost:3000" ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : true, + "serviceAccountsEnabled" : false, + "publicClient" : true, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "access.token.lifespan" : "3600", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "pkce.code.challenge.method" : "S256", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "defaultClientScopes" : [ "web-origins", "role_list", "cloudservice", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "aa18689d-6d81-4b92-8b9e-291eb4733408", + "clientId" : "wazuh-vat-evidence-collector-dev", + "rootUrl" : "http://wazuh-vat-evidence-collector-dev.192.168.56.1.digital.tecnalia.dev/", + "adminUrl" : "http://wazuh-vat-evidence-collector-dev.192.168.56.1.digital.tecnalia.dev/", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "68dec932-77fc-4322-8089-d64c3a3317bf", + "redirectUris" : [ "http://wazuh-vat-evidence-collector-dev.192.168.56.1.digital.tecnalia.dev/*" ], + "webOrigins" : [ "http://wazuh-vat-evidence-collector-dev.192.168.56.1.digital.tecnalia.dev" ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : true, + "serviceAccountsEnabled" : true, + "authorizationServicesEnabled" : true, + "publicClient" : false, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "protocolMappers" : [ { + "id" : "21e80b89-4ab6-4eb1-b1b1-1a44c133e922", + "name" : "Client IP Address", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientAddress", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientAddress", + "jsonType.label" : "String" + } + }, { + "id" : "f9117947-484b-4486-9299-97a1bac403bc", + "name" : "Client Host", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientHost", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientHost", + "jsonType.label" : "String" + } + }, { + "id" : "a610e8bf-64c2-4c57-ba45-f576d1dbd1b9", + "name" : "Client ID", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientId", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientId", + "jsonType.label" : "String" + } + } ], + "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ], + "authorizationSettings" : { + "allowRemoteResourceManagement" : true, + "policyEnforcementMode" : "ENFORCING", + "resources" : [ { + "name" : "Default Resource", + "type" : "urn:wazuh-vat-evidence-collector-dev:resources:default", + "ownerManagedAccess" : false, + "attributes" : { }, + "_id" : "9b151dde-64db-48eb-a5c8-1cb76dbda106", + "uris" : [ "/*" ] + } ], + "policies" : [ { + "id" : "ea4d0471-d8e0-4eb3-b978-5e08ed330193", + "name" : "Default Policy", + "description" : "A policy that grants access only for users within this realm", + "type" : "js", + "logic" : "POSITIVE", + "decisionStrategy" : "AFFIRMATIVE", + "config" : { + "code" : "// by default, grants any permission associated with this policy\n$evaluation.grant();\n" + } + }, { + "id" : "d56c4a80-9aea-4527-80b8-fa8736d55cbe", + "name" : "Default Permission", + "description" : "A permission that applies to the default resource type", + "type" : "resource", + "logic" : "POSITIVE", + "decisionStrategy" : "UNANIMOUS", + "config" : { + "defaultResourceType" : "urn:wazuh-vat-evidence-collector-dev:resources:default", + "applyPolicies" : "[\"Default Policy\"]" + } + } ], + "scopes" : [ ], + "decisionStrategy" : "UNANIMOUS" + } + } ], + "clientScopes" : [ { + "id" : "448d9d12-2046-483f-9951-9cfb26270957", + "name" : "address", + "description" : "OpenID Connect built-in scope: address", + "protocol" : "openid-connect", + "attributes" : { + "include.in.token.scope" : "true", + "display.on.consent.screen" : "true", + "consent.screen.text" : "${addressScopeConsentText}" + }, + "protocolMappers" : [ { + "id" : "d9a1907f-8701-4b47-85a8-b7d959c37d52", + "name" : "address", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-address-mapper", + "consentRequired" : false, + "config" : { + "user.attribute.formatted" : "formatted", + "user.attribute.country" : "country", + "user.attribute.postal_code" : "postal_code", + "userinfo.token.claim" : "true", + "user.attribute.street" : "street", + "id.token.claim" : "true", + "user.attribute.region" : "region", + "access.token.claim" : "true", + "user.attribute.locality" : "locality" + } + } ] + }, { + "id" : "f5b5d781-271d-4d03-9fc9-6e56c0349f32", + "name" : "cloudservice", + "protocol" : "openid-connect", + "attributes" : { + "include.in.token.scope" : "true", + "display.on.consent.screen" : "true" + }, + "protocolMappers" : [ { + "id" : "bb0a28a6-e1c5-4a1c-9eb9-404b6158b71b", + "name" : "cloudserviceid", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-attribute-mapper", + "consentRequired" : false, + "config" : { + "aggregate.attrs" : "true", + "multivalued" : "true", + "userinfo.token.claim" : "true", + "user.attribute" : "cloudserviceid", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "cloudserviceid", + "jsonType.label" : "String" + } + }, { + "id" : "99f13ac5-3ddd-4183-af53-d352b32616a5", + "name" : "cloudserviceproviderid", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-attribute-mapper", + "consentRequired" : false, + "config" : { + "aggregate.attrs" : "true", + "multivalued" : "true", + "userinfo.token.claim" : "true", + "user.attribute" : "cloudserviceproviderid", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "cloudserviceproviderid", + "jsonType.label" : "String" + } + } ] + }, { + "id" : "275d79c9-b59c-40f6-bea2-ce277f3bb3e0", + "name" : "email", + "description" : "OpenID Connect built-in scope: email", + "protocol" : "openid-connect", + "attributes" : { + "include.in.token.scope" : "true", + "display.on.consent.screen" : "true", + "consent.screen.text" : "${emailScopeConsentText}" + }, + "protocolMappers" : [ { + "id" : "e2e140c5-e12f-4a38-ad55-dbeb73558260", + "name" : "email", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-property-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "email", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "email", + "jsonType.label" : "String" + } + }, { + "id" : "a22524be-6358-4d93-beaa-38faed65e198", + "name" : "email verified", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-property-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "emailVerified", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "email_verified", + "jsonType.label" : "boolean" + } + } ] + }, { + "id" : "bbfebad4-3f48-432f-9696-1529017fd411", + "name" : "jhipster", + "description" : "Jhipster specific claims", + "protocol" : "openid-connect", + "attributes" : { + "include.in.token.scope" : "true", + "display.on.consent.screen" : "true" + }, + "protocolMappers" : [ { + "id" : "71c49d92-db9e-4669-b945-a6dd790b8b00", + "name" : "langKey", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-attribute-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "langKey", + "id.token.claim" : "false", + "access.token.claim" : "false", + "claim.name" : "langKey", + "jsonType.label" : "String" + } + }, { + "id" : "79e9563d-3c27-4cb3-b8c7-cb11bc43ebc9", + "name" : "login", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-attribute-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "preferred_username", + "id.token.claim" : "false", + "access.token.claim" : "false", + "claim.name" : "login", + "jsonType.label" : "String" + } + }, { + "id" : "d8ce7859-d0c3-4e55-9415-438c81bfdaa2", + "name" : "roles", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-realm-role-mapper", + "consentRequired" : false, + "config" : { + "multivalued" : "true", + "userinfo.token.claim" : "true", + "id.token.claim" : "false", + "access.token.claim" : "true", + "claim.name" : "roles", + "jsonType.label" : "String" + } + } ] + }, { + "id" : "3dd12f9d-3af5-4757-b89c-4d2a8c448316", + "name" : "microprofile-jwt", + "description" : "Microprofile - JWT built-in scope", + "protocol" : "openid-connect", + "attributes" : { + "include.in.token.scope" : "true", + "display.on.consent.screen" : "false" + }, + "protocolMappers" : [ { + "id" : "995d9d7f-97af-4c01-81d8-8ca11aa34553", + "name" : "groups", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-realm-role-mapper", + "consentRequired" : false, + "config" : { + "multivalued" : "true", + "user.attribute" : "foo", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "groups", + "jsonType.label" : "String" + } + }, { + "id" : "43df77e9-387b-4f80-bd3e-c2153178ee72", + "name" : "upn", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-property-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "username", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "upn", + "jsonType.label" : "String" + } + } ] + }, { + "id" : "31c108bb-1587-4373-b46a-7d2f0d7acdba", + "name" : "offline_access", + "description" : "OpenID Connect built-in scope: offline_access", + "protocol" : "openid-connect", + "attributes" : { + "consent.screen.text" : "${offlineAccessScopeConsentText}", + "display.on.consent.screen" : "true" + } + }, { + "id" : "b8b09b9e-6096-46ae-8e90-3cd03d364a0a", + "name" : "phone", + "description" : "OpenID Connect built-in scope: phone", + "protocol" : "openid-connect", + "attributes" : { + "include.in.token.scope" : "true", + "display.on.consent.screen" : "true", + "consent.screen.text" : "${phoneScopeConsentText}" + }, + "protocolMappers" : [ { + "id" : "5464cfbe-e421-4034-8f6a-378e99476bf4", + "name" : "phone number", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-attribute-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "phoneNumber", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "phone_number", + "jsonType.label" : "String" + } + }, { + "id" : "f8a484ce-7c5f-4562-8d61-ec161e2929f6", + "name" : "phone number verified", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-attribute-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "phoneNumberVerified", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "phone_number_verified", + "jsonType.label" : "boolean" + } + } ] + }, { + "id" : "b188dc18-eca7-4941-ab04-d3e599e9aa93", + "name" : "profile", + "description" : "OpenID Connect built-in scope: profile", + "protocol" : "openid-connect", + "attributes" : { + "include.in.token.scope" : "true", + "display.on.consent.screen" : "true", + "consent.screen.text" : "${profileScopeConsentText}" + }, + "protocolMappers" : [ { + "id" : "0d52d80c-a7e1-45f9-a16e-1965220474d5", + "name" : "nickname", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-attribute-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "nickname", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "nickname", + "jsonType.label" : "String" + } + }, { + "id" : "cf0e8f74-1996-4ad1-8bcc-3f331bea4e45", + "name" : "birthdate", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-attribute-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "birthdate", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "birthdate", + "jsonType.label" : "String" + } + }, { + "id" : "c58346fb-1470-420c-a6cb-c115e833444b", + "name" : "full name", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-full-name-mapper", + "consentRequired" : false, + "config" : { + "id.token.claim" : "true", + "access.token.claim" : "true", + "userinfo.token.claim" : "true" + } + }, { + "id" : "bdfca3bd-1dda-4ebe-993c-ea11c674c919", + "name" : "gender", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-attribute-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "gender", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "gender", + "jsonType.label" : "String" + } + }, { + "id" : "1299560c-f37d-47d2-96f7-712761cf679a", + "name" : "middle name", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-attribute-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "middleName", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "middle_name", + "jsonType.label" : "String" + } + }, { + "id" : "c67dab67-c3b4-40c4-91fe-7c9ce61fca5f", + "name" : "zoneinfo", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-attribute-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "zoneinfo", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "zoneinfo", + "jsonType.label" : "String" + } + }, { + "id" : "8682ba32-def5-4111-b2ab-79cd865844d0", + "name" : "family name", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-property-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "lastName", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "family_name", + "jsonType.label" : "String" + } + }, { + "id" : "0ee61bf2-d022-420a-aa6d-c7e8bd60e24f", + "name" : "picture", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-attribute-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "picture", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "picture", + "jsonType.label" : "String" + } + }, { + "id" : "3acdc903-7ceb-40b8-8516-ebbc7874d6e4", + "name" : "given name", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-property-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "firstName", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "given_name", + "jsonType.label" : "String" + } + }, { + "id" : "d1fe9f83-141c-4c8c-9635-20367c7e5218", + "name" : "locale", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-attribute-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "locale", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "locale", + "jsonType.label" : "String" + } + }, { + "id" : "502de8c4-4cdf-402b-8453-d407a7b666da", + "name" : "username", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-property-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "username", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "preferred_username", + "jsonType.label" : "String" + } + }, { + "id" : "1603ac87-6a50-4205-b9b9-4ba4d3224d83", + "name" : "website", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-attribute-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "website", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "website", + "jsonType.label" : "String" + } + }, { + "id" : "f2c9d6f6-06b7-415a-87b3-c872a26ab921", + "name" : "updated at", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-attribute-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "updatedAt", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "updated_at", + "jsonType.label" : "String" + } + }, { + "id" : "ee586b78-b33e-4a0b-842f-9bd7059a747a", + "name" : "profile", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-attribute-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "profile", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "profile", + "jsonType.label" : "String" + } + } ] + }, { + "id" : "83717992-b174-46c3-99f1-1a097b02e99c", + "name" : "role_list", + "description" : "SAML role list", + "protocol" : "saml", + "attributes" : { + "consent.screen.text" : "${samlRoleListScopeConsentText}", + "display.on.consent.screen" : "true" + }, + "protocolMappers" : [ { + "id" : "0c0b8746-2e89-4ede-9ea6-ac76d2c66f33", + "name" : "role list", + "protocol" : "saml", + "protocolMapper" : "saml-role-list-mapper", + "consentRequired" : false, + "config" : { + "single" : "false", + "attribute.nameformat" : "Basic", + "attribute.name" : "Role" + } + } ] + }, { + "id" : "da1df8bb-b502-44fb-94a4-cff04b190a8c", + "name" : "roles", + "description" : "OpenID Connect scope for add user roles to the access token", + "protocol" : "openid-connect", + "attributes" : { + "include.in.token.scope" : "false", + "display.on.consent.screen" : "true", + "consent.screen.text" : "${rolesScopeConsentText}" + }, + "protocolMappers" : [ { + "id" : "cef58889-d64f-4405-a1f9-4978962472aa", + "name" : "realm roles", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-realm-role-mapper", + "consentRequired" : false, + "config" : { + "user.attribute" : "foo", + "access.token.claim" : "true", + "claim.name" : "realm_access.roles", + "jsonType.label" : "String", + "multivalued" : "true" + } + }, { + "id" : "44e1ccc5-63d0-464f-a88c-535864dba161", + "name" : "audience resolve", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-audience-resolve-mapper", + "consentRequired" : false, + "config" : { } + }, { + "id" : "fc7ab48f-7268-4f85-874c-8b35d00d5fb1", + "name" : "client roles", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-client-role-mapper", + "consentRequired" : false, + "config" : { + "user.attribute" : "foo", + "access.token.claim" : "true", + "claim.name" : "resource_access.${client_id}.roles", + "jsonType.label" : "String", + "multivalued" : "true" + } + } ] + }, { + "id" : "cab2790d-6362-4d1a-96cb-427e906ea1d0", + "name" : "web-origins", + "description" : "OpenID Connect scope for add allowed web origins to the access token", + "protocol" : "openid-connect", + "attributes" : { + "include.in.token.scope" : "false", + "display.on.consent.screen" : "false", + "consent.screen.text" : "" + }, + "protocolMappers" : [ { + "id" : "e8c45111-ab73-4a68-a793-fdcc71c4f2ad", + "name" : "allowed web origins", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-allowed-origins-mapper", + "consentRequired" : false, + "config" : { } + } ] + } ], + "defaultDefaultClientScopes" : [ "role_list", "profile", "email", "roles", "web-origins", "cloudservice" ], + "defaultOptionalClientScopes" : [ "offline_access", "address", "phone", "microprofile-jwt" ], + "browserSecurityHeaders" : { + "contentSecurityPolicyReportOnly" : "", + "xContentTypeOptions" : "nosniff", + "xRobotsTag" : "none", + "xFrameOptions" : "ALLOW-FROM https://integrated-ui-dev.192.168.56.1.digital.tecnalia.dev", + "contentSecurityPolicy" : "", + "xXSSProtection" : "1; mode=block", + "strictTransportSecurity" : "max-age=31536000; includeSubDomains" + }, + "smtpServer" : { + "password" : "medinaPassword", + "starttls" : "", + "auth" : "true", + "host" : "smtp.gmail.com", + "from" : "medinatestuser@gmail.com", + "ssl" : "true", + "user" : "medinatestuser@gmail.com" + }, + "eventsEnabled" : false, + "eventsListeners" : [ "jboss-logging" ], + "enabledEventTypes" : [ ], + "adminEventsEnabled" : false, + "adminEventsDetailsEnabled" : false, + "identityProviders" : [ { + "alias" : "oidc", + "displayName" : "Bosch Login", + "internalId" : "0a60d4b9-c19c-4df7-9d55-f27547b90af0", + "providerId" : "oidc", + "enabled" : true, + "updateProfileFirstLoginMode" : "on", + "trustEmail" : false, + "storeToken" : false, + "addReadTokenRoleOnCreate" : false, + "authenticateByDefault" : false, + "linkOnly" : false, + "firstBrokerLoginFlowAlias" : "first broker login", + "config" : { + "userInfoUrl" : "https://stfs.test-bosch.com/adfs/userinfo", + "validateSignature" : "true", + "clientId" : "acfbc2ab-64e4-4b64-ad0e-204ec212cbbf", + "tokenUrl" : "https://stfs.test-bosch.com/adfs/oauth2/token/", + "jwksUrl" : "https://stfs.test-bosch.com/adfs/discovery/keys", + "issuer" : "https://stfs.test-bosch.com/adfs", + "useJwksUrl" : "true", + "authorizationUrl" : "https://stfs.test-bosch.com/adfs/oauth2/authorize/", + "clientAuthMethod" : "client_secret_post", + "disableUserInfo" : "true", + "logoutUrl" : "https://stfs.test-bosch.com/adfs/oauth2/logout", + "syncMode" : "IMPORT", + "clientSecret" : "Iog6MCAS2DoU0tLURqTVOME5p_Fq-LY_eewuOye4" + } + } ], + "identityProviderMappers" : [ { + "id" : "eac64953-04e3-4720-bb21-c09750b6a42a", + "name" : "Default Compliance Manager mapper", + "identityProviderAlias" : "oidc", + "identityProviderMapper" : "oidc-hardcoded-role-idp-mapper", + "config" : { + "syncMode" : "INHERIT", + "role" : "Compliance Manager" + } + }, { + "id" : "beb255d4-c882-4ffa-9047-163b033c93c6", + "name" : "Username Custom Mapper", + "identityProviderAlias" : "oidc", + "identityProviderMapper" : "oidc-username-idp-mapper", + "config" : { + "template" : "${CLAIM.email}", + "syncMode" : "INHERIT", + "target" : "LOCAL" + } + } ], + "components" : { + "org.keycloak.services.clientregistration.policy.ClientRegistrationPolicy" : [ { + "id" : "fbccf871-d01e-4d47-99d0-3bdce3bfa12c", + "name" : "Allowed Client Scopes", + "providerId" : "allowed-client-templates", + "subType" : "anonymous", + "subComponents" : { }, + "config" : { + "allow-default-scopes" : [ "true" ] + } + }, { + "id" : "611a0a79-84c4-4d2d-9d11-01eb58141a46", + "name" : "Trusted Hosts", + "providerId" : "trusted-hosts", + "subType" : "anonymous", + "subComponents" : { }, + "config" : { + "host-sending-registration-request-must-match" : [ "true" ], + "client-uris-must-match" : [ "true" ] + } + }, { + "id" : "2124ff56-7c6f-4095-ba92-ae335222f88c", + "name" : "Full Scope Disabled", + "providerId" : "scope", + "subType" : "anonymous", + "subComponents" : { }, + "config" : { } + }, { + "id" : "b8f02611-098d-402f-90a6-a1f09afcdb22", + "name" : "Allowed Protocol Mapper Types", + "providerId" : "allowed-protocol-mappers", + "subType" : "anonymous", + "subComponents" : { }, + "config" : { + "allowed-protocol-mapper-types" : [ "oidc-sha256-pairwise-sub-mapper", "saml-role-list-mapper", "saml-user-property-mapper", "saml-user-attribute-mapper", "oidc-usermodel-property-mapper", "oidc-address-mapper", "oidc-usermodel-attribute-mapper", "oidc-full-name-mapper" ] + } + }, { + "id" : "cca940dd-d866-44db-a211-0ed1bc682ae7", + "name" : "Allowed Protocol Mapper Types", + "providerId" : "allowed-protocol-mappers", + "subType" : "authenticated", + "subComponents" : { }, + "config" : { + "allowed-protocol-mapper-types" : [ "oidc-full-name-mapper", "oidc-usermodel-property-mapper", "saml-role-list-mapper", "oidc-address-mapper", "saml-user-property-mapper", "saml-user-attribute-mapper", "oidc-sha256-pairwise-sub-mapper", "oidc-usermodel-attribute-mapper" ] + } + }, { + "id" : "dfb48f4f-8760-419e-9337-15eb81a41fdb", + "name" : "Max Clients Limit", + "providerId" : "max-clients", + "subType" : "anonymous", + "subComponents" : { }, + "config" : { + "max-clients" : [ "200" ] + } + }, { + "id" : "dfbcfdd0-4628-4a27-927a-4a476017ca56", + "name" : "Allowed Client Scopes", + "providerId" : "allowed-client-templates", + "subType" : "authenticated", + "subComponents" : { }, + "config" : { + "allow-default-scopes" : [ "true" ] + } + }, { + "id" : "cb8bff43-35e8-4fbc-9758-02da2892008d", + "name" : "Consent Required", + "providerId" : "consent-required", + "subType" : "anonymous", + "subComponents" : { }, + "config" : { } + } ], + "org.keycloak.keys.KeyProvider" : [ { + "id" : "4fcc8a9a-8dac-4051-8c34-748bf12d011d", + "name" : "rsa-generated", + "providerId" : "rsa-generated", + "subComponents" : { }, + "config" : { + "privateKey" : [ "MIIEpAIBAAKCAQEAqpMWsm7G85cM6j1jJCxmM6UAssq+oVsfdFUNEXJPpjy4FGRo4cIzaSPjqLAHn1xrBY4wWoPQU+4h2RRurXw0ELLhCIy+LIfUU0djB/5v0s5vqzaj/v8nSKQuKT2NY04b1oNTSeUuL1/sopo8ZcvtOdD2gTlVE2qDQJvJuKxIK9D4r2h2E7Kh7GwI0VIuywi0Ehdbwm21LTZlcrrmNu1pzN8oodjz0uYRIQ/p+AJCa0b+RhFQWN40XTmW1hmERE/J21ZK8sMcmO0vKcg5v2yzDOMQUcTMVVA1MHER8Q08yTYWmyQNP6E3xobVhqwCeClzcNCw1SdNfOVTuqCiZOWQWQIDAQABAoIBAEhcYbKMYAYSPD5akGZWF30tMGCotboJyAw30HVoQvXIqGauOfgbxGeD/B4hnvox4IzYxxZ++K/CQ8Wtb05VdFjpKaHQ4xRNAvvZOt+3RoTtYl4FrgiNAYNFcve3zvUju5eC2qBsgu1CCkbom1qr6hUu2oPzaG32L3wHGsom++7p4YE7FAzfqrEhntlVouMf9oW2477823gcr4LtX3tz2uIw8ZtSGsAxPGWfunxtX9qTgEVzXUFYou94fn7u6vRbRKSqq/udjQcSRaPzdrdto98oH6Y+3rm0PKj5sTkJf8SJHJFCPTgIgnG/7VZm8ZVJAoGLLUGzNC6pgEFdYjDmhSkCgYEA+mQYOKF6f8c5axsrUXtHHoWKYjZCXnWCH+P+DJQAHFSvdPAZgLJ6odKS8tFhujh8murE5WGsVkXxqZOHwXqBHrWrpJhfO8otHPEklhjn2MAhrxWxHEVokdUJjfUzoK0S6RVni/4hZIFkj3322lW7KXdSoeM5dfe9hFKxYM8G+jMCgYEArmVGSJtOzrIAzRZCmMwXwW/rV9Hi8QQOJRy8IM5zLvQutZa3RbqGPjOnq8XjsT98L6w4tM6WsTXWmGxOKDFzPhtg3pxz0ghFC895WaDqz1EL3Wjzp0p1a0mqo8zA+vOh9h+0YQs649eOPHkdr5AvMqenpxIwhu7nG0WOK+OKl0MCgYEAzcYiza+PP6GXg3kxkWYRnXi7sFjNFFnX1aOF7gpXSPEjvKNxIf4LoB+w2lLO0L6JULstkyFBAym6H9V5lLy7jmRYqgz6/uT5TDa1DZFsQAot5HicNBKqjGaa0oo3oo155AnOLhNsl+9qmC46B1a7WKmSRC6700IFAtD+qwOYxVcCgYB1892ToietOUu9ar7kZbXziWUd4sGhzeJbS5Iahkf1jAZDn4qZyMyfKYTQc2nLKmsuO0enUsstVIKuWSKLoNaXPSFJr3vOpPU+RbeH3YSzb9eciy2xCnVceVjGrOghU8NJmqv/rv7Ht7VmRWzEn7qsgiSspWrY+KCrG2JLYP0NzQKBgQDtcbX43N7aGMs/wP2Y/PDoTPeIB6f0+D7rdoHBmK6nUxQ9V70uAyYC4WtJudrKkVKUKAK8oOgbD2Qne2t02pbYKxQQDyBGQObuyC28fA5DHl9F8j6jx2u+He1s23V9HZhxj36TOVIjdjctRCDGTg32RMLGZlli0St2hK9EWSrUvQ==" ], + "certificate" : [ "MIICmzCCAYMCBgF/LGg1XzANBgkqhkiG9w0BAQsFADARMQ8wDQYDVQQDDAZtZWRpbmEwHhcNMjIwMjI0MTU0MzIxWhcNMzIwMjI0MTU0NTAxWjARMQ8wDQYDVQQDDAZtZWRpbmEwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCqkxaybsbzlwzqPWMkLGYzpQCyyr6hWx90VQ0Rck+mPLgUZGjhwjNpI+OosAefXGsFjjBag9BT7iHZFG6tfDQQsuEIjL4sh9RTR2MH/m/Szm+rNqP+/ydIpC4pPY1jThvWg1NJ5S4vX+yimjxly+050PaBOVUTaoNAm8m4rEgr0PivaHYTsqHsbAjRUi7LCLQSF1vCbbUtNmVyuuY27WnM3yih2PPS5hEhD+n4AkJrRv5GEVBY3jRdOZbWGYRET8nbVkrywxyY7S8pyDm/bLMM4xBRxMxVUDUwcRHxDTzJNhabJA0/oTfGhtWGrAJ4KXNw0LDVJ0185VO6oKJk5ZBZAgMBAAEwDQYJKoZIhvcNAQELBQADggEBAD7yJ2HegJ3/LzAmn/JIDXH1qfZ2DgGyfFQk82tWmFnsxVaLrv0sehS7Ufza5JRsudmzL6I8LHTgYuS1zyDZ1kmEB4gIpmw+ZI4M+isIpuzGRz8B3t2y3jOnEKjykjTWWYQrINYQiqPKU8LSFwe+Uqtcqga0TqgZ2fO8tkeP74a7JVk1hd4JD50shuPIInPx5PfqN7xAUebyPeJk91RQVC4tSpIIlFyd13MFQOzocj9uB685SE6DT3vjguYod6tv7JIUme0+JZIhd67hBlZS71ebL2B0gcX7+9jKZi3oeGFX+2k5CWCHZUf7KBvY3WaxxZTlFCtRcNbWKkMUmVTjRJ8=" ], + "priority" : [ "100" ] + } + }, { + "id" : "025383fb-ebfe-4e5d-b82e-ada254fff0fc", + "name" : "hmac-generated", + "providerId" : "hmac-generated", + "subComponents" : { }, + "config" : { + "kid" : [ "672cf3de-8a6e-43a9-bbb3-3b4cda7477a5" ], + "secret" : [ "lxJLgn2fZb9sMr0OZOzv98PC9GZWRJRGrNP86lb99Ded4XqqVXPU5HGxdn6RCxXdJxZyydNbrCnzDhZSpYLJDw" ], + "priority" : [ "100" ], + "algorithm" : [ "HS256" ] + } + }, { + "id" : "9e25e190-e32d-4bc8-9c9d-f5683ba8d2c3", + "name" : "aes-generated", + "providerId" : "aes-generated", + "subComponents" : { }, + "config" : { + "kid" : [ "5fe1d9fe-f688-4e7b-8871-176b5cf97cd4" ], + "secret" : [ "o_z-vBEGNLSgbqxfgun_sg" ], + "priority" : [ "100" ] + } + } ] + }, + "internationalizationEnabled" : false, + "supportedLocales" : [ ], + "authenticationFlows" : [ { + "id" : "354f002d-8a77-4e21-bd29-5c1fc8685a0f", + "alias" : "Account verification options", + "description" : "Method with which to verity the existing account", + "providerId" : "basic-flow", + "topLevel" : false, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticator" : "idp-email-verification", + "requirement" : "ALTERNATIVE", + "priority" : 10, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "requirement" : "ALTERNATIVE", + "priority" : 20, + "flowAlias" : "Verify Existing Account by Re-authentication", + "userSetupAllowed" : false, + "autheticatorFlow" : true + } ] + }, { + "id" : "9882e4d3-d9cd-4af1-bfe8-a8f73a1fa086", + "alias" : "Authentication Options", + "description" : "Authentication options.", + "providerId" : "basic-flow", + "topLevel" : false, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticator" : "basic-auth", + "requirement" : "REQUIRED", + "priority" : 10, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "authenticator" : "basic-auth-otp", + "requirement" : "DISABLED", + "priority" : 20, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "authenticator" : "auth-spnego", + "requirement" : "DISABLED", + "priority" : 30, + "userSetupAllowed" : false, + "autheticatorFlow" : false + } ] + }, { + "id" : "8e0d8a31-5418-47ab-befb-afeb7abf9322", + "alias" : "Browser - Conditional OTP", + "description" : "Flow to determine if the OTP is required for the authentication", + "providerId" : "basic-flow", + "topLevel" : false, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticator" : "conditional-user-configured", + "requirement" : "REQUIRED", + "priority" : 10, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "authenticator" : "auth-otp-form", + "requirement" : "REQUIRED", + "priority" : 20, + "userSetupAllowed" : false, + "autheticatorFlow" : false + } ] + }, { + "id" : "676fcbe9-45bb-4455-9f12-0593ff40176f", + "alias" : "Direct Grant - Conditional OTP", + "description" : "Flow to determine if the OTP is required for the authentication", + "providerId" : "basic-flow", + "topLevel" : false, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticator" : "conditional-user-configured", + "requirement" : "REQUIRED", + "priority" : 10, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "authenticator" : "direct-grant-validate-otp", + "requirement" : "REQUIRED", + "priority" : 20, + "userSetupAllowed" : false, + "autheticatorFlow" : false + } ] + }, { + "id" : "c1bca04e-0854-4c03-8386-3877bb028606", + "alias" : "First broker login - Conditional OTP", + "description" : "Flow to determine if the OTP is required for the authentication", + "providerId" : "basic-flow", + "topLevel" : false, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticator" : "conditional-user-configured", + "requirement" : "REQUIRED", + "priority" : 10, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "authenticator" : "auth-otp-form", + "requirement" : "REQUIRED", + "priority" : 20, + "userSetupAllowed" : false, + "autheticatorFlow" : false + } ] + }, { + "id" : "4b63e991-30c5-4679-973a-0ee570dd9638", + "alias" : "Handle Existing Account", + "description" : "Handle what to do if there is existing account with same email/username like authenticated identity provider", + "providerId" : "basic-flow", + "topLevel" : false, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticator" : "idp-confirm-link", + "requirement" : "REQUIRED", + "priority" : 10, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "requirement" : "REQUIRED", + "priority" : 20, + "flowAlias" : "Account verification options", + "userSetupAllowed" : false, + "autheticatorFlow" : true + } ] + }, { + "id" : "a106d5a7-3b1e-4325-a1a6-2f2a0eeedd62", + "alias" : "Reset - Conditional OTP", + "description" : "Flow to determine if the OTP should be reset or not. Set to REQUIRED to force.", + "providerId" : "basic-flow", + "topLevel" : false, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticator" : "conditional-user-configured", + "requirement" : "REQUIRED", + "priority" : 10, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "authenticator" : "reset-otp", + "requirement" : "REQUIRED", + "priority" : 20, + "userSetupAllowed" : false, + "autheticatorFlow" : false + } ] + }, { + "id" : "d47a6e57-0348-4266-a214-89d44297aead", + "alias" : "User creation or linking", + "description" : "Flow for the existing/non-existing user alternatives", + "providerId" : "basic-flow", + "topLevel" : false, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticatorConfig" : "create unique user config", + "authenticator" : "idp-create-user-if-unique", + "requirement" : "ALTERNATIVE", + "priority" : 10, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "requirement" : "ALTERNATIVE", + "priority" : 20, + "flowAlias" : "Handle Existing Account", + "userSetupAllowed" : false, + "autheticatorFlow" : true + } ] + }, { + "id" : "245da857-b7af-437c-88d4-7398b3d2d45a", + "alias" : "Verify Existing Account by Re-authentication", + "description" : "Reauthentication of existing account", + "providerId" : "basic-flow", + "topLevel" : false, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticator" : "idp-username-password-form", + "requirement" : "REQUIRED", + "priority" : 10, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "requirement" : "CONDITIONAL", + "priority" : 20, + "flowAlias" : "First broker login - Conditional OTP", + "userSetupAllowed" : false, + "autheticatorFlow" : true + } ] + }, { + "id" : "de6e0cd8-a95c-4023-9e6c-c77fe186db35", + "alias" : "browser", + "description" : "browser based authentication", + "providerId" : "basic-flow", + "topLevel" : true, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticator" : "auth-cookie", + "requirement" : "ALTERNATIVE", + "priority" : 10, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "authenticator" : "auth-spnego", + "requirement" : "DISABLED", + "priority" : 20, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "authenticator" : "identity-provider-redirector", + "requirement" : "ALTERNATIVE", + "priority" : 25, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "requirement" : "ALTERNATIVE", + "priority" : 30, + "flowAlias" : "forms", + "userSetupAllowed" : false, + "autheticatorFlow" : true + } ] + }, { + "id" : "f6c25350-2637-4086-b681-60e5151ac98d", + "alias" : "clients", + "description" : "Base authentication for clients", + "providerId" : "client-flow", + "topLevel" : true, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticator" : "client-secret", + "requirement" : "ALTERNATIVE", + "priority" : 10, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "authenticator" : "client-jwt", + "requirement" : "ALTERNATIVE", + "priority" : 20, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "authenticator" : "client-secret-jwt", + "requirement" : "ALTERNATIVE", + "priority" : 30, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "authenticator" : "client-x509", + "requirement" : "ALTERNATIVE", + "priority" : 40, + "userSetupAllowed" : false, + "autheticatorFlow" : false + } ] + }, { + "id" : "aed0a710-7542-4431-8d52-0bb12b3a2df5", + "alias" : "direct grant", + "description" : "OpenID Connect Resource Owner Grant", + "providerId" : "basic-flow", + "topLevel" : true, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticator" : "direct-grant-validate-username", + "requirement" : "REQUIRED", + "priority" : 10, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "authenticator" : "direct-grant-validate-password", + "requirement" : "REQUIRED", + "priority" : 20, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "requirement" : "CONDITIONAL", + "priority" : 30, + "flowAlias" : "Direct Grant - Conditional OTP", + "userSetupAllowed" : false, + "autheticatorFlow" : true + } ] + }, { + "id" : "9d5ea5e5-6e65-47bc-b105-9a1a1bebac11", + "alias" : "docker auth", + "description" : "Used by Docker clients to authenticate against the IDP", + "providerId" : "basic-flow", + "topLevel" : true, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticator" : "docker-http-basic-authenticator", + "requirement" : "REQUIRED", + "priority" : 10, + "userSetupAllowed" : false, + "autheticatorFlow" : false + } ] + }, { + "id" : "8660561d-943b-4b20-9c6a-7ac9e4ca00e5", + "alias" : "first broker login", + "description" : "Actions taken after first broker login with identity provider account, which is not yet linked to any Keycloak account", + "providerId" : "basic-flow", + "topLevel" : true, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticatorConfig" : "review profile config", + "authenticator" : "idp-review-profile", + "requirement" : "REQUIRED", + "priority" : 10, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "requirement" : "REQUIRED", + "priority" : 20, + "flowAlias" : "User creation or linking", + "userSetupAllowed" : false, + "autheticatorFlow" : true + } ] + }, { + "id" : "75c3dc38-54e0-4421-8ab2-0c590437d0c5", + "alias" : "forms", + "description" : "Username, password, otp and other auth forms.", + "providerId" : "basic-flow", + "topLevel" : false, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticator" : "auth-username-password-form", + "requirement" : "REQUIRED", + "priority" : 10, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "requirement" : "CONDITIONAL", + "priority" : 20, + "flowAlias" : "Browser - Conditional OTP", + "userSetupAllowed" : false, + "autheticatorFlow" : true + } ] + }, { + "id" : "4c848397-5bfd-4a05-9ce1-b3ee4c655d52", + "alias" : "http challenge", + "description" : "An authentication flow based on challenge-response HTTP Authentication Schemes", + "providerId" : "basic-flow", + "topLevel" : true, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticator" : "no-cookie-redirect", + "requirement" : "REQUIRED", + "priority" : 10, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "requirement" : "REQUIRED", + "priority" : 20, + "flowAlias" : "Authentication Options", + "userSetupAllowed" : false, + "autheticatorFlow" : true + } ] + }, { + "id" : "9e6bae92-80ac-4714-ab65-708dc1c08d4e", + "alias" : "registration", + "description" : "registration flow", + "providerId" : "basic-flow", + "topLevel" : true, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticator" : "registration-page-form", + "requirement" : "REQUIRED", + "priority" : 10, + "flowAlias" : "registration form", + "userSetupAllowed" : false, + "autheticatorFlow" : true + } ] + }, { + "id" : "7ca21b11-88fc-44a6-915a-6690086d51fa", + "alias" : "registration form", + "description" : "registration form", + "providerId" : "form-flow", + "topLevel" : false, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticator" : "registration-user-creation", + "requirement" : "REQUIRED", + "priority" : 20, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "authenticator" : "registration-profile-action", + "requirement" : "REQUIRED", + "priority" : 40, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "authenticator" : "registration-password-action", + "requirement" : "REQUIRED", + "priority" : 50, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "authenticator" : "registration-recaptcha-action", + "requirement" : "DISABLED", + "priority" : 60, + "userSetupAllowed" : false, + "autheticatorFlow" : false + } ] + }, { + "id" : "91b8df64-8790-4cc7-916a-549144cd1cb1", + "alias" : "reset credentials", + "description" : "Reset credentials for a user if they forgot their password or something", + "providerId" : "basic-flow", + "topLevel" : true, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticator" : "reset-credentials-choose-user", + "requirement" : "REQUIRED", + "priority" : 10, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "authenticator" : "reset-credential-email", + "requirement" : "REQUIRED", + "priority" : 20, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "authenticator" : "reset-password", + "requirement" : "REQUIRED", + "priority" : 30, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "requirement" : "CONDITIONAL", + "priority" : 40, + "flowAlias" : "Reset - Conditional OTP", + "userSetupAllowed" : false, + "autheticatorFlow" : true + } ] + }, { + "id" : "15dce0c8-895b-4e06-a405-707be49326b5", + "alias" : "saml ecp", + "description" : "SAML ECP Profile Authentication Flow", + "providerId" : "basic-flow", + "topLevel" : true, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticator" : "http-basic-authenticator", + "requirement" : "REQUIRED", + "priority" : 10, + "userSetupAllowed" : false, + "autheticatorFlow" : false + } ] + } ], + "authenticatorConfig" : [ { + "id" : "a538254e-ef65-4316-b432-2b9f37b842a0", + "alias" : "create unique user config", + "config" : { + "require.password.update.after.registration" : "false" + } + }, { + "id" : "218ba7cc-4f94-4782-802c-819ee6054f56", + "alias" : "review profile config", + "config" : { + "update.profile.on.first.login" : "missing" + } + } ], + "requiredActions" : [ { + "alias" : "CONFIGURE_TOTP", + "name" : "Configure OTP", + "providerId" : "CONFIGURE_TOTP", + "enabled" : true, + "defaultAction" : false, + "priority" : 10, + "config" : { } + }, { + "alias" : "terms_and_conditions", + "name" : "Terms and Conditions", + "providerId" : "terms_and_conditions", + "enabled" : false, + "defaultAction" : false, + "priority" : 20, + "config" : { } + }, { + "alias" : "UPDATE_PASSWORD", + "name" : "Update Password", + "providerId" : "UPDATE_PASSWORD", + "enabled" : true, + "defaultAction" : false, + "priority" : 30, + "config" : { } + }, { + "alias" : "UPDATE_PROFILE", + "name" : "Update Profile", + "providerId" : "UPDATE_PROFILE", + "enabled" : true, + "defaultAction" : false, + "priority" : 40, + "config" : { } + }, { + "alias" : "VERIFY_EMAIL", + "name" : "Verify Email", + "providerId" : "VERIFY_EMAIL", + "enabled" : true, + "defaultAction" : false, + "priority" : 50, + "config" : { } + }, { + "alias" : "delete_account", + "name" : "Delete Account", + "providerId" : "delete_account", + "enabled" : false, + "defaultAction" : false, + "priority" : 60, + "config" : { } + }, { + "alias" : "update_user_locale", + "name" : "Update User Locale", + "providerId" : "update_user_locale", + "enabled" : true, + "defaultAction" : false, + "priority" : 1000, + "config" : { } + } ], + "browserFlow" : "browser", + "registrationFlow" : "registration", + "directGrantFlow" : "direct grant", + "resetCredentialsFlow" : "reset credentials", + "clientAuthenticationFlow" : "clients", + "dockerAuthenticationFlow" : "docker auth", + "attributes" : { + "clientOfflineSessionMaxLifespan" : "0", + "clientSessionIdleTimeout" : "0", + "clientSessionMaxLifespan" : "0", + "frontendUrl" : "", + "clientOfflineSessionIdleTimeout" : "0" + }, + "keycloakVersion" : "12.0.4", + "userManagedAccessAllowed" : false +} \ No newline at end of file diff --git a/data/keycloak-setup/192.168.56.1.nip.io/realm.json b/data/keycloak-setup/192.168.56.1.nip.io/realm.json index 1bfd68e09ebb77b1eedfddb9d4f0c1583bc1a7a8..b6d8788c40a4477e2f83b872a18f4e4c060559ca 100755 --- a/data/keycloak-setup/192.168.56.1.nip.io/realm.json +++ b/data/keycloak-setup/192.168.56.1.nip.io/realm.json @@ -1,3963 +1,5548 @@ -{ - "id" : "medina", - "realm" : "medina", - "displayName" : "", - "notBefore" : 1646899526, - "revokeRefreshToken" : false, - "refreshTokenMaxReuse" : 0, - "accessTokenLifespan" : 300, - "accessTokenLifespanForImplicitFlow" : 900, - "ssoSessionIdleTimeout" : 1800, - "ssoSessionMaxLifespan" : 36000, - "ssoSessionIdleTimeoutRememberMe" : 0, - "ssoSessionMaxLifespanRememberMe" : 0, - "offlineSessionIdleTimeout" : 2592000, - "offlineSessionMaxLifespanEnabled" : false, - "offlineSessionMaxLifespan" : 5184000, - "clientSessionIdleTimeout" : 0, - "clientSessionMaxLifespan" : 0, - "clientOfflineSessionIdleTimeout" : 0, - "clientOfflineSessionMaxLifespan" : 0, - "accessCodeLifespan" : 60, - "accessCodeLifespanUserAction" : 300, - "accessCodeLifespanLogin" : 1800, - "actionTokenGeneratedByAdminLifespan" : 43200, - "actionTokenGeneratedByUserLifespan" : 300, - "enabled" : true, - "sslRequired" : "external", - "registrationAllowed" : false, - "registrationEmailAsUsername" : false, - "rememberMe" : false, - "verifyEmail" : false, - "loginWithEmailAllowed" : true, - "duplicateEmailsAllowed" : false, - "resetPasswordAllowed" : false, - "editUsernameAllowed" : false, - "bruteForceProtected" : false, - "permanentLockout" : false, - "maxFailureWaitSeconds" : 900, - "minimumQuickLoginWaitSeconds" : 60, - "waitIncrementSeconds" : 60, - "quickLoginCheckMilliSeconds" : 1000, - "maxDeltaTimeSeconds" : 43200, - "failureFactor" : 30, - "roles" : { - "realm" : [ { - "id" : "0f08df2b-4b64-487c-9e51-2580a02ae0ef", - "name" : "Customer", - "description" : "Interested in the compliance status of the company", - "composite" : false, - "clientRole" : false, - "containerId" : "medina", - "attributes" : { } - }, { - "id" : "2f6015a8-ddee-42f9-99c5-4760bd5fb5c7", - "name" : "ROLE_USER", - "description" : "temporary role for catalogue jhipster", - "composite" : false, - "clientRole" : false, - "containerId" : "medina", - "attributes" : { } - }, { - "id" : "9d96522b-ff58-498d-ad7f-11a747bd924e", - "name" : "offline_access", - "description" : "${role_offline-access}", - "composite" : false, - "clientRole" : false, - "containerId" : "medina", - "attributes" : { } - }, { - "id" : "417a650d-7309-41d2-aecd-cd179c656c65", - "name" : "Auditor", - "description" : "Performs all actions required to audit a Company", - "composite" : true, - "composites" : { - "client" : { - "api-swagger" : [ "user" ], - "integrated-ui" : [ "admin" ] - } - }, - "clientRole" : false, - "containerId" : "medina", - "attributes" : { } - }, { - "id" : "dac0890c-0957-40ed-b72f-37ca91a59d6e", - "name" : "Company", - "description" : "Most of the defined roles are employed by the company. Products of company are being audited", - "composite" : false, - "clientRole" : false, - "containerId" : "medina", - "attributes" : { } - }, { - "id" : "f4c52c7f-c34d-4101-8c11-523dbc526d72", - "name" : "ICO", - "description" : "Internal Control Owner - Responsible for creating internal controls. Executing the internal controls.", - "composite" : false, - "clientRole" : false, - "containerId" : "medina", - "attributes" : { } - }, { - "id" : "ec325a48-83c2-4b16-96be-305dc4767132", - "name" : "uma_authorization", - "description" : "${role_uma_authorization}", - "composite" : false, - "clientRole" : false, - "containerId" : "medina", - "attributes" : { } - }, { - "id" : "64dbcf9f-4231-4163-828a-5fa4fe9db278", - "name" : "CISO", - "description" : "Chief Information Security Officer - Responsible for security in the company, chooses what security controls should be implemented", - "composite" : false, - "clientRole" : false, - "containerId" : "medina", - "attributes" : { } - }, { - "id" : "e7c3caa6-1e16-4cf6-9484-b0af649117df", - "name" : "Compliance Manager", - "description" : "Responsible for the implementation of security control frameworks.\nResponsible for the correct implementation of the internal controls.\nResponsible for incident management.\nResponsible for performing internal audits.", - "composite" : true, - "composites" : { - "client" : { - "cnl-editor-frontend" : [ "user" ], - "integrated-ui" : [ "user", "admin" ], - "nl2cnl-translator-client" : [ "user" ] - } - }, - "clientRole" : false, - "containerId" : "medina", - "attributes" : { } - }, { - "id" : "fd93daa9-1357-4ba3-989d-7bf4b7ba2a07", - "name" : "ROLE_ADMIN", - "description" : "temporary role for catalogue jhipster", - "composite" : false, - "clientRole" : false, - "containerId" : "medina", - "attributes" : { } - } ], - "client" : { - "catalogue-backend" : [ ], - "raof-app" : [ { - "id" : "9f63da36-943c-4b9e-a92e-2632a76663dd", - "name" : "uma_protection", - "composite" : false, - "clientRole" : true, - "containerId" : "b1293ae0-e720-40cb-ae6f-db7fc9b1fe92", - "attributes" : { } - } ], - "security-admin-console" : [ ], - "wazuh-vat-evidence-collector-dev" : [ { - "id" : "3c40a84f-dc61-43d1-a607-e3fad0df3766", - "name" : "uma_protection", - "composite" : false, - "clientRole" : true, - "containerId" : "aa18689d-6d81-4b92-8b9e-291eb4733408", - "attributes" : { } - } ], - "clouditor-assessment" : [ ], - "account-console" : [ ], - "amoe-client" : [ ], - "cce-dev" : [ { - "id" : "aa5844fb-a4f8-4cfa-8514-1f4033e8bd9c", - "name" : "uma_protection", - "composite" : false, - "clientRole" : true, - "containerId" : "dc64b28b-a696-4b0c-8e24-2aeae138c3e5", - "attributes" : { } - } ], - "clouditor-cli" : [ ], - "codyze" : [ ], - "admin-cli" : [ ], - "catalogue-jhipster-control-center" : [ ], - "catalogue-registry" : [ ], - "realm-management" : [ { - "id" : "e02ce89a-c0b9-43b5-b6be-5c515624927a", - "name" : "manage-clients", - "description" : "${role_manage-clients}", - "composite" : false, - "clientRole" : true, - "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", - "attributes" : { } - }, { - "id" : "5bc05c8b-6d6a-45a1-92f7-cc33f4fe57bd", - "name" : "view-authorization", - "description" : "${role_view-authorization}", - "composite" : false, - "clientRole" : true, - "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", - "attributes" : { } - }, { - "id" : "0ee5608f-ab3a-4a8e-889b-e0d230a2fc86", - "name" : "view-clients", - "description" : "${role_view-clients}", - "composite" : true, - "composites" : { - "client" : { - "realm-management" : [ "query-clients" ] - } - }, - "clientRole" : true, - "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", - "attributes" : { } - }, { - "id" : "c2bd9190-451c-45d7-9588-412e1c40d5fd", - "name" : "manage-authorization", - "description" : "${role_manage-authorization}", - "composite" : false, - "clientRole" : true, - "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", - "attributes" : { } - }, { - "id" : "83e3e683-50b5-4050-b88b-2178342a13f8", - "name" : "manage-events", - "description" : "${role_manage-events}", - "composite" : false, - "clientRole" : true, - "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", - "attributes" : { } - }, { - "id" : "4e9c2113-f0d3-4691-bb66-49e3ca218d63", - "name" : "query-clients", - "description" : "${role_query-clients}", - "composite" : false, - "clientRole" : true, - "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", - "attributes" : { } - }, { - "id" : "cdca2718-5853-4969-9b63-2186e0382085", - "name" : "query-realms", - "description" : "${role_query-realms}", - "composite" : false, - "clientRole" : true, - "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", - "attributes" : { } - }, { - "id" : "33eb311b-fdbc-4ccf-b367-ae2b1c8c2e55", - "name" : "view-users", - "description" : "${role_view-users}", - "composite" : true, - "composites" : { - "client" : { - "realm-management" : [ "query-users", "query-groups" ] - } - }, - "clientRole" : true, - "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", - "attributes" : { } - }, { - "id" : "56382323-69f8-4eca-b433-aa14ccc83be3", - "name" : "manage-identity-providers", - "description" : "${role_manage-identity-providers}", - "composite" : false, - "clientRole" : true, - "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", - "attributes" : { } - }, { - "id" : "2db34bf8-3fac-4fb8-8ed4-b7f44cadcb2e", - "name" : "create-client", - "description" : "${role_create-client}", - "composite" : false, - "clientRole" : true, - "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", - "attributes" : { } - }, { - "id" : "ae7b03e5-747f-4341-8add-1c872658bec4", - "name" : "view-events", - "description" : "${role_view-events}", - "composite" : false, - "clientRole" : true, - "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", - "attributes" : { } - }, { - "id" : "a607a195-5e2c-4701-855d-d202ba52a313", - "name" : "manage-users", - "description" : "${role_manage-users}", - "composite" : false, - "clientRole" : true, - "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", - "attributes" : { } - }, { - "id" : "3f2bf59d-4b3f-425a-a75f-e6b8c6d27af0", - "name" : "view-realm", - "description" : "${role_view-realm}", - "composite" : false, - "clientRole" : true, - "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", - "attributes" : { } - }, { - "id" : "d23239ef-028a-4409-b965-e20ea6ac8795", - "name" : "impersonation", - "description" : "${role_impersonation}", - "composite" : false, - "clientRole" : true, - "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", - "attributes" : { } - }, { - "id" : "f724e1e9-a878-4ae3-9bc8-995767add1a3", - "name" : "manage-realm", - "description" : "${role_manage-realm}", - "composite" : false, - "clientRole" : true, - "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", - "attributes" : { } - }, { - "id" : "e6b7421d-7d5c-4f1c-bb48-0a873c9870c4", - "name" : "query-users", - "description" : "${role_query-users}", - "composite" : false, - "clientRole" : true, - "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", - "attributes" : { } - }, { - "id" : "7a81ec99-e710-409d-bd34-ae3642a1912d", - "name" : "view-identity-providers", - "description" : "${role_view-identity-providers}", - "composite" : false, - "clientRole" : true, - "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", - "attributes" : { } - }, { - "id" : "fbeca797-27ee-44a0-8566-bec5666e6bcc", - "name" : "query-groups", - "description" : "${role_query-groups}", - "composite" : false, - "clientRole" : true, - "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", - "attributes" : { } - }, { - "id" : "f9ea5c84-0690-47f4-b887-a3351ca800de", - "name" : "realm-admin", - "description" : "${role_realm-admin}", - "composite" : true, - "composites" : { - "client" : { - "realm-management" : [ "view-authorization", "manage-clients", "view-clients", "manage-authorization", "query-clients", "manage-events", "view-users", "query-realms", "manage-identity-providers", "create-client", "view-events", "view-realm", "manage-users", "impersonation", "manage-realm", "query-users", "view-identity-providers", "query-groups" ] - } - }, - "clientRole" : true, - "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", - "attributes" : { } - } ], - "api-swagger" : [ { - "id" : "a7aa8c9f-7cc5-4c91-8657-31b74ba02a1a", - "name" : "uma_protection", - "composite" : false, - "clientRole" : true, - "containerId" : "a08fc1fe-7c85-4c1c-9d04-604c6e35faa8", - "attributes" : { } - }, { - "id" : "88fa7113-8fd5-4dd4-940d-e0e2e06471d4", - "name" : "user", - "composite" : false, - "clientRole" : true, - "containerId" : "a08fc1fe-7c85-4c1c-9d04-604c6e35faa8", - "attributes" : { } - } ], - "cnl-editor-frontend" : [ { - "id" : "910ffe29-95b3-4b82-a734-b24bff7cfa8d", - "name" : "user", - "composite" : false, - "clientRole" : true, - "containerId" : "15a81bd1-4edd-4e2a-87ec-3bbcac30d2a3", - "attributes" : { } - } ], - "life-cycle-manager" : [ ], - "integrated-ui" : [ { - "id" : "258c00de-d88c-4239-908b-be79f895c3b0", - "name" : "user", - "composite" : false, - "clientRole" : true, - "containerId" : "1150f83f-37bc-4b14-98a0-e179aaee0f6c", - "attributes" : { } - }, { - "id" : "ae424f76-ac11-4a9b-939d-67ab55a0fc5a", - "name" : "admin", - "composite" : false, - "clientRole" : true, - "containerId" : "1150f83f-37bc-4b14-98a0-e179aaee0f6c", - "attributes" : { } - } ], - "ccd-client" : [ ], - "broker" : [ { - "id" : "381e01c5-2dce-4da6-854b-334d015e7224", - "name" : "read-token", - "description" : "${role_read-token}", - "composite" : false, - "clientRole" : true, - "containerId" : "8d1a867d-537c-433e-8234-b3582127cc54", - "attributes" : { } - } ], - "clouditor-ui" : [ ], - "raof" : [ { - "id" : "6de07826-dc41-4208-bc5e-8d64d38cfec2", - "name" : "engine", - "composite" : false, - "clientRole" : true, - "containerId" : "785a9f77-d06f-4a65-9ba9-341921fda61a", - "attributes" : { } - }, { - "id" : "9ecb4267-a5d3-421e-9aad-9b329fe4701d", - "name" : "uma_protection", - "composite" : false, - "clientRole" : true, - "containerId" : "785a9f77-d06f-4a65-9ba9-341921fda61a", - "attributes" : { } - } ], - "nl2cnl-translator-client" : [ { - "id" : "8fdf06d3-6c44-4aa3-bb0a-80dc589ced1c", - "name" : "uma_protection", - "composite" : false, - "clientRole" : true, - "containerId" : "9f7c65f7-9ae9-4c9e-9bd7-971d0cbe146d", - "attributes" : { } - }, { - "id" : "4486610d-0195-463c-bf2f-cf4cd10001c8", - "name" : "user", - "composite" : false, - "clientRole" : true, - "containerId" : "9f7c65f7-9ae9-4c9e-9bd7-971d0cbe146d", - "attributes" : { } - } ], - "catalogue-gateway" : [ ], - "clouditor-discovery" : [ ], - "account" : [ { - "id" : "ad76fbd3-fd48-4820-8454-c9e6e8b21da5", - "name" : "manage-consent", - "description" : "${role_manage-consent}", - "composite" : true, - "composites" : { - "client" : { - "account" : [ "view-consent" ] - } - }, - "clientRole" : true, - "containerId" : "8bd89baf-08f6-4e4b-8394-6b4dd6050ed2", - "attributes" : { } - }, { - "id" : "3cf9ad63-38af-430f-86da-bf7455dfb668", - "name" : "view-applications", - "description" : "${role_view-applications}", - "composite" : false, - "clientRole" : true, - "containerId" : "8bd89baf-08f6-4e4b-8394-6b4dd6050ed2", - "attributes" : { } - }, { - "id" : "a47fd133-6ba5-4870-af1b-9a17b76be404", - "name" : "view-consent", - "description" : "${role_view-consent}", - "composite" : false, - "clientRole" : true, - "containerId" : "8bd89baf-08f6-4e4b-8394-6b4dd6050ed2", - "attributes" : { } - }, { - "id" : "36ac4d35-7384-40c3-a877-7a2934bc9250", - "name" : "manage-account-links", - "description" : "${role_manage-account-links}", - "composite" : false, - "clientRole" : true, - "containerId" : "8bd89baf-08f6-4e4b-8394-6b4dd6050ed2", - "attributes" : { } - }, { - "id" : "3e5612a2-7c5c-4026-a6ac-7a332e266aab", - "name" : "manage-account", - "description" : "${role_manage-account}", - "composite" : true, - "composites" : { - "client" : { - "account" : [ "manage-account-links" ] - } - }, - "clientRole" : true, - "containerId" : "8bd89baf-08f6-4e4b-8394-6b4dd6050ed2", - "attributes" : { } - }, { - "id" : "1062c184-cad0-462d-ad3a-d51d5208536c", - "name" : "delete-account", - "description" : "${role_delete-account}", - "composite" : false, - "clientRole" : true, - "containerId" : "8bd89baf-08f6-4e4b-8394-6b4dd6050ed2", - "attributes" : { } - }, { - "id" : "d1a2381b-d165-43fb-a79d-8c614c46b96e", - "name" : "view-profile", - "description" : "${role_view-profile}", - "composite" : false, - "clientRole" : true, - "containerId" : "8bd89baf-08f6-4e4b-8394-6b4dd6050ed2", - "attributes" : { } - } ] - } - }, - "groups" : [ { - "id" : "b18d27ac-f4dc-4e3b-b488-e59e3af21eb5", - "name" : "TestCloudService", - "path" : "/TestCloudService", - "attributes" : { - "cloudserviceid" : [ "cf52d866-993f-11ec-b909-0242ac120002" ] - }, - "realmRoles" : [ ], - "clientRoles" : { }, - "subGroups" : [ ] - }, { - "id" : "fe88c642-63e3-4223-ab55-ded3d4edc650", - "name" : "TestCloudService2", - "path" : "/TestCloudService2", - "attributes" : { - "cloudserviceid" : [ "793dcdfe-9940-11ec-b909-0242ac120002" ] - }, - "realmRoles" : [ ], - "clientRoles" : { }, - "subGroups" : [ ] - } ], - "defaultRoles" : [ "offline_access", "uma_authorization" ], - "requiredCredentials" : [ "password" ], - "otpPolicyType" : "totp", - "otpPolicyAlgorithm" : "HmacSHA1", - "otpPolicyInitialCounter" : 0, - "otpPolicyDigits" : 6, - "otpPolicyLookAheadWindow" : 1, - "otpPolicyPeriod" : 30, - "otpSupportedApplications" : [ "FreeOTP", "Google Authenticator" ], - "webAuthnPolicyRpEntityName" : "keycloak", - "webAuthnPolicySignatureAlgorithms" : [ "ES256" ], - "webAuthnPolicyRpId" : "", - "webAuthnPolicyAttestationConveyancePreference" : "not specified", - "webAuthnPolicyAuthenticatorAttachment" : "not specified", - "webAuthnPolicyRequireResidentKey" : "not specified", - "webAuthnPolicyUserVerificationRequirement" : "not specified", - "webAuthnPolicyCreateTimeout" : 0, - "webAuthnPolicyAvoidSameAuthenticatorRegister" : false, - "webAuthnPolicyAcceptableAaguids" : [ ], - "webAuthnPolicyPasswordlessRpEntityName" : "keycloak", - "webAuthnPolicyPasswordlessSignatureAlgorithms" : [ "ES256" ], - "webAuthnPolicyPasswordlessRpId" : "", - "webAuthnPolicyPasswordlessAttestationConveyancePreference" : "not specified", - "webAuthnPolicyPasswordlessAuthenticatorAttachment" : "not specified", - "webAuthnPolicyPasswordlessRequireResidentKey" : "not specified", - "webAuthnPolicyPasswordlessUserVerificationRequirement" : "not specified", - "webAuthnPolicyPasswordlessCreateTimeout" : 0, - "webAuthnPolicyPasswordlessAvoidSameAuthenticatorRegister" : false, - "webAuthnPolicyPasswordlessAcceptableAaguids" : [ ], - "users" : [ { - "id" : "bb6244c3-35ec-4908-b4e0-73b159cc7a04", - "createdTimestamp" : 1646126460390, - "username" : "admin", - "enabled" : true, - "totp" : false, - "emailVerified" : true, - "firstName" : "admin", - "email" : "admin@localhost", - "credentials" : [ { - "id" : "4525a467-f0db-47e7-9f5a-edae4109844a", - "type" : "password", - "createdDate" : 1646126469027, - "secretData" : "{\"value\":\"BaRnqXmvxOYEu8fmlMYD+tpEIhbvW6m4KR9lzAl4f02Lt2WBUK2v7S/QobMoYEXqGWQxLpJnpsUcKlY9YGSiMw==\",\"salt\":\"rjK2JqIKXPdb1A03p8VcQw==\",\"additionalParameters\":{}}", - "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" - } ], - "disableableCredentialTypes" : [ ], - "requiredActions" : [ ], - "realmRoles" : [ "ROLE_USER", "offline_access", "Auditor", "uma_authorization", "ROLE_ADMIN", "Compliance Manager" ], - "clientRoles" : { - "raof" : [ "engine" ], - "integrated-ui" : [ "user" ], - "account" : [ "manage-account", "view-profile" ] - }, - "notBefore" : 0, - "groups" : [ "/TestCloudService2" ] - }, { - "id" : "08fbe789-4ada-4b3a-bcf1-dc20b469911b", - "createdTimestamp" : 1646739467160, - "username" : "amoe_test", - "enabled" : true, - "totp" : false, - "emailVerified" : false, - "credentials" : [ { - "id" : "da7be389-1b6a-42fa-8eb6-95fc83dc1cfa", - "type" : "password", - "createdDate" : 1646739496443, - "secretData" : "{\"value\":\"lTtYEaVM4t3lHrJFxAYu3MY54718QfBIva07Xd86InMCQE1D9jZY2bUCQJ15q+PdYerIU69YLRzXFkurv+BjLA==\",\"salt\":\"pKFJXLTaUzNsEouOGiIDVg==\",\"additionalParameters\":{}}", - "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" - } ], - "disableableCredentialTypes" : [ ], - "requiredActions" : [ ], - "realmRoles" : [ "offline_access", "uma_authorization" ], - "clientRoles" : { - "account" : [ "manage-account", "view-profile" ] - }, - "notBefore" : 0, - "groups" : [ ] - }, { - "id" : "5b083c04-bbda-48be-8441-fbe16968902b", - "createdTimestamp" : 1650710929018, - "username" : "cnr-user", - "enabled" : true, - "totp" : false, - "emailVerified" : false, - "firstName" : "Stefano", - "lastName" : "Fagnano", - "email" : "stefano.fagnano@me.com", - "credentials" : [ { - "id" : "fe14429e-56cf-4810-8ca2-7fab0ea81a80", - "type" : "password", - "createdDate" : 1650710973177, - "secretData" : "{\"value\":\"t+/Zdw3TRlptIsNjJh22t1t2rJmNsanwsZkqfgI0++tKxhnq8pMZCHmX8RTLuotokLNPjzC+oWTxpOjdQwJ5vg==\",\"salt\":\"7NvfqfUVIqeY9uVBwG5+kw==\",\"additionalParameters\":{}}", - "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" - } ], - "disableableCredentialTypes" : [ ], - "requiredActions" : [ ], - "realmRoles" : [ "offline_access", "uma_authorization" ], - "clientRoles" : { - "raof" : [ "engine" ], - "integrated-ui" : [ "user" ], - "account" : [ "manage-account", "view-profile" ] - }, - "notBefore" : 0, - "groups" : [ ] - }, { - "id" : "1247915b-d17c-4b5b-aad6-889c24225420", - "createdTimestamp" : 1646842473867, - "username" : "fabasoftpe", - "enabled" : true, - "totp" : false, - "emailVerified" : false, - "credentials" : [ { - "id" : "99ea9dc6-b4b3-4e0b-8aa9-2ecf58daa670", - "type" : "password", - "createdDate" : 1646842549296, - "secretData" : "{\"value\":\"rjCSXoy+G2SbrGgLqP8Qtx9eJYGheRLzVaZ2W7tZ7SO14I9K7W0GZFK7gg/wwZe7fNCT4c+kTWuuK42cR7JAiA==\",\"salt\":\"ViuDtUVx++5GGlqT+Kajvg==\",\"additionalParameters\":{}}", - "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" - } ], - "disableableCredentialTypes" : [ ], - "requiredActions" : [ ], - "realmRoles" : [ "offline_access", "uma_authorization", "Compliance Manager" ], - "clientRoles" : { - "account" : [ "manage-account", "view-profile" ] - }, - "notBefore" : 0, - "groups" : [ ] - }, { - "id" : "dbdb2c43-a90d-4bd8-a29a-c23d00e8a5fc", - "createdTimestamp" : 1646842573862, - "username" : "lawexpert", - "enabled" : true, - "totp" : false, - "emailVerified" : false, - "credentials" : [ { - "id" : "47c67cc2-9fec-471f-aee3-b93cb8fb50d4", - "type" : "password", - "createdDate" : 1646842584938, - "secretData" : "{\"value\":\"4u0v3JqYQ/m7qYSuG8gcxfdMveQyTLkOK1t9YTXsdH9b6XWmcmx+eemKvvZzlhGLrZ2JoyRv3Emr7E3gacWvbw==\",\"salt\":\"hKwIjTGtDpDCPw0r7xFMyA==\",\"additionalParameters\":{}}", - "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" - } ], - "disableableCredentialTypes" : [ ], - "requiredActions" : [ ], - "realmRoles" : [ "offline_access", "uma_authorization", "Compliance Manager" ], - "clientRoles" : { - "account" : [ "manage-account", "view-profile" ] - }, - "notBefore" : 0, - "groups" : [ ] - }, { - "id" : "5459884f-0e81-4541-b0f7-039143074658", - "createdTimestamp" : 1647939833771, - "username" : "nl2cnl_test", - "enabled" : true, - "totp" : false, - "emailVerified" : false, - "credentials" : [ { - "id" : "4e0de4fc-6cc3-41d8-a47c-f227054b51c8", - "type" : "password", - "createdDate" : 1647967133486, - "secretData" : "{\"value\":\"X93ciaDawh7DTl22Z7IUFdC5frMNfPQf20ozhaUjMVHg0yXsQyG16kZVY7BfTWj43CamWVxnJ3fAJ3nm/DjGmA==\",\"salt\":\"bHm4jda9dLNZLfl5wjYZoQ==\",\"additionalParameters\":{}}", - "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" - } ], - "disableableCredentialTypes" : [ ], - "requiredActions" : [ ], - "realmRoles" : [ "offline_access", "uma_authorization" ], - "clientRoles" : { - "account" : [ "manage-account", "view-profile" ] - }, - "notBefore" : 0, - "groups" : [ ] - }, { - "id" : "bb6d0c7f-e4ea-4f42-9375-f741b1ebac97", - "createdTimestamp" : 1646841881112, - "username" : "policyexpert", - "enabled" : true, - "totp" : false, - "emailVerified" : false, - "credentials" : [ { - "id" : "f9c4ca91-072f-418e-8bfb-0ef499620490", - "type" : "password", - "createdDate" : 1646841889121, - "secretData" : "{\"value\":\"6OlHWWs4Bad2qqMXi7PdiCAsNLjQTmbhgssnGuFAlTeMJeI/k48B8ahGyrJ2RYO4WcM29yBCEBZoZOWx7QUXEQ==\",\"salt\":\"FUl+Hwy2OqSWb+po3PvAGQ==\",\"additionalParameters\":{}}", - "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" - } ], - "disableableCredentialTypes" : [ ], - "requiredActions" : [ ], - "realmRoles" : [ "offline_access", "uma_authorization", "Compliance Manager" ], - "clientRoles" : { - "account" : [ "manage-account", "view-profile" ] - }, - "notBefore" : 0, - "groups" : [ ] - }, { - "id" : "7fcfeba8-2512-4c10-b1e8-fac6d623a83e", - "createdTimestamp" : 1647940816157, - "username" : "service-account-admin-cli", - "enabled" : true, - "totp" : false, - "emailVerified" : false, - "serviceAccountClientId" : "admin-cli", - "credentials" : [ ], - "disableableCredentialTypes" : [ ], - "requiredActions" : [ ], - "realmRoles" : [ "offline_access", "uma_authorization" ], - "clientRoles" : { - "account" : [ "manage-account", "view-profile" ] - }, - "notBefore" : 0, - "groups" : [ ] - }, { - "id" : "465eb553-71ea-47bb-8557-3753e1679b0b", - "createdTimestamp" : 1648629087836, - "username" : "service-account-api-swagger", - "enabled" : true, - "totp" : false, - "emailVerified" : false, - "serviceAccountClientId" : "api-swagger", - "credentials" : [ ], - "disableableCredentialTypes" : [ ], - "requiredActions" : [ ], - "realmRoles" : [ "offline_access", "uma_authorization" ], - "clientRoles" : { - "api-swagger" : [ "uma_protection" ], - "account" : [ "manage-account", "view-profile" ] - }, - "notBefore" : 0, - "groups" : [ ] - }, { - "id" : "4ccb51e5-5911-4052-914b-41120086c8ef", - "createdTimestamp" : 1648043982626, - "username" : "service-account-catalogue-backend", - "enabled" : true, - "totp" : false, - "emailVerified" : false, - "serviceAccountClientId" : "catalogue-backend", - "credentials" : [ ], - "disableableCredentialTypes" : [ ], - "requiredActions" : [ ], - "realmRoles" : [ "offline_access", "uma_authorization" ], - "clientRoles" : { - "account" : [ "manage-account", "view-profile" ] - }, - "notBefore" : 0, - "groups" : [ ] - }, { - "id" : "72b2d795-8d27-4aa7-a935-4c1ce274f27d", - "createdTimestamp" : 1650355454172, - "username" : "service-account-cce-dev", - "enabled" : true, - "totp" : false, - "emailVerified" : false, - "serviceAccountClientId" : "cce-dev", - "credentials" : [ ], - "disableableCredentialTypes" : [ ], - "requiredActions" : [ ], - "realmRoles" : [ "offline_access", "uma_authorization" ], - "clientRoles" : { - "cce-dev" : [ "uma_protection" ], - "account" : [ "manage-account", "view-profile" ] - }, - "notBefore" : 0, - "groups" : [ ] - }, { - "id" : "4aafc668-9855-44b2-a079-a271a3c4a515", - "createdTimestamp" : 1646860326928, - "username" : "service-account-clouditor-assessment", - "enabled" : true, - "totp" : false, - "emailVerified" : false, - "serviceAccountClientId" : "clouditor-assessment", - "credentials" : [ ], - "disableableCredentialTypes" : [ ], - "requiredActions" : [ ], - "realmRoles" : [ "offline_access", "uma_authorization" ], - "clientRoles" : { - "account" : [ "manage-account", "view-profile" ] - }, - "notBefore" : 0, - "groups" : [ ] - }, { - "id" : "89145876-b402-435f-bcfc-1a5da1f948ac", - "createdTimestamp" : 1646860316152, - "username" : "service-account-clouditor-discovery", - "enabled" : true, - "totp" : false, - "emailVerified" : false, - "serviceAccountClientId" : "clouditor-discovery", - "credentials" : [ ], - "disableableCredentialTypes" : [ ], - "requiredActions" : [ ], - "realmRoles" : [ "offline_access", "uma_authorization" ], - "clientRoles" : { - "account" : [ "manage-account", "view-profile" ] - }, - "notBefore" : 0, - "groups" : [ ] - }, { - "id" : "a5916f7c-3494-4b8b-a899-d6424762a7e8", - "createdTimestamp" : 1646917353062, - "username" : "service-account-codyze", - "enabled" : true, - "totp" : false, - "emailVerified" : false, - "serviceAccountClientId" : "codyze", - "credentials" : [ ], - "disableableCredentialTypes" : [ ], - "requiredActions" : [ ], - "realmRoles" : [ "offline_access", "uma_authorization" ], - "clientRoles" : { - "account" : [ "manage-account", "view-profile" ] - }, - "notBefore" : 0, - "groups" : [ ] - }, { - "id" : "6e8ff208-0ede-436c-b1ee-b853d33c3d81", - "createdTimestamp" : 1646998107929, - "username" : "service-account-life-cycle-manager", - "enabled" : true, - "totp" : false, - "emailVerified" : false, - "serviceAccountClientId" : "life-cycle-manager", - "credentials" : [ ], - "disableableCredentialTypes" : [ ], - "requiredActions" : [ ], - "realmRoles" : [ "offline_access", "uma_authorization" ], - "clientRoles" : { - "account" : [ "manage-account", "view-profile" ] - }, - "notBefore" : 0, - "groups" : [ ] - }, { - "id" : "7cdaece4-9f13-4a89-9e46-f56a3cee862e", - "createdTimestamp" : 1647940729928, - "username" : "service-account-nl2cnl-translator-client", - "enabled" : true, - "totp" : false, - "emailVerified" : false, - "serviceAccountClientId" : "nl2cnl-translator-client", - "credentials" : [ ], - "disableableCredentialTypes" : [ ], - "requiredActions" : [ ], - "realmRoles" : [ "offline_access", "uma_authorization" ], - "clientRoles" : { - "nl2cnl-translator-client" : [ "uma_protection" ], - "account" : [ "manage-account", "view-profile" ] - }, - "notBefore" : 0, - "groups" : [ ] - }, { - "id" : "20913f11-a80b-4b95-9e9c-3b7318275a9f", - "createdTimestamp" : 1650445410351, - "username" : "service-account-raof", - "enabled" : true, - "totp" : false, - "emailVerified" : false, - "serviceAccountClientId" : "raof", - "credentials" : [ ], - "disableableCredentialTypes" : [ ], - "requiredActions" : [ ], - "realmRoles" : [ "offline_access", "uma_authorization" ], - "clientRoles" : { - "raof" : [ "uma_protection" ], - "account" : [ "manage-account", "view-profile" ] - }, - "notBefore" : 0, - "groups" : [ ] - }, { - "id" : "43256450-bcb4-4115-ae7b-952462768dde", - "createdTimestamp" : 1650957338070, - "username" : "service-account-raof-app", - "enabled" : true, - "totp" : false, - "emailVerified" : false, - "serviceAccountClientId" : "raof-app", - "credentials" : [ ], - "disableableCredentialTypes" : [ ], - "requiredActions" : [ ], - "realmRoles" : [ "offline_access", "uma_authorization" ], - "clientRoles" : { - "raof-app" : [ "uma_protection" ], - "account" : [ "manage-account", "view-profile" ] - }, - "notBefore" : 0, - "groups" : [ ] - }, { - "id" : "d12a0ea0-d7d4-4194-b8f7-6e1190bbfcff", - "createdTimestamp" : 1650377634668, - "username" : "service-account-wazuh-vat-evidence-collector-dev", - "enabled" : true, - "totp" : false, - "emailVerified" : false, - "serviceAccountClientId" : "wazuh-vat-evidence-collector-dev", - "credentials" : [ ], - "disableableCredentialTypes" : [ ], - "requiredActions" : [ ], - "realmRoles" : [ "offline_access", "uma_authorization" ], - "clientRoles" : { - "wazuh-vat-evidence-collector-dev" : [ "uma_protection" ], - "account" : [ "manage-account", "view-profile" ] - }, - "notBefore" : 0, - "groups" : [ ] - }, { - "id" : "388c9e25-e443-4e6f-b99d-0eafe23def6d", - "createdTimestamp" : 1649755577157, - "username" : "tqqyslvjxn8oaaxkrkukjemcx3dfuu4muiukirgxgf8=", - "enabled" : true, - "totp" : false, - "emailVerified" : false, - "firstName" : "Patrick", - "lastName" : "Weiss", - "email" : "patrick.weiss3@de.bosch.com", - "credentials" : [ ], - "disableableCredentialTypes" : [ ], - "requiredActions" : [ ], - "federatedIdentities" : [ { - "identityProvider" : "oidc", - "userId" : "TQQySlVjXN8OaaXkrKUKJEMCx3dfuu4MuIuKiRgXgF8=", - "userName" : "tqqyslvjxn8oaaxkrkukjemcx3dfuu4muiukirgxgf8=" - } ], - "realmRoles" : [ "offline_access", "uma_authorization", "Compliance Manager" ], - "clientRoles" : { - "integrated-ui" : [ "user", "admin" ], - "account" : [ "manage-account", "view-profile" ] - }, - "notBefore" : 0, - "groups" : [ ] - }, { - "id" : "a2d9c454-960f-47e9-860e-e1876cdd81e7", - "createdTimestamp" : 1648054983093, - "username" : "user", - "enabled" : true, - "totp" : false, - "emailVerified" : false, - "firstName" : "U.", - "lastName" : "Ser", - "email" : "user@localhost", - "credentials" : [ { - "id" : "b6a60d24-da76-47f4-a07b-885bac646b7a", - "type" : "password", - "createdDate" : 1650406346090, - "secretData" : "{\"value\":\"NTNpm0k7ky3gLf9pcYTklGY8qn0LPwCrhUYu94nhHVUl1vp5IHb5eSjgFJjpFaKKObNDcz7qJFWjyJ/mWCtwGA==\",\"salt\":\"fQAJhWFTktzewkFQ5ypbRQ==\",\"additionalParameters\":{}}", - "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" - } ], - "disableableCredentialTypes" : [ ], - "requiredActions" : [ ], - "realmRoles" : [ "ROLE_USER", "offline_access", "Auditor", "uma_authorization" ], - "clientRoles" : { - "account" : [ "manage-account", "view-profile" ] - }, - "notBefore" : 0, - "groups" : [ ] - } ], - "scopeMappings" : [ { - "clientScope" : "offline_access", - "roles" : [ "offline_access" ] - } ], - "clientScopeMappings" : { - "account" : [ { - "client" : "account-console", - "roles" : [ "manage-account" ] - } ] - }, - "clients" : [ { - "id" : "8bd89baf-08f6-4e4b-8394-6b4dd6050ed2", - "clientId" : "account", - "name" : "${client_account}", - "rootUrl" : "${authBaseUrl}", - "baseUrl" : "/realms/medina/account/", - "surrogateAuthRequired" : false, - "enabled" : true, - "alwaysDisplayInConsole" : false, - "clientAuthenticatorType" : "client-secret", - "secret" : "533f8bfc-73ca-4950-a17e-29510052e70a", - "defaultRoles" : [ "manage-account", "view-profile" ], - "redirectUris" : [ "/realms/medina/account/*" ], - "webOrigins" : [ ], - "notBefore" : 0, - "bearerOnly" : false, - "consentRequired" : false, - "standardFlowEnabled" : true, - "implicitFlowEnabled" : false, - "directAccessGrantsEnabled" : false, - "serviceAccountsEnabled" : false, - "publicClient" : false, - "frontchannelLogout" : false, - "protocol" : "openid-connect", - "attributes" : { }, - "authenticationFlowBindingOverrides" : { }, - "fullScopeAllowed" : false, - "nodeReRegistrationTimeout" : 0, - "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], - "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] - }, { - "id" : "8f7fee7a-d32e-4c08-85fd-0a92ace43970", - "clientId" : "account-console", - "name" : "${client_account-console}", - "rootUrl" : "${authBaseUrl}", - "baseUrl" : "/realms/medina/account/", - "surrogateAuthRequired" : false, - "enabled" : true, - "alwaysDisplayInConsole" : false, - "clientAuthenticatorType" : "client-secret", - "secret" : "0ffbdc8a-e2b4-4693-abc0-cf08d0a3127e", - "redirectUris" : [ "/realms/medina/account/*" ], - "webOrigins" : [ ], - "notBefore" : 0, - "bearerOnly" : false, - "consentRequired" : false, - "standardFlowEnabled" : true, - "implicitFlowEnabled" : false, - "directAccessGrantsEnabled" : false, - "serviceAccountsEnabled" : false, - "publicClient" : true, - "frontchannelLogout" : false, - "protocol" : "openid-connect", - "attributes" : { - "pkce.code.challenge.method" : "S256" - }, - "authenticationFlowBindingOverrides" : { }, - "fullScopeAllowed" : false, - "nodeReRegistrationTimeout" : 0, - "protocolMappers" : [ { - "id" : "edc42cad-bd34-4811-8354-0adaee774340", - "name" : "audience resolve", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-audience-resolve-mapper", - "consentRequired" : false, - "config" : { } - } ], - "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], - "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] - }, { - "id" : "24244b46-4845-4734-a061-bcb8ec91b84c", - "clientId" : "admin-cli", - "name" : "${client_admin-cli}", - "surrogateAuthRequired" : false, - "enabled" : true, - "alwaysDisplayInConsole" : false, - "clientAuthenticatorType" : "client-secret", - "secret" : "c29d2164-1f3d-476b-951c-c5eea7518fd6", - "redirectUris" : [ ], - "webOrigins" : [ ], - "notBefore" : 0, - "bearerOnly" : false, - "consentRequired" : false, - "standardFlowEnabled" : false, - "implicitFlowEnabled" : false, - "directAccessGrantsEnabled" : true, - "serviceAccountsEnabled" : true, - "publicClient" : false, - "frontchannelLogout" : false, - "protocol" : "openid-connect", - "attributes" : { - "saml.assertion.signature" : "false", - "saml.force.post.binding" : "false", - "saml.multivalued.roles" : "false", - "saml.encrypt" : "false", - "backchannel.logout.revoke.offline.tokens" : "false", - "saml.server.signature" : "false", - "saml.server.signature.keyinfo.ext" : "false", - "exclude.session.state.from.auth.response" : "false", - "backchannel.logout.session.required" : "false", - "client_credentials.use_refresh_token" : "false", - "saml_force_name_id_format" : "false", - "saml.client.signature" : "false", - "tls.client.certificate.bound.access.tokens" : "false", - "saml.authnstatement" : "false", - "display.on.consent.screen" : "false", - "saml.onetimeuse.condition" : "false" - }, - "authenticationFlowBindingOverrides" : { }, - "fullScopeAllowed" : true, - "nodeReRegistrationTimeout" : 0, - "protocolMappers" : [ { - "id" : "8b8f8749-0adc-492d-a73d-3029413881be", - "name" : "Client ID", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientId", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientId", - "jsonType.label" : "String" - } - }, { - "id" : "6117fb7e-ecbe-4f0f-90da-d5a5c805e5d7", - "name" : "Client IP Address", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientAddress", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientAddress", - "jsonType.label" : "String" - } - }, { - "id" : "786a08b5-a459-43d0-b0d4-1d45a084a14a", - "name" : "Client Host", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientHost", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientHost", - "jsonType.label" : "String" - } - } ], - "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], - "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] - }, { - "id" : "a25b15fc-202b-4dc6-9340-fcc94f491a24", - "clientId" : "amoe-client", - "rootUrl" : "https://api-assessment-and-management-of-organisational-evidences-dev.192.168.56.1.nip.io:8443/", - "adminUrl" : "https://api-assessment-and-management-of-organisational-evidences-dev.192.168.56.1.nip.io:8443/", - "surrogateAuthRequired" : false, - "enabled" : true, - "alwaysDisplayInConsole" : false, - "clientAuthenticatorType" : "client-secret", - "secret" : "54d58c5f-dfd7-4902-819c-5b316ca13770", - "redirectUris" : [ "*" ], - "webOrigins" : [ "*" ], - "notBefore" : 0, - "bearerOnly" : false, - "consentRequired" : false, - "standardFlowEnabled" : true, - "implicitFlowEnabled" : false, - "directAccessGrantsEnabled" : true, - "serviceAccountsEnabled" : false, - "publicClient" : false, - "frontchannelLogout" : false, - "protocol" : "openid-connect", - "attributes" : { - "saml.assertion.signature" : "false", - "saml.force.post.binding" : "false", - "saml.multivalued.roles" : "false", - "saml.encrypt" : "false", - "backchannel.logout.revoke.offline.tokens" : "false", - "saml.server.signature" : "false", - "saml.server.signature.keyinfo.ext" : "false", - "exclude.session.state.from.auth.response" : "false", - "backchannel.logout.session.required" : "true", - "client_credentials.use_refresh_token" : "false", - "saml_force_name_id_format" : "false", - "saml.client.signature" : "false", - "tls.client.certificate.bound.access.tokens" : "false", - "saml.authnstatement" : "false", - "display.on.consent.screen" : "false", - "saml.onetimeuse.condition" : "false" - }, - "authenticationFlowBindingOverrides" : { }, - "fullScopeAllowed" : true, - "nodeReRegistrationTimeout" : -1, - "protocolMappers" : [ { - "id" : "7adfc5e5-5248-4737-8b84-78567a897980", - "name" : "Client Host", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientHost", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientHost", - "jsonType.label" : "String" - } - }, { - "id" : "f96e6e25-77e4-4ffe-a4ca-5081f6dd3488", - "name" : "Client ID", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientId", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientId", - "jsonType.label" : "String" - } - }, { - "id" : "0078d78f-a368-41c5-9c41-16ba08b0dd64", - "name" : "Client IP Address", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientAddress", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientAddress", - "jsonType.label" : "String" - } - } ], - "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], - "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] - }, { - "id" : "a08fc1fe-7c85-4c1c-9d04-604c6e35faa8", - "clientId" : "api-swagger", - "rootUrl" : "https://api-swagger-dev.192.168.56.1.nip.io:8443", - "adminUrl" : "https://api-swagger-dev.192.168.56.1.nip.io:8443", - "surrogateAuthRequired" : false, - "enabled" : true, - "alwaysDisplayInConsole" : false, - "clientAuthenticatorType" : "client-secret", - "secret" : "c29a5cf2-52c0-4fa2-89fc-8951fa80ce84", - "redirectUris" : [ "https://api-swagger-dev.192.168.56.1.nip.io:8443/*" ], - "webOrigins" : [ "https://api-swagger-dev.192.168.56.1.nip.io:8443" ], - "notBefore" : 0, - "bearerOnly" : false, - "consentRequired" : false, - "standardFlowEnabled" : true, - "implicitFlowEnabled" : false, - "directAccessGrantsEnabled" : true, - "serviceAccountsEnabled" : true, - "authorizationServicesEnabled" : true, - "publicClient" : false, - "frontchannelLogout" : false, - "protocol" : "openid-connect", - "attributes" : { - "saml.assertion.signature" : "false", - "saml.force.post.binding" : "false", - "saml.multivalued.roles" : "false", - "saml.encrypt" : "false", - "backchannel.logout.revoke.offline.tokens" : "false", - "saml.server.signature" : "false", - "saml.server.signature.keyinfo.ext" : "false", - "exclude.session.state.from.auth.response" : "false", - "backchannel.logout.session.required" : "true", - "client_credentials.use_refresh_token" : "false", - "saml_force_name_id_format" : "false", - "saml.client.signature" : "false", - "tls.client.certificate.bound.access.tokens" : "false", - "saml.authnstatement" : "false", - "display.on.consent.screen" : "false", - "saml.onetimeuse.condition" : "false" - }, - "authenticationFlowBindingOverrides" : { }, - "fullScopeAllowed" : true, - "nodeReRegistrationTimeout" : -1, - "protocolMappers" : [ { - "id" : "a1b33188-ca81-44c0-ba56-772581a94038", - "name" : "Client IP Address", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientAddress", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientAddress", - "jsonType.label" : "String" - } - }, { - "id" : "7455b7e4-2b73-4a6d-b7e6-8434370a7a85", - "name" : "Client Host", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientHost", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientHost", - "jsonType.label" : "String" - } - }, { - "id" : "d9167dc9-6937-4bea-bc20-6e885857ccd0", - "name" : "Client ID", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientId", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientId", - "jsonType.label" : "String" - } - } ], - "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], - "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ], - "authorizationSettings" : { - "allowRemoteResourceManagement" : true, - "policyEnforcementMode" : "ENFORCING", - "resources" : [ { - "name" : "Default Resource", - "type" : "urn:api-swagger:resources:default", - "ownerManagedAccess" : false, - "attributes" : { }, - "_id" : "b8d55282-f977-4e89-9e8e-2b3e8ef07200", - "uris" : [ "/*" ] - } ], - "policies" : [ { - "id" : "9dc0a736-90a6-4428-be5a-0695b9153f93", - "name" : "Default Policy", - "description" : "A policy that grants access only for users within this realm", - "type" : "js", - "logic" : "POSITIVE", - "decisionStrategy" : "AFFIRMATIVE", - "config" : { - "code" : "// by default, grants any permission associated with this policy\n$evaluation.grant();\n" - } - }, { - "id" : "4058b893-6396-4351-ae9c-e4ecf5329d18", - "name" : "Default Permission", - "description" : "A permission that applies to the default resource type", - "type" : "resource", - "logic" : "POSITIVE", - "decisionStrategy" : "UNANIMOUS", - "config" : { - "defaultResourceType" : "urn:api-swagger:resources:default", - "applyPolicies" : "[\"Default Policy\"]" - } - } ], - "scopes" : [ ], - "decisionStrategy" : "UNANIMOUS" - } - }, { - "id" : "8d1a867d-537c-433e-8234-b3582127cc54", - "clientId" : "broker", - "name" : "${client_broker}", - "surrogateAuthRequired" : false, - "enabled" : true, - "alwaysDisplayInConsole" : false, - "clientAuthenticatorType" : "client-secret", - "secret" : "4293f846-3a76-4628-a9a4-810bebcdc51b", - "redirectUris" : [ ], - "webOrigins" : [ ], - "notBefore" : 0, - "bearerOnly" : false, - "consentRequired" : false, - "standardFlowEnabled" : true, - "implicitFlowEnabled" : false, - "directAccessGrantsEnabled" : false, - "serviceAccountsEnabled" : false, - "publicClient" : false, - "frontchannelLogout" : false, - "protocol" : "openid-connect", - "attributes" : { }, - "authenticationFlowBindingOverrides" : { }, - "fullScopeAllowed" : false, - "nodeReRegistrationTimeout" : 0, - "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], - "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] - }, { - "id" : "df274002-83dd-4c7f-b64b-8cf7b90d9a97", - "clientId" : "catalogue-backend", - "surrogateAuthRequired" : false, - "enabled" : true, - "alwaysDisplayInConsole" : false, - "clientAuthenticatorType" : "client-secret", - "secret" : "47b59168-f965-4a6f-941c-ae7ee1ba463c", - "redirectUris" : [ ], - "webOrigins" : [ ], - "notBefore" : 0, - "bearerOnly" : false, - "consentRequired" : false, - "standardFlowEnabled" : false, - "implicitFlowEnabled" : false, - "directAccessGrantsEnabled" : false, - "serviceAccountsEnabled" : true, - "publicClient" : false, - "frontchannelLogout" : false, - "protocol" : "openid-connect", - "attributes" : { - "saml.assertion.signature" : "false", - "saml.force.post.binding" : "false", - "saml.multivalued.roles" : "false", - "saml.encrypt" : "false", - "backchannel.logout.revoke.offline.tokens" : "false", - "saml.server.signature" : "false", - "saml.server.signature.keyinfo.ext" : "false", - "exclude.session.state.from.auth.response" : "false", - "backchannel.logout.session.required" : "true", - "client_credentials.use_refresh_token" : "false", - "saml_force_name_id_format" : "false", - "saml.client.signature" : "false", - "tls.client.certificate.bound.access.tokens" : "false", - "saml.authnstatement" : "false", - "display.on.consent.screen" : "false", - "saml.onetimeuse.condition" : "false" - }, - "authenticationFlowBindingOverrides" : { }, - "fullScopeAllowed" : true, - "nodeReRegistrationTimeout" : -1, - "protocolMappers" : [ { - "id" : "6ea5df11-551c-44e4-a4e7-74e787bea43e", - "name" : "Client Host", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientHost", - "userinfo.token.claim" : "true", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientHost", - "jsonType.label" : "String" - } - }, { - "id" : "0544b98a-f678-4395-b3cf-bdb0529a5661", - "name" : "Client IP Address", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientAddress", - "userinfo.token.claim" : "true", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientAddress", - "jsonType.label" : "String" - } - }, { - "id" : "adace2ba-512e-4856-a187-75031220377d", - "name" : "Client ID", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientId", - "userinfo.token.claim" : "true", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientId", - "jsonType.label" : "String" - } - } ], - "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], - "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] - }, { - "id" : "fa074dc3-e8de-4f34-9437-dc5d93f60f9a", - "clientId" : "catalogue-gateway", - "rootUrl" : "https://192.168.56.1.nip.io:8443", - "adminUrl" : "https://192.168.56.1.nip.io:8443", - "surrogateAuthRequired" : false, - "enabled" : true, - "alwaysDisplayInConsole" : false, - "clientAuthenticatorType" : "client-secret", - "secret" : "1895c8be-10f2-4243-a7da-8443aa1a2851", - "redirectUris" : [ "*" ], - "webOrigins" : [ "*" ], - "notBefore" : 0, - "bearerOnly" : false, - "consentRequired" : false, - "standardFlowEnabled" : true, - "implicitFlowEnabled" : true, - "directAccessGrantsEnabled" : false, - "serviceAccountsEnabled" : false, - "publicClient" : true, - "frontchannelLogout" : false, - "protocol" : "openid-connect", - "attributes" : { - "saml.assertion.signature" : "false", - "saml.force.post.binding" : "false", - "saml.multivalued.roles" : "false", - "saml.encrypt" : "false", - "backchannel.logout.revoke.offline.tokens" : "false", - "saml.server.signature" : "false", - "saml.server.signature.keyinfo.ext" : "false", - "exclude.session.state.from.auth.response" : "false", - "backchannel.logout.session.required" : "true", - "client_credentials.use_refresh_token" : "false", - "saml_force_name_id_format" : "false", - "saml.client.signature" : "false", - "tls.client.certificate.bound.access.tokens" : "false", - "saml.authnstatement" : "false", - "display.on.consent.screen" : "false", - "saml.onetimeuse.condition" : "false" - }, - "authenticationFlowBindingOverrides" : { }, - "fullScopeAllowed" : true, - "nodeReRegistrationTimeout" : -1, - "defaultClientScopes" : [ "web-origins", "jhipster", "role_list", "profile", "roles", "email" ], - "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] - }, { - "id" : "b7769853-8605-4a36-9352-7633d3be0f22", - "clientId" : "catalogue-jhipster-control-center", - "rootUrl" : "http://localhost:7419", - "adminUrl" : "http://localhost:7419", - "surrogateAuthRequired" : false, - "enabled" : true, - "alwaysDisplayInConsole" : false, - "clientAuthenticatorType" : "client-secret", - "secret" : "a77e5efc-e542-4ed2-b8a2-535fe4c4fb34", - "redirectUris" : [ "dev.localhost.ionic:*", "http://127.0.0.1:*", "http://localhost:*", "https://127.0.0.1:*", "https://localhost:*" ], - "webOrigins" : [ "*" ], - "notBefore" : 0, - "bearerOnly" : false, - "consentRequired" : false, - "standardFlowEnabled" : true, - "implicitFlowEnabled" : true, - "directAccessGrantsEnabled" : false, - "serviceAccountsEnabled" : false, - "publicClient" : true, - "frontchannelLogout" : false, - "protocol" : "openid-connect", - "attributes" : { - "saml.assertion.signature" : "false", - "saml.force.post.binding" : "false", - "saml.multivalued.roles" : "false", - "saml.encrypt" : "false", - "backchannel.logout.revoke.offline.tokens" : "false", - "saml.server.signature" : "false", - "saml.server.signature.keyinfo.ext" : "false", - "exclude.session.state.from.auth.response" : "false", - "backchannel.logout.session.required" : "true", - "saml_force_name_id_format" : "false", - "saml.client.signature" : "false", - "tls.client.certificate.bound.access.tokens" : "false", - "saml.authnstatement" : "false", - "display.on.consent.screen" : "false", - "saml.onetimeuse.condition" : "false" - }, - "authenticationFlowBindingOverrides" : { }, - "fullScopeAllowed" : true, - "nodeReRegistrationTimeout" : -1, - "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], - "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] - }, { - "id" : "645cf799-be24-42fd-a169-f9d5fc39be31", - "clientId" : "catalogue-registry", - "rootUrl" : "https://registry.192.168.56.1.nip.io:8443", - "adminUrl" : "https://registry.192.168.56.1.nip.io:8443", - "surrogateAuthRequired" : false, - "enabled" : true, - "alwaysDisplayInConsole" : false, - "clientAuthenticatorType" : "client-secret", - "secret" : "ff31a06d-d850-48d2-8355-6723e856c1b6", - "redirectUris" : [ "*" ], - "webOrigins" : [ "*" ], - "notBefore" : 0, - "bearerOnly" : false, - "consentRequired" : false, - "standardFlowEnabled" : true, - "implicitFlowEnabled" : false, - "directAccessGrantsEnabled" : true, - "serviceAccountsEnabled" : false, - "publicClient" : true, - "frontchannelLogout" : false, - "protocol" : "openid-connect", - "attributes" : { - "saml.assertion.signature" : "false", - "saml.force.post.binding" : "false", - "saml.multivalued.roles" : "false", - "saml.encrypt" : "false", - "backchannel.logout.revoke.offline.tokens" : "false", - "saml.server.signature" : "false", - "saml.server.signature.keyinfo.ext" : "false", - "exclude.session.state.from.auth.response" : "false", - "backchannel.logout.session.required" : "true", - "saml_force_name_id_format" : "false", - "saml.client.signature" : "false", - "tls.client.certificate.bound.access.tokens" : "false", - "saml.authnstatement" : "false", - "display.on.consent.screen" : "false", - "saml.onetimeuse.condition" : "false" - }, - "authenticationFlowBindingOverrides" : { }, - "fullScopeAllowed" : true, - "nodeReRegistrationTimeout" : -1, - "defaultClientScopes" : [ "web-origins", "jhipster", "role_list", "roles", "profile", "email" ], - "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] - }, { - "id" : "12d63192-94cd-4692-b557-ab76a331eaa6", - "clientId" : "ccd-client", - "name" : "Company compliance dashboard", - "surrogateAuthRequired" : false, - "enabled" : true, - "alwaysDisplayInConsole" : false, - "clientAuthenticatorType" : "client-secret", - "secret" : "cc728558-1c40-48ae-8be4-e48b582a727a", - "redirectUris" : [ "http://localhost:8080/" ], - "webOrigins" : [ ], - "notBefore" : 0, - "bearerOnly" : false, - "consentRequired" : false, - "standardFlowEnabled" : true, - "implicitFlowEnabled" : false, - "directAccessGrantsEnabled" : true, - "serviceAccountsEnabled" : false, - "publicClient" : false, - "frontchannelLogout" : false, - "protocol" : "openid-connect", - "attributes" : { - "saml.assertion.signature" : "false", - "saml.force.post.binding" : "false", - "saml.multivalued.roles" : "false", - "saml.encrypt" : "false", - "backchannel.logout.revoke.offline.tokens" : "false", - "saml.server.signature" : "false", - "saml.server.signature.keyinfo.ext" : "false", - "exclude.session.state.from.auth.response" : "false", - "backchannel.logout.session.required" : "true", - "client_credentials.use_refresh_token" : "false", - "saml_force_name_id_format" : "false", - "saml.client.signature" : "false", - "tls.client.certificate.bound.access.tokens" : "false", - "saml.authnstatement" : "false", - "display.on.consent.screen" : "false", - "saml.onetimeuse.condition" : "false" - }, - "authenticationFlowBindingOverrides" : { }, - "fullScopeAllowed" : true, - "nodeReRegistrationTimeout" : -1, - "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], - "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] - }, { - "id" : "dc64b28b-a696-4b0c-8e24-2aeae138c3e5", - "clientId" : "cce-dev", - "rootUrl" : "http://cce-api-dev.192.168.56.1.nip.io:8443/", - "adminUrl" : "http://cce-api-dev.192.168.56.1.nip.io:8443/", - "surrogateAuthRequired" : false, - "enabled" : true, - "alwaysDisplayInConsole" : false, - "clientAuthenticatorType" : "client-secret", - "secret" : "efe3acb8-b4c1-43f0-a3a2-b75402e76afc", - "redirectUris" : [ "http://cce-api-dev.192.168.56.1.nip.io:8443/*" ], - "webOrigins" : [ "http://cce-api-dev.192.168.56.1.nip.io:8443" ], - "notBefore" : 0, - "bearerOnly" : false, - "consentRequired" : false, - "standardFlowEnabled" : true, - "implicitFlowEnabled" : false, - "directAccessGrantsEnabled" : true, - "serviceAccountsEnabled" : true, - "authorizationServicesEnabled" : true, - "publicClient" : false, - "frontchannelLogout" : false, - "protocol" : "openid-connect", - "attributes" : { - "saml.assertion.signature" : "false", - "saml.force.post.binding" : "false", - "saml.multivalued.roles" : "false", - "saml.encrypt" : "false", - "backchannel.logout.revoke.offline.tokens" : "false", - "saml.server.signature" : "false", - "saml.server.signature.keyinfo.ext" : "false", - "exclude.session.state.from.auth.response" : "false", - "backchannel.logout.session.required" : "true", - "client_credentials.use_refresh_token" : "false", - "saml_force_name_id_format" : "false", - "saml.client.signature" : "false", - "tls.client.certificate.bound.access.tokens" : "false", - "saml.authnstatement" : "false", - "display.on.consent.screen" : "false", - "saml.onetimeuse.condition" : "false" - }, - "authenticationFlowBindingOverrides" : { }, - "fullScopeAllowed" : true, - "nodeReRegistrationTimeout" : -1, - "protocolMappers" : [ { - "id" : "12f94f61-bb5e-41dc-ae0b-20206ff6173c", - "name" : "Client IP Address", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientAddress", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientAddress", - "jsonType.label" : "String" - } - }, { - "id" : "3920d8ac-45ea-4bf5-a203-1c831cb845ab", - "name" : "Client Host", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientHost", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientHost", - "jsonType.label" : "String" - } - }, { - "id" : "5f427941-d12d-432c-b883-ac39fe209705", - "name" : "Client ID", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientId", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientId", - "jsonType.label" : "String" - } - } ], - "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], - "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ], - "authorizationSettings" : { - "allowRemoteResourceManagement" : true, - "policyEnforcementMode" : "ENFORCING", - "resources" : [ { - "name" : "Default Resource", - "type" : "urn:cce-dev:resources:default", - "ownerManagedAccess" : false, - "attributes" : { }, - "_id" : "ef475897-65aa-4813-a810-340268090336", - "uris" : [ "/*" ] - } ], - "policies" : [ { - "id" : "ff85e02d-5048-473c-8bd0-fa22b6574852", - "name" : "Default Policy", - "description" : "A policy that grants access only for users within this realm", - "type" : "js", - "logic" : "POSITIVE", - "decisionStrategy" : "AFFIRMATIVE", - "config" : { - "code" : "// by default, grants any permission associated with this policy\n$evaluation.grant();\n" - } - }, { - "id" : "043cee90-99a8-4f2b-9ad2-3f37ce518483", - "name" : "Default Permission", - "description" : "A permission that applies to the default resource type", - "type" : "resource", - "logic" : "POSITIVE", - "decisionStrategy" : "UNANIMOUS", - "config" : { - "defaultResourceType" : "urn:cce-dev:resources:default", - "applyPolicies" : "[\"Default Policy\"]" - } - } ], - "scopes" : [ ], - "decisionStrategy" : "UNANIMOUS" - } - }, { - "id" : "4a57f2cd-5b99-4b78-ba31-d994521abd30", - "clientId" : "clouditor-assessment", - "surrogateAuthRequired" : false, - "enabled" : true, - "alwaysDisplayInConsole" : false, - "clientAuthenticatorType" : "client-secret", - "secret" : "4a47f42a-df33-418f-b687-64e7c8ffbbda", - "redirectUris" : [ "https://security-assessment-dev.192.168.56.1.nip.io:8443" ], - "webOrigins" : [ ], - "notBefore" : 0, - "bearerOnly" : false, - "consentRequired" : false, - "standardFlowEnabled" : false, - "implicitFlowEnabled" : false, - "directAccessGrantsEnabled" : false, - "serviceAccountsEnabled" : true, - "publicClient" : false, - "frontchannelLogout" : false, - "protocol" : "openid-connect", - "attributes" : { - "saml.assertion.signature" : "false", - "saml.force.post.binding" : "false", - "saml.multivalued.roles" : "false", - "saml.encrypt" : "false", - "backchannel.logout.revoke.offline.tokens" : "false", - "saml.server.signature" : "false", - "saml.server.signature.keyinfo.ext" : "false", - "exclude.session.state.from.auth.response" : "false", - "backchannel.logout.session.required" : "true", - "client_credentials.use_refresh_token" : "false", - "saml_force_name_id_format" : "false", - "saml.client.signature" : "false", - "tls.client.certificate.bound.access.tokens" : "false", - "saml.authnstatement" : "false", - "display.on.consent.screen" : "false", - "saml.onetimeuse.condition" : "false" - }, - "authenticationFlowBindingOverrides" : { }, - "fullScopeAllowed" : true, - "nodeReRegistrationTimeout" : -1, - "protocolMappers" : [ { - "id" : "caf7c5a7-f72e-44d8-aa9d-37c185e415ca", - "name" : "Client ID", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientId", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientId", - "jsonType.label" : "String" - } - }, { - "id" : "7dde8113-bf11-4cb4-be6b-d342ed64b1b6", - "name" : "Client Host", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientHost", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientHost", - "jsonType.label" : "String" - } - }, { - "id" : "1261d141-6010-4868-b659-2ce26e1680b4", - "name" : "Client IP Address", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientAddress", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientAddress", - "jsonType.label" : "String" - } - } ], - "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], - "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] - }, { - "id" : "69bba521-b088-45a6-9e56-bd29e557cea4", - "clientId" : "clouditor-cli", - "surrogateAuthRequired" : false, - "enabled" : true, - "alwaysDisplayInConsole" : false, - "clientAuthenticatorType" : "client-secret", - "secret" : "c3228efe-8dc3-4c09-bc89-8bdc362ae878", - "redirectUris" : [ "http://localhost:10000/callback" ], - "webOrigins" : [ ], - "notBefore" : 0, - "bearerOnly" : false, - "consentRequired" : false, - "standardFlowEnabled" : true, - "implicitFlowEnabled" : false, - "directAccessGrantsEnabled" : false, - "serviceAccountsEnabled" : false, - "publicClient" : true, - "frontchannelLogout" : false, - "protocol" : "openid-connect", - "attributes" : { - "saml.assertion.signature" : "false", - "saml.force.post.binding" : "false", - "saml.multivalued.roles" : "false", - "saml.encrypt" : "false", - "backchannel.logout.revoke.offline.tokens" : "false", - "saml.server.signature" : "false", - "saml.server.signature.keyinfo.ext" : "false", - "exclude.session.state.from.auth.response" : "false", - "backchannel.logout.session.required" : "true", - "client_credentials.use_refresh_token" : "false", - "saml_force_name_id_format" : "false", - "saml.client.signature" : "false", - "tls.client.certificate.bound.access.tokens" : "false", - "saml.authnstatement" : "false", - "display.on.consent.screen" : "false", - "saml.onetimeuse.condition" : "false" - }, - "authenticationFlowBindingOverrides" : { }, - "fullScopeAllowed" : true, - "nodeReRegistrationTimeout" : -1, - "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], - "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] - }, { - "id" : "8fedfacb-2df9-4342-be33-7d3e18dc316f", - "clientId" : "clouditor-discovery", - "surrogateAuthRequired" : false, - "enabled" : true, - "alwaysDisplayInConsole" : false, - "clientAuthenticatorType" : "client-secret", - "secret" : "2f38b7bd-c3fa-4e7b-af59-5b8d67ddd8c1", - "redirectUris" : [ "https://orchestrator-dev.192.168.56.1.nip.io:8443/" ], - "webOrigins" : [ ], - "notBefore" : 0, - "bearerOnly" : false, - "consentRequired" : false, - "standardFlowEnabled" : false, - "implicitFlowEnabled" : false, - "directAccessGrantsEnabled" : false, - "serviceAccountsEnabled" : true, - "publicClient" : false, - "frontchannelLogout" : false, - "protocol" : "openid-connect", - "attributes" : { - "saml.assertion.signature" : "false", - "saml.force.post.binding" : "false", - "saml.multivalued.roles" : "false", - "saml.encrypt" : "false", - "backchannel.logout.revoke.offline.tokens" : "false", - "saml.server.signature" : "false", - "saml.server.signature.keyinfo.ext" : "false", - "exclude.session.state.from.auth.response" : "false", - "backchannel.logout.session.required" : "true", - "client_credentials.use_refresh_token" : "false", - "saml_force_name_id_format" : "false", - "saml.client.signature" : "false", - "tls.client.certificate.bound.access.tokens" : "false", - "saml.authnstatement" : "false", - "display.on.consent.screen" : "false", - "saml.onetimeuse.condition" : "false" - }, - "authenticationFlowBindingOverrides" : { }, - "fullScopeAllowed" : true, - "nodeReRegistrationTimeout" : -1, - "protocolMappers" : [ { - "id" : "8dfab4e0-512c-4879-8878-c949ba32a641", - "name" : "Client Host", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientHost", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientHost", - "jsonType.label" : "String" - } - }, { - "id" : "9bba24ce-80f6-4a69-844d-7406c39d678b", - "name" : "Client ID", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientId", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientId", - "jsonType.label" : "String" - } - }, { - "id" : "112001f6-9584-4949-9d79-4d8e337bb9eb", - "name" : "Client IP Address", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientAddress", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientAddress", - "jsonType.label" : "String" - } - } ], - "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], - "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] - }, { - "id" : "fcf4c413-07b8-40e1-9ee0-2ffa646dfdf5", - "clientId" : "clouditor-ui", - "rootUrl" : "https://orchestrator-dev.192.168.56.1.nip.io:8443", - "surrogateAuthRequired" : false, - "enabled" : true, - "alwaysDisplayInConsole" : false, - "clientAuthenticatorType" : "client-secret", - "secret" : "7a189e46-8e44-4968-9228-2115e84dbcdd", - "redirectUris" : [ "https://orchestrator-dev.192.168.56.1.nip.io:8443/callback" ], - "webOrigins" : [ "https://orchestrator-dev.192.168.56.1.nip.io:8443" ], - "notBefore" : 0, - "bearerOnly" : false, - "consentRequired" : false, - "standardFlowEnabled" : true, - "implicitFlowEnabled" : false, - "directAccessGrantsEnabled" : false, - "serviceAccountsEnabled" : false, - "publicClient" : true, - "frontchannelLogout" : false, - "protocol" : "openid-connect", - "attributes" : { - "saml.assertion.signature" : "false", - "saml.force.post.binding" : "false", - "saml.multivalued.roles" : "false", - "saml.encrypt" : "false", - "backchannel.logout.revoke.offline.tokens" : "false", - "saml.server.signature" : "false", - "saml.server.signature.keyinfo.ext" : "false", - "exclude.session.state.from.auth.response" : "false", - "backchannel.logout.session.required" : "true", - "client_credentials.use_refresh_token" : "false", - "saml_force_name_id_format" : "false", - "saml.client.signature" : "false", - "tls.client.certificate.bound.access.tokens" : "false", - "saml.authnstatement" : "false", - "display.on.consent.screen" : "false", - "saml.onetimeuse.condition" : "false" - }, - "authenticationFlowBindingOverrides" : { }, - "fullScopeAllowed" : true, - "nodeReRegistrationTimeout" : -1, - "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], - "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] - }, { - "id" : "15a81bd1-4edd-4e2a-87ec-3bbcac30d2a3", - "clientId" : "cnl-editor-frontend", - "rootUrl" : "https://cnl-editor-frontend-dev.192.168.56.1.nip.io:8443", - "adminUrl" : "https://cnl-editor-frontend-dev.192.168.56.1.nip.io:8443", - "surrogateAuthRequired" : false, - "enabled" : true, - "alwaysDisplayInConsole" : false, - "clientAuthenticatorType" : "client-secret", - "secret" : "e6b76254-187d-441b-9061-cb6b03dd51a4", - "redirectUris" : [ "http://cnl-editor-frontend-dev.192.168.56.1.nip.io:8443/*", "https://cnl-editor-frontend-dev.192.168.56.1.nip.io:8443/*" ], - "webOrigins" : [ "https://cnl-editor-frontend-dev.192.168.56.1.nip.io:8443" ], - "notBefore" : 0, - "bearerOnly" : false, - "consentRequired" : false, - "standardFlowEnabled" : true, - "implicitFlowEnabled" : false, - "directAccessGrantsEnabled" : true, - "serviceAccountsEnabled" : false, - "publicClient" : true, - "frontchannelLogout" : false, - "protocol" : "openid-connect", - "attributes" : { - "saml.assertion.signature" : "false", - "saml.force.post.binding" : "false", - "saml.multivalued.roles" : "false", - "saml.encrypt" : "false", - "backchannel.logout.revoke.offline.tokens" : "false", - "saml.server.signature" : "false", - "saml.server.signature.keyinfo.ext" : "false", - "exclude.session.state.from.auth.response" : "false", - "backchannel.logout.session.required" : "true", - "client_credentials.use_refresh_token" : "false", - "saml_force_name_id_format" : "false", - "saml.client.signature" : "false", - "tls.client.certificate.bound.access.tokens" : "false", - "saml.authnstatement" : "false", - "display.on.consent.screen" : "false", - "saml.onetimeuse.condition" : "false" - }, - "authenticationFlowBindingOverrides" : { }, - "fullScopeAllowed" : true, - "nodeReRegistrationTimeout" : -1, - "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], - "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] - }, { - "id" : "01fce0c3-2db7-46dd-af1c-115dc1800053", - "clientId" : "codyze", - "surrogateAuthRequired" : false, - "enabled" : true, - "alwaysDisplayInConsole" : false, - "clientAuthenticatorType" : "client-secret", - "secret" : "7ff65ca2-a54a-4093-84f3-3b5756cc4e5c", - "redirectUris" : [ ], - "webOrigins" : [ ], - "notBefore" : 0, - "bearerOnly" : false, - "consentRequired" : false, - "standardFlowEnabled" : false, - "implicitFlowEnabled" : false, - "directAccessGrantsEnabled" : false, - "serviceAccountsEnabled" : true, - "publicClient" : false, - "frontchannelLogout" : false, - "protocol" : "openid-connect", - "attributes" : { - "saml.assertion.signature" : "false", - "saml.force.post.binding" : "false", - "saml.multivalued.roles" : "false", - "saml.encrypt" : "false", - "backchannel.logout.revoke.offline.tokens" : "false", - "saml.server.signature" : "false", - "saml.server.signature.keyinfo.ext" : "false", - "exclude.session.state.from.auth.response" : "false", - "backchannel.logout.session.required" : "true", - "client_credentials.use_refresh_token" : "false", - "saml_force_name_id_format" : "false", - "saml.client.signature" : "false", - "tls.client.certificate.bound.access.tokens" : "false", - "saml.authnstatement" : "false", - "display.on.consent.screen" : "false", - "saml.onetimeuse.condition" : "false" - }, - "authenticationFlowBindingOverrides" : { }, - "fullScopeAllowed" : true, - "nodeReRegistrationTimeout" : -1, - "protocolMappers" : [ { - "id" : "43fbe8e9-8141-4868-b85c-91220bd5f08f", - "name" : "Client IP Address", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientAddress", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientAddress", - "jsonType.label" : "String" - } - }, { - "id" : "ab5e553c-34e4-4411-b6c2-23235f3d7f84", - "name" : "Client ID", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientId", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientId", - "jsonType.label" : "String" - } - }, { - "id" : "8d070365-134e-4302-b0bd-e6ce82b1c2db", - "name" : "Client Host", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientHost", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientHost", - "jsonType.label" : "String" - } - } ], - "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], - "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] - }, { - "id" : "1150f83f-37bc-4b14-98a0-e179aaee0f6c", - "clientId" : "integrated-ui", - "rootUrl" : "https://integrated-ui-dev.192.168.56.1.nip.io:8443", - "adminUrl" : "https://integrated-ui-dev.192.168.56.1.nip.io:8443", - "surrogateAuthRequired" : false, - "enabled" : true, - "alwaysDisplayInConsole" : false, - "clientAuthenticatorType" : "client-secret", - "secret" : "9049e030-2e66-496e-accf-b7a5037bc0eb", - "redirectUris" : [ "https://integrated-ui-dev.192.168.56.1.nip.io:8443/*" ], - "webOrigins" : [ "https://integrated-ui-dev.192.168.56.1.nip.io:8443" ], - "notBefore" : 0, - "bearerOnly" : false, - "consentRequired" : false, - "standardFlowEnabled" : true, - "implicitFlowEnabled" : false, - "directAccessGrantsEnabled" : true, - "serviceAccountsEnabled" : false, - "publicClient" : true, - "frontchannelLogout" : false, - "protocol" : "openid-connect", - "attributes" : { - "backchannel.logout.session.required" : "true", - "backchannel.logout.revoke.offline.tokens" : "false" - }, - "authenticationFlowBindingOverrides" : { }, - "fullScopeAllowed" : true, - "nodeReRegistrationTimeout" : -1, - "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], - "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] - }, { - "id" : "095fac49-b0b4-4c44-b5b9-fa22bed6d160", - "clientId" : "life-cycle-manager", - "surrogateAuthRequired" : false, - "enabled" : true, - "alwaysDisplayInConsole" : false, - "clientAuthenticatorType" : "client-secret", - "secret" : "0191bfe6-1d93-4d89-b1e4-4b505d348057", - "redirectUris" : [ ], - "webOrigins" : [ ], - "notBefore" : 0, - "bearerOnly" : false, - "consentRequired" : false, - "standardFlowEnabled" : false, - "implicitFlowEnabled" : false, - "directAccessGrantsEnabled" : false, - "serviceAccountsEnabled" : true, - "publicClient" : false, - "frontchannelLogout" : false, - "protocol" : "openid-connect", - "attributes" : { - "saml.assertion.signature" : "false", - "saml.force.post.binding" : "false", - "saml.multivalued.roles" : "false", - "saml.encrypt" : "false", - "backchannel.logout.revoke.offline.tokens" : "false", - "saml.server.signature" : "false", - "saml.server.signature.keyinfo.ext" : "false", - "exclude.session.state.from.auth.response" : "false", - "backchannel.logout.session.required" : "true", - "client_credentials.use_refresh_token" : "false", - "saml_force_name_id_format" : "false", - "saml.client.signature" : "false", - "tls.client.certificate.bound.access.tokens" : "false", - "saml.authnstatement" : "false", - "display.on.consent.screen" : "false", - "saml.onetimeuse.condition" : "false" - }, - "authenticationFlowBindingOverrides" : { }, - "fullScopeAllowed" : true, - "nodeReRegistrationTimeout" : -1, - "protocolMappers" : [ { - "id" : "cdb336c7-b22f-44c6-b30b-9136364b8229", - "name" : "Client IP Address", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientAddress", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientAddress", - "jsonType.label" : "String" - } - }, { - "id" : "3c6e3fe1-37bb-4ef0-a162-720b0d78b3af", - "name" : "Client ID", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientId", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientId", - "jsonType.label" : "String" - } - }, { - "id" : "e39ee5e2-dd4a-4d0e-9fc3-a0a84b200143", - "name" : "Client Host", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientHost", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientHost", - "jsonType.label" : "String" - } - } ], - "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], - "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] - }, { - "id" : "9f7c65f7-9ae9-4c9e-9bd7-971d0cbe146d", - "clientId" : "nl2cnl-translator-client", - "rootUrl" : "https://nl2cnl-translator-dev.192.168.56.1.nip.io:8443/", - "adminUrl" : "https://nl2cnl-translator-dev.192.168.56.1.nip.io:8443/", - "surrogateAuthRequired" : false, - "enabled" : true, - "alwaysDisplayInConsole" : false, - "clientAuthenticatorType" : "client-secret", - "secret" : "b1d1d98d-b5e5-46ac-9b45-30502cfb53ab", - "redirectUris" : [ "https://nl2cnl-translator-dev.192.168.56.1.nip.io:8443/*" ], - "webOrigins" : [ "https://nl2cnl-translator-dev.192.168.56.1.nip.io:8443" ], - "notBefore" : 0, - "bearerOnly" : false, - "consentRequired" : false, - "standardFlowEnabled" : true, - "implicitFlowEnabled" : false, - "directAccessGrantsEnabled" : true, - "serviceAccountsEnabled" : true, - "authorizationServicesEnabled" : true, - "publicClient" : false, - "frontchannelLogout" : false, - "protocol" : "openid-connect", - "attributes" : { - "saml.assertion.signature" : "false", - "saml.force.post.binding" : "false", - "saml.multivalued.roles" : "false", - "saml.encrypt" : "false", - "backchannel.logout.revoke.offline.tokens" : "false", - "saml.server.signature" : "false", - "saml.server.signature.keyinfo.ext" : "false", - "exclude.session.state.from.auth.response" : "false", - "backchannel.logout.session.required" : "true", - "client_credentials.use_refresh_token" : "false", - "saml_force_name_id_format" : "false", - "saml.client.signature" : "false", - "tls.client.certificate.bound.access.tokens" : "false", - "saml.authnstatement" : "false", - "display.on.consent.screen" : "false", - "saml.onetimeuse.condition" : "false" - }, - "authenticationFlowBindingOverrides" : { }, - "fullScopeAllowed" : true, - "nodeReRegistrationTimeout" : -1, - "protocolMappers" : [ { - "id" : "ad2d1f98-62a8-4859-8cce-1ce4034b9920", - "name" : "Client Host", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientHost", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientHost", - "jsonType.label" : "String" - } - }, { - "id" : "480e69e8-ebca-4e89-8d20-24bba626bbce", - "name" : "Client ID", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientId", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientId", - "jsonType.label" : "String" - } - }, { - "id" : "42724a07-f05f-4d65-82cb-b1c2288810d8", - "name" : "Client IP Address", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientAddress", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientAddress", - "jsonType.label" : "String" - } - } ], - "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], - "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ], - "authorizationSettings" : { - "allowRemoteResourceManagement" : true, - "policyEnforcementMode" : "ENFORCING", - "resources" : [ { - "name" : "Default Resource", - "type" : "urn:nl2cnl-translator-client:resources:default", - "ownerManagedAccess" : false, - "attributes" : { }, - "_id" : "cf0de028-f233-4f59-83cb-3d60d34450a3", - "uris" : [ "/*" ] - } ], - "policies" : [ { - "id" : "46935297-5bfb-4a43-b493-b28efe8c863b", - "name" : "Default Policy", - "description" : "A policy that grants access only for users within this realm", - "type" : "js", - "logic" : "POSITIVE", - "decisionStrategy" : "AFFIRMATIVE", - "config" : { - "code" : "// by default, grants any permission associated with this policy\n$evaluation.grant();\n" - } - }, { - "id" : "9cd3da2f-0302-4033-a9ed-36758ffa7730", - "name" : "Default Permission", - "description" : "A permission that applies to the default resource type", - "type" : "resource", - "logic" : "POSITIVE", - "decisionStrategy" : "UNANIMOUS", - "config" : { - "defaultResourceType" : "urn:nl2cnl-translator-client:resources:default", - "applyPolicies" : "[\"Default Policy\"]" - } - } ], - "scopes" : [ ], - "decisionStrategy" : "UNANIMOUS" - } - }, { - "id" : "785a9f77-d06f-4a65-9ba9-341921fda61a", - "clientId" : "raof", - "rootUrl" : "http://risk-assessment-engine-dev.192.168.56.1.nip.io:8443", - "adminUrl" : "http://risk-assessment-engine-dev.192.168.56.1.nip.io:8443", - "surrogateAuthRequired" : false, - "enabled" : true, - "alwaysDisplayInConsole" : false, - "clientAuthenticatorType" : "client-secret", - "secret" : "92d45bca-073b-49e3-8b23-2615f7fcbb3e", - "redirectUris" : [ "http://risk-assessment-engine-dev.192.168.56.1.nip.io:8443/*" ], - "webOrigins" : [ "http://risk-assessment-engine-dev.192.168.56.1.nip.io:8443" ], - "notBefore" : 0, - "bearerOnly" : false, - "consentRequired" : false, - "standardFlowEnabled" : true, - "implicitFlowEnabled" : false, - "directAccessGrantsEnabled" : true, - "serviceAccountsEnabled" : true, - "publicClient" : true, - "frontchannelLogout" : false, - "protocol" : "openid-connect", - "attributes" : { - "saml.assertion.signature" : "false", - "saml.force.post.binding" : "false", - "saml.multivalued.roles" : "false", - "saml.encrypt" : "false", - "backchannel.logout.revoke.offline.tokens" : "false", - "saml.server.signature" : "false", - "saml.server.signature.keyinfo.ext" : "false", - "exclude.session.state.from.auth.response" : "false", - "backchannel.logout.session.required" : "true", - "client_credentials.use_refresh_token" : "false", - "saml_force_name_id_format" : "false", - "saml.client.signature" : "false", - "tls.client.certificate.bound.access.tokens" : "false", - "saml.authnstatement" : "false", - "display.on.consent.screen" : "false", - "saml.onetimeuse.condition" : "false" - }, - "authenticationFlowBindingOverrides" : { }, - "fullScopeAllowed" : true, - "nodeReRegistrationTimeout" : -1, - "protocolMappers" : [ { - "id" : "1fddcb23-2a23-4ce6-acd4-cb48155d9034", - "name" : "Client Host", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientHost", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientHost", - "jsonType.label" : "String" - } - }, { - "id" : "1b88c2af-c338-4cf2-ab8d-69d1a60837a2", - "name" : "Client IP Address", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientAddress", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientAddress", - "jsonType.label" : "String" - } - }, { - "id" : "1c4f9074-9c2a-40bc-b55e-07a4eccfedab", - "name" : "Client ID", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientId", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientId", - "jsonType.label" : "String" - } - } ], - "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], - "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] - }, { - "id" : "b1293ae0-e720-40cb-ae6f-db7fc9b1fe92", - "clientId" : "raof-app", - "rootUrl" : "http://localhost:9000", - "adminUrl" : "http://localhost:9000", - "surrogateAuthRequired" : false, - "enabled" : true, - "alwaysDisplayInConsole" : false, - "clientAuthenticatorType" : "client-secret", - "secret" : "d7ca4514-90bf-40c9-b824-05c78acd9c93", - "redirectUris" : [ "http://localhost:9000/*" ], - "webOrigins" : [ "http://localhost:9000" ], - "notBefore" : 0, - "bearerOnly" : false, - "consentRequired" : false, - "standardFlowEnabled" : true, - "implicitFlowEnabled" : false, - "directAccessGrantsEnabled" : true, - "serviceAccountsEnabled" : true, - "authorizationServicesEnabled" : true, - "publicClient" : false, - "frontchannelLogout" : false, - "protocol" : "openid-connect", - "attributes" : { - "saml.assertion.signature" : "false", - "saml.force.post.binding" : "false", - "saml.multivalued.roles" : "false", - "saml.encrypt" : "false", - "backchannel.logout.revoke.offline.tokens" : "false", - "saml.server.signature" : "false", - "saml.server.signature.keyinfo.ext" : "false", - "exclude.session.state.from.auth.response" : "false", - "backchannel.logout.session.required" : "true", - "client_credentials.use_refresh_token" : "false", - "saml_force_name_id_format" : "false", - "saml.client.signature" : "false", - "tls.client.certificate.bound.access.tokens" : "false", - "saml.authnstatement" : "false", - "display.on.consent.screen" : "false", - "saml.onetimeuse.condition" : "false" - }, - "authenticationFlowBindingOverrides" : { }, - "fullScopeAllowed" : true, - "nodeReRegistrationTimeout" : -1, - "protocolMappers" : [ { - "id" : "76f2834e-94f2-4d8d-9840-d4b363ba7a8b", - "name" : "Client Host", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientHost", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientHost", - "jsonType.label" : "String" - } - }, { - "id" : "8c8a582f-4e95-437f-a9c7-79d6e3f84a78", - "name" : "Client IP Address", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientAddress", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientAddress", - "jsonType.label" : "String" - } - }, { - "id" : "65c739a9-5e22-4825-85bd-0c9b7547a395", - "name" : "Client ID", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientId", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientId", - "jsonType.label" : "String" - } - } ], - "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], - "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ], - "authorizationSettings" : { - "allowRemoteResourceManagement" : true, - "policyEnforcementMode" : "ENFORCING", - "resources" : [ { - "name" : "Default Resource", - "type" : "urn:roaf-app:resources:default", - "ownerManagedAccess" : false, - "attributes" : { }, - "_id" : "83aa363b-796b-4081-b49f-69b88d87f3b2", - "uris" : [ "/*" ] - } ], - "policies" : [ { - "id" : "291bd70b-29f1-4806-9963-ebced36fa800", - "name" : "Default Policy", - "description" : "A policy that grants access only for users within this realm", - "type" : "js", - "logic" : "POSITIVE", - "decisionStrategy" : "AFFIRMATIVE", - "config" : { - "code" : "// by default, grants any permission associated with this policy\n$evaluation.grant();\n" - } - }, { - "id" : "3ba28abc-eeec-48bd-bca9-41b10c38525e", - "name" : "Default Permission", - "description" : "A permission that applies to the default resource type", - "type" : "resource", - "logic" : "POSITIVE", - "decisionStrategy" : "UNANIMOUS", - "config" : { - "defaultResourceType" : "urn:roaf-app:resources:default", - "applyPolicies" : "[\"Default Policy\"]" - } - } ], - "scopes" : [ ], - "decisionStrategy" : "UNANIMOUS" - } - }, { - "id" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", - "clientId" : "realm-management", - "name" : "${client_realm-management}", - "surrogateAuthRequired" : false, - "enabled" : true, - "alwaysDisplayInConsole" : false, - "clientAuthenticatorType" : "client-secret", - "secret" : "eac6413c-b76b-4d1a-b4dc-b217fe77326b", - "redirectUris" : [ ], - "webOrigins" : [ ], - "notBefore" : 0, - "bearerOnly" : true, - "consentRequired" : false, - "standardFlowEnabled" : true, - "implicitFlowEnabled" : false, - "directAccessGrantsEnabled" : false, - "serviceAccountsEnabled" : false, - "publicClient" : false, - "frontchannelLogout" : false, - "protocol" : "openid-connect", - "attributes" : { }, - "authenticationFlowBindingOverrides" : { }, - "fullScopeAllowed" : false, - "nodeReRegistrationTimeout" : 0, - "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], - "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] - }, { - "id" : "7d57284a-3eba-4ceb-8088-b13aeef3df24", - "clientId" : "security-admin-console", - "name" : "${client_security-admin-console}", - "rootUrl" : "${authAdminUrl}", - "baseUrl" : "/admin/medina/console/", - "surrogateAuthRequired" : false, - "enabled" : true, - "alwaysDisplayInConsole" : false, - "clientAuthenticatorType" : "client-secret", - "secret" : "11fb3ec1-97dc-46e4-aee3-7d61493a0184", - "redirectUris" : [ "/admin/medina/console/*" ], - "webOrigins" : [ "+" ], - "notBefore" : 0, - "bearerOnly" : false, - "consentRequired" : false, - "standardFlowEnabled" : true, - "implicitFlowEnabled" : false, - "directAccessGrantsEnabled" : false, - "serviceAccountsEnabled" : false, - "publicClient" : true, - "frontchannelLogout" : false, - "protocol" : "openid-connect", - "attributes" : { - "pkce.code.challenge.method" : "S256" - }, - "authenticationFlowBindingOverrides" : { }, - "fullScopeAllowed" : false, - "nodeReRegistrationTimeout" : 0, - "protocolMappers" : [ { - "id" : "ce06926e-1e52-49b7-86ea-ddfd7665b90b", - "name" : "locale", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usermodel-attribute-mapper", - "consentRequired" : false, - "config" : { - "userinfo.token.claim" : "true", - "user.attribute" : "locale", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "locale", - "jsonType.label" : "String" - } - } ], - "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], - "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] - }, { - "id" : "aa18689d-6d81-4b92-8b9e-291eb4733408", - "clientId" : "wazuh-vat-evidence-collector-dev", - "rootUrl" : "http://wazuh-vat-evidence-collector-dev.192.168.56.1.nip.io:8443/", - "adminUrl" : "http://wazuh-vat-evidence-collector-dev.192.168.56.1.nip.io:8443/", - "surrogateAuthRequired" : false, - "enabled" : true, - "alwaysDisplayInConsole" : false, - "clientAuthenticatorType" : "client-secret", - "secret" : "68dec932-77fc-4322-8089-d64c3a3317bf", - "redirectUris" : [ "http://wazuh-vat-evidence-collector-dev.192.168.56.1.nip.io:8443/*" ], - "webOrigins" : [ "http://wazuh-vat-evidence-collector-dev.192.168.56.1.nip.io:8443" ], - "notBefore" : 0, - "bearerOnly" : false, - "consentRequired" : false, - "standardFlowEnabled" : true, - "implicitFlowEnabled" : false, - "directAccessGrantsEnabled" : true, - "serviceAccountsEnabled" : true, - "authorizationServicesEnabled" : true, - "publicClient" : false, - "frontchannelLogout" : false, - "protocol" : "openid-connect", - "attributes" : { - "saml.assertion.signature" : "false", - "saml.force.post.binding" : "false", - "saml.multivalued.roles" : "false", - "saml.encrypt" : "false", - "backchannel.logout.revoke.offline.tokens" : "false", - "saml.server.signature" : "false", - "saml.server.signature.keyinfo.ext" : "false", - "exclude.session.state.from.auth.response" : "false", - "backchannel.logout.session.required" : "true", - "client_credentials.use_refresh_token" : "false", - "saml_force_name_id_format" : "false", - "saml.client.signature" : "false", - "tls.client.certificate.bound.access.tokens" : "false", - "saml.authnstatement" : "false", - "display.on.consent.screen" : "false", - "saml.onetimeuse.condition" : "false" - }, - "authenticationFlowBindingOverrides" : { }, - "fullScopeAllowed" : true, - "nodeReRegistrationTimeout" : -1, - "protocolMappers" : [ { - "id" : "21e80b89-4ab6-4eb1-b1b1-1a44c133e922", - "name" : "Client IP Address", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientAddress", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientAddress", - "jsonType.label" : "String" - } - }, { - "id" : "f9117947-484b-4486-9299-97a1bac403bc", - "name" : "Client Host", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientHost", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientHost", - "jsonType.label" : "String" - } - }, { - "id" : "a610e8bf-64c2-4c57-ba45-f576d1dbd1b9", - "name" : "Client ID", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientId", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientId", - "jsonType.label" : "String" - } - } ], - "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], - "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ], - "authorizationSettings" : { - "allowRemoteResourceManagement" : true, - "policyEnforcementMode" : "ENFORCING", - "resources" : [ { - "name" : "Default Resource", - "type" : "urn:wazuh-vat-evidence-collector-dev:resources:default", - "ownerManagedAccess" : false, - "attributes" : { }, - "_id" : "9b151dde-64db-48eb-a5c8-1cb76dbda106", - "uris" : [ "/*" ] - } ], - "policies" : [ { - "id" : "ea4d0471-d8e0-4eb3-b978-5e08ed330193", - "name" : "Default Policy", - "description" : "A policy that grants access only for users within this realm", - "type" : "js", - "logic" : "POSITIVE", - "decisionStrategy" : "AFFIRMATIVE", - "config" : { - "code" : "// by default, grants any permission associated with this policy\n$evaluation.grant();\n" - } - }, { - "id" : "d56c4a80-9aea-4527-80b8-fa8736d55cbe", - "name" : "Default Permission", - "description" : "A permission that applies to the default resource type", - "type" : "resource", - "logic" : "POSITIVE", - "decisionStrategy" : "UNANIMOUS", - "config" : { - "defaultResourceType" : "urn:wazuh-vat-evidence-collector-dev:resources:default", - "applyPolicies" : "[\"Default Policy\"]" - } - } ], - "scopes" : [ ], - "decisionStrategy" : "UNANIMOUS" - } - } ], - "clientScopes" : [ { - "id" : "448d9d12-2046-483f-9951-9cfb26270957", - "name" : "address", - "description" : "OpenID Connect built-in scope: address", - "protocol" : "openid-connect", - "attributes" : { - "include.in.token.scope" : "true", - "display.on.consent.screen" : "true", - "consent.screen.text" : "${addressScopeConsentText}" - }, - "protocolMappers" : [ { - "id" : "d9a1907f-8701-4b47-85a8-b7d959c37d52", - "name" : "address", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-address-mapper", - "consentRequired" : false, - "config" : { - "user.attribute.formatted" : "formatted", - "user.attribute.country" : "country", - "user.attribute.postal_code" : "postal_code", - "userinfo.token.claim" : "true", - "user.attribute.street" : "street", - "id.token.claim" : "true", - "user.attribute.region" : "region", - "access.token.claim" : "true", - "user.attribute.locality" : "locality" - } - } ] - }, { - "id" : "275d79c9-b59c-40f6-bea2-ce277f3bb3e0", - "name" : "email", - "description" : "OpenID Connect built-in scope: email", - "protocol" : "openid-connect", - "attributes" : { - "include.in.token.scope" : "true", - "display.on.consent.screen" : "true", - "consent.screen.text" : "${emailScopeConsentText}" - }, - "protocolMappers" : [ { - "id" : "e2e140c5-e12f-4a38-ad55-dbeb73558260", - "name" : "email", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usermodel-property-mapper", - "consentRequired" : false, - "config" : { - "userinfo.token.claim" : "true", - "user.attribute" : "email", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "email", - "jsonType.label" : "String" - } - }, { - "id" : "a22524be-6358-4d93-beaa-38faed65e198", - "name" : "email verified", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usermodel-property-mapper", - "consentRequired" : false, - "config" : { - "userinfo.token.claim" : "true", - "user.attribute" : "emailVerified", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "email_verified", - "jsonType.label" : "boolean" - } - } ] - }, { - "id" : "bbfebad4-3f48-432f-9696-1529017fd411", - "name" : "jhipster", - "description" : "Jhipster specific claims", - "protocol" : "openid-connect", - "attributes" : { - "include.in.token.scope" : "true", - "display.on.consent.screen" : "true" - }, - "protocolMappers" : [ { - "id" : "71c49d92-db9e-4669-b945-a6dd790b8b00", - "name" : "langKey", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usermodel-attribute-mapper", - "consentRequired" : false, - "config" : { - "userinfo.token.claim" : "true", - "user.attribute" : "langKey", - "id.token.claim" : "false", - "access.token.claim" : "false", - "claim.name" : "langKey", - "jsonType.label" : "String" - } - }, { - "id" : "79e9563d-3c27-4cb3-b8c7-cb11bc43ebc9", - "name" : "login", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usermodel-attribute-mapper", - "consentRequired" : false, - "config" : { - "userinfo.token.claim" : "true", - "user.attribute" : "preferred_username", - "id.token.claim" : "false", - "access.token.claim" : "false", - "claim.name" : "login", - "jsonType.label" : "String" - } - }, { - "id" : "d8ce7859-d0c3-4e55-9415-438c81bfdaa2", - "name" : "roles", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usermodel-realm-role-mapper", - "consentRequired" : false, - "config" : { - "multivalued" : "true", - "userinfo.token.claim" : "true", - "id.token.claim" : "false", - "access.token.claim" : "true", - "claim.name" : "roles", - "jsonType.label" : "String" - } - } ] - }, { - "id" : "3dd12f9d-3af5-4757-b89c-4d2a8c448316", - "name" : "microprofile-jwt", - "description" : "Microprofile - JWT built-in scope", - "protocol" : "openid-connect", - "attributes" : { - "include.in.token.scope" : "true", - "display.on.consent.screen" : "false" - }, - "protocolMappers" : [ { - "id" : "995d9d7f-97af-4c01-81d8-8ca11aa34553", - "name" : "groups", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usermodel-realm-role-mapper", - "consentRequired" : false, - "config" : { - "multivalued" : "true", - "user.attribute" : "foo", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "groups", - "jsonType.label" : "String" - } - }, { - "id" : "43df77e9-387b-4f80-bd3e-c2153178ee72", - "name" : "upn", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usermodel-property-mapper", - "consentRequired" : false, - "config" : { - "userinfo.token.claim" : "true", - "user.attribute" : "username", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "upn", - "jsonType.label" : "String" - } - } ] - }, { - "id" : "31c108bb-1587-4373-b46a-7d2f0d7acdba", - "name" : "offline_access", - "description" : "OpenID Connect built-in scope: offline_access", - "protocol" : "openid-connect", - "attributes" : { - "consent.screen.text" : "${offlineAccessScopeConsentText}", - "display.on.consent.screen" : "true" - } - }, { - "id" : "b8b09b9e-6096-46ae-8e90-3cd03d364a0a", - "name" : "phone", - "description" : "OpenID Connect built-in scope: phone", - "protocol" : "openid-connect", - "attributes" : { - "include.in.token.scope" : "true", - "display.on.consent.screen" : "true", - "consent.screen.text" : "${phoneScopeConsentText}" - }, - "protocolMappers" : [ { - "id" : "5464cfbe-e421-4034-8f6a-378e99476bf4", - "name" : "phone number", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usermodel-attribute-mapper", - "consentRequired" : false, - "config" : { - "userinfo.token.claim" : "true", - "user.attribute" : "phoneNumber", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "phone_number", - "jsonType.label" : "String" - } - }, { - "id" : "f8a484ce-7c5f-4562-8d61-ec161e2929f6", - "name" : "phone number verified", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usermodel-attribute-mapper", - "consentRequired" : false, - "config" : { - "userinfo.token.claim" : "true", - "user.attribute" : "phoneNumberVerified", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "phone_number_verified", - "jsonType.label" : "boolean" - } - } ] - }, { - "id" : "b188dc18-eca7-4941-ab04-d3e599e9aa93", - "name" : "profile", - "description" : "OpenID Connect built-in scope: profile", - "protocol" : "openid-connect", - "attributes" : { - "include.in.token.scope" : "true", - "display.on.consent.screen" : "true", - "consent.screen.text" : "${profileScopeConsentText}" - }, - "protocolMappers" : [ { - "id" : "0d52d80c-a7e1-45f9-a16e-1965220474d5", - "name" : "nickname", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usermodel-attribute-mapper", - "consentRequired" : false, - "config" : { - "userinfo.token.claim" : "true", - "user.attribute" : "nickname", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "nickname", - "jsonType.label" : "String" - } - }, { - "id" : "cf0e8f74-1996-4ad1-8bcc-3f331bea4e45", - "name" : "birthdate", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usermodel-attribute-mapper", - "consentRequired" : false, - "config" : { - "userinfo.token.claim" : "true", - "user.attribute" : "birthdate", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "birthdate", - "jsonType.label" : "String" - } - }, { - "id" : "c58346fb-1470-420c-a6cb-c115e833444b", - "name" : "full name", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-full-name-mapper", - "consentRequired" : false, - "config" : { - "id.token.claim" : "true", - "access.token.claim" : "true", - "userinfo.token.claim" : "true" - } - }, { - "id" : "bdfca3bd-1dda-4ebe-993c-ea11c674c919", - "name" : "gender", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usermodel-attribute-mapper", - "consentRequired" : false, - "config" : { - "userinfo.token.claim" : "true", - "user.attribute" : "gender", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "gender", - "jsonType.label" : "String" - } - }, { - "id" : "1299560c-f37d-47d2-96f7-712761cf679a", - "name" : "middle name", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usermodel-attribute-mapper", - "consentRequired" : false, - "config" : { - "userinfo.token.claim" : "true", - "user.attribute" : "middleName", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "middle_name", - "jsonType.label" : "String" - } - }, { - "id" : "c67dab67-c3b4-40c4-91fe-7c9ce61fca5f", - "name" : "zoneinfo", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usermodel-attribute-mapper", - "consentRequired" : false, - "config" : { - "userinfo.token.claim" : "true", - "user.attribute" : "zoneinfo", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "zoneinfo", - "jsonType.label" : "String" - } - }, { - "id" : "8682ba32-def5-4111-b2ab-79cd865844d0", - "name" : "family name", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usermodel-property-mapper", - "consentRequired" : false, - "config" : { - "userinfo.token.claim" : "true", - "user.attribute" : "lastName", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "family_name", - "jsonType.label" : "String" - } - }, { - "id" : "0ee61bf2-d022-420a-aa6d-c7e8bd60e24f", - "name" : "picture", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usermodel-attribute-mapper", - "consentRequired" : false, - "config" : { - "userinfo.token.claim" : "true", - "user.attribute" : "picture", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "picture", - "jsonType.label" : "String" - } - }, { - "id" : "3acdc903-7ceb-40b8-8516-ebbc7874d6e4", - "name" : "given name", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usermodel-property-mapper", - "consentRequired" : false, - "config" : { - "userinfo.token.claim" : "true", - "user.attribute" : "firstName", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "given_name", - "jsonType.label" : "String" - } - }, { - "id" : "d1fe9f83-141c-4c8c-9635-20367c7e5218", - "name" : "locale", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usermodel-attribute-mapper", - "consentRequired" : false, - "config" : { - "userinfo.token.claim" : "true", - "user.attribute" : "locale", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "locale", - "jsonType.label" : "String" - } - }, { - "id" : "502de8c4-4cdf-402b-8453-d407a7b666da", - "name" : "username", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usermodel-property-mapper", - "consentRequired" : false, - "config" : { - "userinfo.token.claim" : "true", - "user.attribute" : "username", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "preferred_username", - "jsonType.label" : "String" - } - }, { - "id" : "1603ac87-6a50-4205-b9b9-4ba4d3224d83", - "name" : "website", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usermodel-attribute-mapper", - "consentRequired" : false, - "config" : { - "userinfo.token.claim" : "true", - "user.attribute" : "website", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "website", - "jsonType.label" : "String" - } - }, { - "id" : "f2c9d6f6-06b7-415a-87b3-c872a26ab921", - "name" : "updated at", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usermodel-attribute-mapper", - "consentRequired" : false, - "config" : { - "userinfo.token.claim" : "true", - "user.attribute" : "updatedAt", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "updated_at", - "jsonType.label" : "String" - } - }, { - "id" : "ee586b78-b33e-4a0b-842f-9bd7059a747a", - "name" : "profile", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usermodel-attribute-mapper", - "consentRequired" : false, - "config" : { - "userinfo.token.claim" : "true", - "user.attribute" : "profile", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "profile", - "jsonType.label" : "String" - } - } ] - }, { - "id" : "83717992-b174-46c3-99f1-1a097b02e99c", - "name" : "role_list", - "description" : "SAML role list", - "protocol" : "saml", - "attributes" : { - "consent.screen.text" : "${samlRoleListScopeConsentText}", - "display.on.consent.screen" : "true" - }, - "protocolMappers" : [ { - "id" : "0c0b8746-2e89-4ede-9ea6-ac76d2c66f33", - "name" : "role list", - "protocol" : "saml", - "protocolMapper" : "saml-role-list-mapper", - "consentRequired" : false, - "config" : { - "single" : "false", - "attribute.nameformat" : "Basic", - "attribute.name" : "Role" - } - } ] - }, { - "id" : "da1df8bb-b502-44fb-94a4-cff04b190a8c", - "name" : "roles", - "description" : "OpenID Connect scope for add user roles to the access token", - "protocol" : "openid-connect", - "attributes" : { - "include.in.token.scope" : "false", - "display.on.consent.screen" : "true", - "consent.screen.text" : "${rolesScopeConsentText}" - }, - "protocolMappers" : [ { - "id" : "cef58889-d64f-4405-a1f9-4978962472aa", - "name" : "realm roles", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usermodel-realm-role-mapper", - "consentRequired" : false, - "config" : { - "user.attribute" : "foo", - "access.token.claim" : "true", - "claim.name" : "realm_access.roles", - "jsonType.label" : "String", - "multivalued" : "true" - } - }, { - "id" : "44e1ccc5-63d0-464f-a88c-535864dba161", - "name" : "audience resolve", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-audience-resolve-mapper", - "consentRequired" : false, - "config" : { } - }, { - "id" : "fc7ab48f-7268-4f85-874c-8b35d00d5fb1", - "name" : "client roles", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usermodel-client-role-mapper", - "consentRequired" : false, - "config" : { - "user.attribute" : "foo", - "access.token.claim" : "true", - "claim.name" : "resource_access.${client_id}.roles", - "jsonType.label" : "String", - "multivalued" : "true" - } - } ] - }, { - "id" : "cab2790d-6362-4d1a-96cb-427e906ea1d0", - "name" : "web-origins", - "description" : "OpenID Connect scope for add allowed web origins to the access token", - "protocol" : "openid-connect", - "attributes" : { - "include.in.token.scope" : "false", - "display.on.consent.screen" : "false", - "consent.screen.text" : "" - }, - "protocolMappers" : [ { - "id" : "e8c45111-ab73-4a68-a793-fdcc71c4f2ad", - "name" : "allowed web origins", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-allowed-origins-mapper", - "consentRequired" : false, - "config" : { } - } ] - } ], - "defaultDefaultClientScopes" : [ "role_list", "profile", "email", "roles", "web-origins" ], - "defaultOptionalClientScopes" : [ "offline_access", "address", "phone", "microprofile-jwt" ], - "browserSecurityHeaders" : { - "contentSecurityPolicyReportOnly" : "", - "xContentTypeOptions" : "nosniff", - "xRobotsTag" : "none", - "xFrameOptions" : "ALLOW-FROM https://integrated-ui-dev.192.168.56.1.nip.io:8443", - "contentSecurityPolicy" : "ADD MANUALLY", - "xXSSProtection" : "1; mode=block", - "strictTransportSecurity" : "max-age=31536000; includeSubDomains" - }, - "smtpServer" : { - "password" : "medinaPassword", - "starttls" : "", - "auth" : "true", - "host" : "smtp.gmail.com", - "from" : "medinatestuser@gmail.com", - "ssl" : "true", - "user" : "medinatestuser@gmail.com" - }, - "eventsEnabled" : false, - "eventsListeners" : [ "jboss-logging" ], - "enabledEventTypes" : [ ], - "adminEventsEnabled" : false, - "adminEventsDetailsEnabled" : false, - "identityProviders" : [ { - "alias" : "oidc", - "displayName" : "Bosch Login", - "internalId" : "0a60d4b9-c19c-4df7-9d55-f27547b90af0", - "providerId" : "oidc", - "enabled" : true, - "updateProfileFirstLoginMode" : "on", - "trustEmail" : false, - "storeToken" : false, - "addReadTokenRoleOnCreate" : false, - "authenticateByDefault" : false, - "linkOnly" : false, - "firstBrokerLoginFlowAlias" : "first broker login", - "config" : { - "userInfoUrl" : "https://stfs.test-bosch.com/adfs/userinfo", - "validateSignature" : "true", - "clientId" : "acfbc2ab-64e4-4b64-ad0e-204ec212cbbf", - "tokenUrl" : "https://stfs.test-bosch.com/adfs/oauth2/token/", - "jwksUrl" : "https://stfs.test-bosch.com/adfs/discovery/keys", - "issuer" : "https://stfs.test-bosch.com/adfs", - "useJwksUrl" : "true", - "authorizationUrl" : "https://stfs.test-bosch.com/adfs/oauth2/authorize/", - "clientAuthMethod" : "client_secret_post", - "disableUserInfo" : "true", - "logoutUrl" : "https://stfs.test-bosch.com/adfs/oauth2/logout", - "syncMode" : "IMPORT", - "clientSecret" : "Iog6MCAS2DoU0tLURqTVOME5p_Fq-LY_eewuOye4" - } - } ], - "identityProviderMappers" : [ { - "id" : "eac64953-04e3-4720-bb21-c09750b6a42a", - "name" : "Default Compliance Manager mapper", - "identityProviderAlias" : "oidc", - "identityProviderMapper" : "oidc-hardcoded-role-idp-mapper", - "config" : { - "syncMode" : "INHERIT", - "role" : "Compliance Manager" - } - } ], - "components" : { - "org.keycloak.services.clientregistration.policy.ClientRegistrationPolicy" : [ { - "id" : "fbccf871-d01e-4d47-99d0-3bdce3bfa12c", - "name" : "Allowed Client Scopes", - "providerId" : "allowed-client-templates", - "subType" : "anonymous", - "subComponents" : { }, - "config" : { - "allow-default-scopes" : [ "true" ] - } - }, { - "id" : "611a0a79-84c4-4d2d-9d11-01eb58141a46", - "name" : "Trusted Hosts", - "providerId" : "trusted-hosts", - "subType" : "anonymous", - "subComponents" : { }, - "config" : { - "host-sending-registration-request-must-match" : [ "true" ], - "client-uris-must-match" : [ "true" ] - } - }, { - "id" : "2124ff56-7c6f-4095-ba92-ae335222f88c", - "name" : "Full Scope Disabled", - "providerId" : "scope", - "subType" : "anonymous", - "subComponents" : { }, - "config" : { } - }, { - "id" : "b8f02611-098d-402f-90a6-a1f09afcdb22", - "name" : "Allowed Protocol Mapper Types", - "providerId" : "allowed-protocol-mappers", - "subType" : "anonymous", - "subComponents" : { }, - "config" : { - "allowed-protocol-mapper-types" : [ "oidc-sha256-pairwise-sub-mapper", "saml-role-list-mapper", "saml-user-property-mapper", "saml-user-attribute-mapper", "oidc-usermodel-property-mapper", "oidc-address-mapper", "oidc-usermodel-attribute-mapper", "oidc-full-name-mapper" ] - } - }, { - "id" : "cca940dd-d866-44db-a211-0ed1bc682ae7", - "name" : "Allowed Protocol Mapper Types", - "providerId" : "allowed-protocol-mappers", - "subType" : "authenticated", - "subComponents" : { }, - "config" : { - "allowed-protocol-mapper-types" : [ "oidc-full-name-mapper", "oidc-usermodel-property-mapper", "saml-role-list-mapper", "oidc-address-mapper", "saml-user-property-mapper", "saml-user-attribute-mapper", "oidc-sha256-pairwise-sub-mapper", "oidc-usermodel-attribute-mapper" ] - } - }, { - "id" : "dfb48f4f-8760-419e-9337-15eb81a41fdb", - "name" : "Max Clients Limit", - "providerId" : "max-clients", - "subType" : "anonymous", - "subComponents" : { }, - "config" : { - "max-clients" : [ "200" ] - } - }, { - "id" : "dfbcfdd0-4628-4a27-927a-4a476017ca56", - "name" : "Allowed Client Scopes", - "providerId" : "allowed-client-templates", - "subType" : "authenticated", - "subComponents" : { }, - "config" : { - "allow-default-scopes" : [ "true" ] - } - }, { - "id" : "cb8bff43-35e8-4fbc-9758-02da2892008d", - "name" : "Consent Required", - "providerId" : "consent-required", - "subType" : "anonymous", - "subComponents" : { }, - "config" : { } - } ], - "org.keycloak.keys.KeyProvider" : [ { - "id" : "4fcc8a9a-8dac-4051-8c34-748bf12d011d", - "name" : "rsa-generated", - "providerId" : "rsa-generated", - "subComponents" : { }, - "config" : { - "privateKey" : [ "MIIEpAIBAAKCAQEAqpMWsm7G85cM6j1jJCxmM6UAssq+oVsfdFUNEXJPpjy4FGRo4cIzaSPjqLAHn1xrBY4wWoPQU+4h2RRurXw0ELLhCIy+LIfUU0djB/5v0s5vqzaj/v8nSKQuKT2NY04b1oNTSeUuL1/sopo8ZcvtOdD2gTlVE2qDQJvJuKxIK9D4r2h2E7Kh7GwI0VIuywi0Ehdbwm21LTZlcrrmNu1pzN8oodjz0uYRIQ/p+AJCa0b+RhFQWN40XTmW1hmERE/J21ZK8sMcmO0vKcg5v2yzDOMQUcTMVVA1MHER8Q08yTYWmyQNP6E3xobVhqwCeClzcNCw1SdNfOVTuqCiZOWQWQIDAQABAoIBAEhcYbKMYAYSPD5akGZWF30tMGCotboJyAw30HVoQvXIqGauOfgbxGeD/B4hnvox4IzYxxZ++K/CQ8Wtb05VdFjpKaHQ4xRNAvvZOt+3RoTtYl4FrgiNAYNFcve3zvUju5eC2qBsgu1CCkbom1qr6hUu2oPzaG32L3wHGsom++7p4YE7FAzfqrEhntlVouMf9oW2477823gcr4LtX3tz2uIw8ZtSGsAxPGWfunxtX9qTgEVzXUFYou94fn7u6vRbRKSqq/udjQcSRaPzdrdto98oH6Y+3rm0PKj5sTkJf8SJHJFCPTgIgnG/7VZm8ZVJAoGLLUGzNC6pgEFdYjDmhSkCgYEA+mQYOKF6f8c5axsrUXtHHoWKYjZCXnWCH+P+DJQAHFSvdPAZgLJ6odKS8tFhujh8murE5WGsVkXxqZOHwXqBHrWrpJhfO8otHPEklhjn2MAhrxWxHEVokdUJjfUzoK0S6RVni/4hZIFkj3322lW7KXdSoeM5dfe9hFKxYM8G+jMCgYEArmVGSJtOzrIAzRZCmMwXwW/rV9Hi8QQOJRy8IM5zLvQutZa3RbqGPjOnq8XjsT98L6w4tM6WsTXWmGxOKDFzPhtg3pxz0ghFC895WaDqz1EL3Wjzp0p1a0mqo8zA+vOh9h+0YQs649eOPHkdr5AvMqenpxIwhu7nG0WOK+OKl0MCgYEAzcYiza+PP6GXg3kxkWYRnXi7sFjNFFnX1aOF7gpXSPEjvKNxIf4LoB+w2lLO0L6JULstkyFBAym6H9V5lLy7jmRYqgz6/uT5TDa1DZFsQAot5HicNBKqjGaa0oo3oo155AnOLhNsl+9qmC46B1a7WKmSRC6700IFAtD+qwOYxVcCgYB1892ToietOUu9ar7kZbXziWUd4sGhzeJbS5Iahkf1jAZDn4qZyMyfKYTQc2nLKmsuO0enUsstVIKuWSKLoNaXPSFJr3vOpPU+RbeH3YSzb9eciy2xCnVceVjGrOghU8NJmqv/rv7Ht7VmRWzEn7qsgiSspWrY+KCrG2JLYP0NzQKBgQDtcbX43N7aGMs/wP2Y/PDoTPeIB6f0+D7rdoHBmK6nUxQ9V70uAyYC4WtJudrKkVKUKAK8oOgbD2Qne2t02pbYKxQQDyBGQObuyC28fA5DHl9F8j6jx2u+He1s23V9HZhxj36TOVIjdjctRCDGTg32RMLGZlli0St2hK9EWSrUvQ==" ], - "certificate" : [ "MIICmzCCAYMCBgF/LGg1XzANBgkqhkiG9w0BAQsFADARMQ8wDQYDVQQDDAZtZWRpbmEwHhcNMjIwMjI0MTU0MzIxWhcNMzIwMjI0MTU0NTAxWjARMQ8wDQYDVQQDDAZtZWRpbmEwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCqkxaybsbzlwzqPWMkLGYzpQCyyr6hWx90VQ0Rck+mPLgUZGjhwjNpI+OosAefXGsFjjBag9BT7iHZFG6tfDQQsuEIjL4sh9RTR2MH/m/Szm+rNqP+/ydIpC4pPY1jThvWg1NJ5S4vX+yimjxly+050PaBOVUTaoNAm8m4rEgr0PivaHYTsqHsbAjRUi7LCLQSF1vCbbUtNmVyuuY27WnM3yih2PPS5hEhD+n4AkJrRv5GEVBY3jRdOZbWGYRET8nbVkrywxyY7S8pyDm/bLMM4xBRxMxVUDUwcRHxDTzJNhabJA0/oTfGhtWGrAJ4KXNw0LDVJ0185VO6oKJk5ZBZAgMBAAEwDQYJKoZIhvcNAQELBQADggEBAD7yJ2HegJ3/LzAmn/JIDXH1qfZ2DgGyfFQk82tWmFnsxVaLrv0sehS7Ufza5JRsudmzL6I8LHTgYuS1zyDZ1kmEB4gIpmw+ZI4M+isIpuzGRz8B3t2y3jOnEKjykjTWWYQrINYQiqPKU8LSFwe+Uqtcqga0TqgZ2fO8tkeP74a7JVk1hd4JD50shuPIInPx5PfqN7xAUebyPeJk91RQVC4tSpIIlFyd13MFQOzocj9uB685SE6DT3vjguYod6tv7JIUme0+JZIhd67hBlZS71ebL2B0gcX7+9jKZi3oeGFX+2k5CWCHZUf7KBvY3WaxxZTlFCtRcNbWKkMUmVTjRJ8=" ], - "priority" : [ "100" ] - } - }, { - "id" : "025383fb-ebfe-4e5d-b82e-ada254fff0fc", - "name" : "hmac-generated", - "providerId" : "hmac-generated", - "subComponents" : { }, - "config" : { - "kid" : [ "672cf3de-8a6e-43a9-bbb3-3b4cda7477a5" ], - "secret" : [ "lxJLgn2fZb9sMr0OZOzv98PC9GZWRJRGrNP86lb99Ded4XqqVXPU5HGxdn6RCxXdJxZyydNbrCnzDhZSpYLJDw" ], - "priority" : [ "100" ], - "algorithm" : [ "HS256" ] - } - }, { - "id" : "9e25e190-e32d-4bc8-9c9d-f5683ba8d2c3", - "name" : "aes-generated", - "providerId" : "aes-generated", - "subComponents" : { }, - "config" : { - "kid" : [ "5fe1d9fe-f688-4e7b-8871-176b5cf97cd4" ], - "secret" : [ "o_z-vBEGNLSgbqxfgun_sg" ], - "priority" : [ "100" ] - } - } ] - }, - "internationalizationEnabled" : false, - "supportedLocales" : [ ], - "authenticationFlows" : [ { - "id" : "354f002d-8a77-4e21-bd29-5c1fc8685a0f", - "alias" : "Account verification options", - "description" : "Method with which to verity the existing account", - "providerId" : "basic-flow", - "topLevel" : false, - "builtIn" : true, - "authenticationExecutions" : [ { - "authenticator" : "idp-email-verification", - "requirement" : "ALTERNATIVE", - "priority" : 10, - "userSetupAllowed" : false, - "autheticatorFlow" : false - }, { - "requirement" : "ALTERNATIVE", - "priority" : 20, - "flowAlias" : "Verify Existing Account by Re-authentication", - "userSetupAllowed" : false, - "autheticatorFlow" : true - } ] - }, { - "id" : "9882e4d3-d9cd-4af1-bfe8-a8f73a1fa086", - "alias" : "Authentication Options", - "description" : "Authentication options.", - "providerId" : "basic-flow", - "topLevel" : false, - "builtIn" : true, - "authenticationExecutions" : [ { - "authenticator" : "basic-auth", - "requirement" : "REQUIRED", - "priority" : 10, - "userSetupAllowed" : false, - "autheticatorFlow" : false - }, { - "authenticator" : "basic-auth-otp", - "requirement" : "DISABLED", - "priority" : 20, - "userSetupAllowed" : false, - "autheticatorFlow" : false - }, { - "authenticator" : "auth-spnego", - "requirement" : "DISABLED", - "priority" : 30, - "userSetupAllowed" : false, - "autheticatorFlow" : false - } ] - }, { - "id" : "8e0d8a31-5418-47ab-befb-afeb7abf9322", - "alias" : "Browser - Conditional OTP", - "description" : "Flow to determine if the OTP is required for the authentication", - "providerId" : "basic-flow", - "topLevel" : false, - "builtIn" : true, - "authenticationExecutions" : [ { - "authenticator" : "conditional-user-configured", - "requirement" : "REQUIRED", - "priority" : 10, - "userSetupAllowed" : false, - "autheticatorFlow" : false - }, { - "authenticator" : "auth-otp-form", - "requirement" : "REQUIRED", - "priority" : 20, - "userSetupAllowed" : false, - "autheticatorFlow" : false - } ] - }, { - "id" : "676fcbe9-45bb-4455-9f12-0593ff40176f", - "alias" : "Direct Grant - Conditional OTP", - "description" : "Flow to determine if the OTP is required for the authentication", - "providerId" : "basic-flow", - "topLevel" : false, - "builtIn" : true, - "authenticationExecutions" : [ { - "authenticator" : "conditional-user-configured", - "requirement" : "REQUIRED", - "priority" : 10, - "userSetupAllowed" : false, - "autheticatorFlow" : false - }, { - "authenticator" : "direct-grant-validate-otp", - "requirement" : "REQUIRED", - "priority" : 20, - "userSetupAllowed" : false, - "autheticatorFlow" : false - } ] - }, { - "id" : "c1bca04e-0854-4c03-8386-3877bb028606", - "alias" : "First broker login - Conditional OTP", - "description" : "Flow to determine if the OTP is required for the authentication", - "providerId" : "basic-flow", - "topLevel" : false, - "builtIn" : true, - "authenticationExecutions" : [ { - "authenticator" : "conditional-user-configured", - "requirement" : "REQUIRED", - "priority" : 10, - "userSetupAllowed" : false, - "autheticatorFlow" : false - }, { - "authenticator" : "auth-otp-form", - "requirement" : "REQUIRED", - "priority" : 20, - "userSetupAllowed" : false, - "autheticatorFlow" : false - } ] - }, { - "id" : "4b63e991-30c5-4679-973a-0ee570dd9638", - "alias" : "Handle Existing Account", - "description" : "Handle what to do if there is existing account with same email/username like authenticated identity provider", - "providerId" : "basic-flow", - "topLevel" : false, - "builtIn" : true, - "authenticationExecutions" : [ { - "authenticator" : "idp-confirm-link", - "requirement" : "REQUIRED", - "priority" : 10, - "userSetupAllowed" : false, - "autheticatorFlow" : false - }, { - "requirement" : "REQUIRED", - "priority" : 20, - "flowAlias" : "Account verification options", - "userSetupAllowed" : false, - "autheticatorFlow" : true - } ] - }, { - "id" : "a106d5a7-3b1e-4325-a1a6-2f2a0eeedd62", - "alias" : "Reset - Conditional OTP", - "description" : "Flow to determine if the OTP should be reset or not. Set to REQUIRED to force.", - "providerId" : "basic-flow", - "topLevel" : false, - "builtIn" : true, - "authenticationExecutions" : [ { - "authenticator" : "conditional-user-configured", - "requirement" : "REQUIRED", - "priority" : 10, - "userSetupAllowed" : false, - "autheticatorFlow" : false - }, { - "authenticator" : "reset-otp", - "requirement" : "REQUIRED", - "priority" : 20, - "userSetupAllowed" : false, - "autheticatorFlow" : false - } ] - }, { - "id" : "d47a6e57-0348-4266-a214-89d44297aead", - "alias" : "User creation or linking", - "description" : "Flow for the existing/non-existing user alternatives", - "providerId" : "basic-flow", - "topLevel" : false, - "builtIn" : true, - "authenticationExecutions" : [ { - "authenticatorConfig" : "create unique user config", - "authenticator" : "idp-create-user-if-unique", - "requirement" : "ALTERNATIVE", - "priority" : 10, - "userSetupAllowed" : false, - "autheticatorFlow" : false - }, { - "requirement" : "ALTERNATIVE", - "priority" : 20, - "flowAlias" : "Handle Existing Account", - "userSetupAllowed" : false, - "autheticatorFlow" : true - } ] - }, { - "id" : "245da857-b7af-437c-88d4-7398b3d2d45a", - "alias" : "Verify Existing Account by Re-authentication", - "description" : "Reauthentication of existing account", - "providerId" : "basic-flow", - "topLevel" : false, - "builtIn" : true, - "authenticationExecutions" : [ { - "authenticator" : "idp-username-password-form", - "requirement" : "REQUIRED", - "priority" : 10, - "userSetupAllowed" : false, - "autheticatorFlow" : false - }, { - "requirement" : "CONDITIONAL", - "priority" : 20, - "flowAlias" : "First broker login - Conditional OTP", - "userSetupAllowed" : false, - "autheticatorFlow" : true - } ] - }, { - "id" : "de6e0cd8-a95c-4023-9e6c-c77fe186db35", - "alias" : "browser", - "description" : "browser based authentication", - "providerId" : "basic-flow", - "topLevel" : true, - "builtIn" : true, - "authenticationExecutions" : [ { - "authenticator" : "auth-cookie", - "requirement" : "ALTERNATIVE", - "priority" : 10, - "userSetupAllowed" : false, - "autheticatorFlow" : false - }, { - "authenticator" : "auth-spnego", - "requirement" : "DISABLED", - "priority" : 20, - "userSetupAllowed" : false, - "autheticatorFlow" : false - }, { - "authenticator" : "identity-provider-redirector", - "requirement" : "ALTERNATIVE", - "priority" : 25, - "userSetupAllowed" : false, - "autheticatorFlow" : false - }, { - "requirement" : "ALTERNATIVE", - "priority" : 30, - "flowAlias" : "forms", - "userSetupAllowed" : false, - "autheticatorFlow" : true - } ] - }, { - "id" : "f6c25350-2637-4086-b681-60e5151ac98d", - "alias" : "clients", - "description" : "Base authentication for clients", - "providerId" : "client-flow", - "topLevel" : true, - "builtIn" : true, - "authenticationExecutions" : [ { - "authenticator" : "client-secret", - "requirement" : "ALTERNATIVE", - "priority" : 10, - "userSetupAllowed" : false, - "autheticatorFlow" : false - }, { - "authenticator" : "client-jwt", - "requirement" : "ALTERNATIVE", - "priority" : 20, - "userSetupAllowed" : false, - "autheticatorFlow" : false - }, { - "authenticator" : "client-secret-jwt", - "requirement" : "ALTERNATIVE", - "priority" : 30, - "userSetupAllowed" : false, - "autheticatorFlow" : false - }, { - "authenticator" : "client-x509", - "requirement" : "ALTERNATIVE", - "priority" : 40, - "userSetupAllowed" : false, - "autheticatorFlow" : false - } ] - }, { - "id" : "aed0a710-7542-4431-8d52-0bb12b3a2df5", - "alias" : "direct grant", - "description" : "OpenID Connect Resource Owner Grant", - "providerId" : "basic-flow", - "topLevel" : true, - "builtIn" : true, - "authenticationExecutions" : [ { - "authenticator" : "direct-grant-validate-username", - "requirement" : "REQUIRED", - "priority" : 10, - "userSetupAllowed" : false, - "autheticatorFlow" : false - }, { - "authenticator" : "direct-grant-validate-password", - "requirement" : "REQUIRED", - "priority" : 20, - "userSetupAllowed" : false, - "autheticatorFlow" : false - }, { - "requirement" : "CONDITIONAL", - "priority" : 30, - "flowAlias" : "Direct Grant - Conditional OTP", - "userSetupAllowed" : false, - "autheticatorFlow" : true - } ] - }, { - "id" : "9d5ea5e5-6e65-47bc-b105-9a1a1bebac11", - "alias" : "docker auth", - "description" : "Used by Docker clients to authenticate against the IDP", - "providerId" : "basic-flow", - "topLevel" : true, - "builtIn" : true, - "authenticationExecutions" : [ { - "authenticator" : "docker-http-basic-authenticator", - "requirement" : "REQUIRED", - "priority" : 10, - "userSetupAllowed" : false, - "autheticatorFlow" : false - } ] - }, { - "id" : "8660561d-943b-4b20-9c6a-7ac9e4ca00e5", - "alias" : "first broker login", - "description" : "Actions taken after first broker login with identity provider account, which is not yet linked to any Keycloak account", - "providerId" : "basic-flow", - "topLevel" : true, - "builtIn" : true, - "authenticationExecutions" : [ { - "authenticatorConfig" : "review profile config", - "authenticator" : "idp-review-profile", - "requirement" : "REQUIRED", - "priority" : 10, - "userSetupAllowed" : false, - "autheticatorFlow" : false - }, { - "requirement" : "REQUIRED", - "priority" : 20, - "flowAlias" : "User creation or linking", - "userSetupAllowed" : false, - "autheticatorFlow" : true - } ] - }, { - "id" : "75c3dc38-54e0-4421-8ab2-0c590437d0c5", - "alias" : "forms", - "description" : "Username, password, otp and other auth forms.", - "providerId" : "basic-flow", - "topLevel" : false, - "builtIn" : true, - "authenticationExecutions" : [ { - "authenticator" : "auth-username-password-form", - "requirement" : "REQUIRED", - "priority" : 10, - "userSetupAllowed" : false, - "autheticatorFlow" : false - }, { - "requirement" : "CONDITIONAL", - "priority" : 20, - "flowAlias" : "Browser - Conditional OTP", - "userSetupAllowed" : false, - "autheticatorFlow" : true - } ] - }, { - "id" : "4c848397-5bfd-4a05-9ce1-b3ee4c655d52", - "alias" : "http challenge", - "description" : "An authentication flow based on challenge-response HTTP Authentication Schemes", - "providerId" : "basic-flow", - "topLevel" : true, - "builtIn" : true, - "authenticationExecutions" : [ { - "authenticator" : "no-cookie-redirect", - "requirement" : "REQUIRED", - "priority" : 10, - "userSetupAllowed" : false, - "autheticatorFlow" : false - }, { - "requirement" : "REQUIRED", - "priority" : 20, - "flowAlias" : "Authentication Options", - "userSetupAllowed" : false, - "autheticatorFlow" : true - } ] - }, { - "id" : "9e6bae92-80ac-4714-ab65-708dc1c08d4e", - "alias" : "registration", - "description" : "registration flow", - "providerId" : "basic-flow", - "topLevel" : true, - "builtIn" : true, - "authenticationExecutions" : [ { - "authenticator" : "registration-page-form", - "requirement" : "REQUIRED", - "priority" : 10, - "flowAlias" : "registration form", - "userSetupAllowed" : false, - "autheticatorFlow" : true - } ] - }, { - "id" : "7ca21b11-88fc-44a6-915a-6690086d51fa", - "alias" : "registration form", - "description" : "registration form", - "providerId" : "form-flow", - "topLevel" : false, - "builtIn" : true, - "authenticationExecutions" : [ { - "authenticator" : "registration-user-creation", - "requirement" : "REQUIRED", - "priority" : 20, - "userSetupAllowed" : false, - "autheticatorFlow" : false - }, { - "authenticator" : "registration-profile-action", - "requirement" : "REQUIRED", - "priority" : 40, - "userSetupAllowed" : false, - "autheticatorFlow" : false - }, { - "authenticator" : "registration-password-action", - "requirement" : "REQUIRED", - "priority" : 50, - "userSetupAllowed" : false, - "autheticatorFlow" : false - }, { - "authenticator" : "registration-recaptcha-action", - "requirement" : "DISABLED", - "priority" : 60, - "userSetupAllowed" : false, - "autheticatorFlow" : false - } ] - }, { - "id" : "91b8df64-8790-4cc7-916a-549144cd1cb1", - "alias" : "reset credentials", - "description" : "Reset credentials for a user if they forgot their password or something", - "providerId" : "basic-flow", - "topLevel" : true, - "builtIn" : true, - "authenticationExecutions" : [ { - "authenticator" : "reset-credentials-choose-user", - "requirement" : "REQUIRED", - "priority" : 10, - "userSetupAllowed" : false, - "autheticatorFlow" : false - }, { - "authenticator" : "reset-credential-email", - "requirement" : "REQUIRED", - "priority" : 20, - "userSetupAllowed" : false, - "autheticatorFlow" : false - }, { - "authenticator" : "reset-password", - "requirement" : "REQUIRED", - "priority" : 30, - "userSetupAllowed" : false, - "autheticatorFlow" : false - }, { - "requirement" : "CONDITIONAL", - "priority" : 40, - "flowAlias" : "Reset - Conditional OTP", - "userSetupAllowed" : false, - "autheticatorFlow" : true - } ] - }, { - "id" : "15dce0c8-895b-4e06-a405-707be49326b5", - "alias" : "saml ecp", - "description" : "SAML ECP Profile Authentication Flow", - "providerId" : "basic-flow", - "topLevel" : true, - "builtIn" : true, - "authenticationExecutions" : [ { - "authenticator" : "http-basic-authenticator", - "requirement" : "REQUIRED", - "priority" : 10, - "userSetupAllowed" : false, - "autheticatorFlow" : false - } ] - } ], - "authenticatorConfig" : [ { - "id" : "a538254e-ef65-4316-b432-2b9f37b842a0", - "alias" : "create unique user config", - "config" : { - "require.password.update.after.registration" : "false" - } - }, { - "id" : "218ba7cc-4f94-4782-802c-819ee6054f56", - "alias" : "review profile config", - "config" : { - "update.profile.on.first.login" : "missing" - } - } ], - "requiredActions" : [ { - "alias" : "CONFIGURE_TOTP", - "name" : "Configure OTP", - "providerId" : "CONFIGURE_TOTP", - "enabled" : true, - "defaultAction" : false, - "priority" : 10, - "config" : { } - }, { - "alias" : "terms_and_conditions", - "name" : "Terms and Conditions", - "providerId" : "terms_and_conditions", - "enabled" : false, - "defaultAction" : false, - "priority" : 20, - "config" : { } - }, { - "alias" : "UPDATE_PASSWORD", - "name" : "Update Password", - "providerId" : "UPDATE_PASSWORD", - "enabled" : true, - "defaultAction" : false, - "priority" : 30, - "config" : { } - }, { - "alias" : "UPDATE_PROFILE", - "name" : "Update Profile", - "providerId" : "UPDATE_PROFILE", - "enabled" : true, - "defaultAction" : false, - "priority" : 40, - "config" : { } - }, { - "alias" : "VERIFY_EMAIL", - "name" : "Verify Email", - "providerId" : "VERIFY_EMAIL", - "enabled" : true, - "defaultAction" : false, - "priority" : 50, - "config" : { } - }, { - "alias" : "delete_account", - "name" : "Delete Account", - "providerId" : "delete_account", - "enabled" : false, - "defaultAction" : false, - "priority" : 60, - "config" : { } - }, { - "alias" : "update_user_locale", - "name" : "Update User Locale", - "providerId" : "update_user_locale", - "enabled" : true, - "defaultAction" : false, - "priority" : 1000, - "config" : { } - } ], - "browserFlow" : "browser", - "registrationFlow" : "registration", - "directGrantFlow" : "direct grant", - "resetCredentialsFlow" : "reset credentials", - "clientAuthenticationFlow" : "clients", - "dockerAuthenticationFlow" : "docker auth", - "attributes" : { - "clientOfflineSessionMaxLifespan" : "0", - "clientSessionIdleTimeout" : "0", - "clientSessionMaxLifespan" : "0", - "frontendUrl" : "", - "clientOfflineSessionIdleTimeout" : "0" - }, - "keycloakVersion" : "12.0.4", - "userManagedAccessAllowed" : false +{ + "id" : "medina", + "realm" : "medina", + "displayName" : "", + "notBefore" : 1674222044, + "revokeRefreshToken" : false, + "refreshTokenMaxReuse" : 0, + "accessTokenLifespan" : 300, + "accessTokenLifespanForImplicitFlow" : 900, + "ssoSessionIdleTimeout" : 7200, + "ssoSessionMaxLifespan" : 36000, + "ssoSessionIdleTimeoutRememberMe" : 0, + "ssoSessionMaxLifespanRememberMe" : 0, + "offlineSessionIdleTimeout" : 2592000, + "offlineSessionMaxLifespanEnabled" : false, + "offlineSessionMaxLifespan" : 5184000, + "clientSessionIdleTimeout" : 0, + "clientSessionMaxLifespan" : 0, + "clientOfflineSessionIdleTimeout" : 0, + "clientOfflineSessionMaxLifespan" : 0, + "accessCodeLifespan" : 60, + "accessCodeLifespanUserAction" : 300, + "accessCodeLifespanLogin" : 1800, + "actionTokenGeneratedByAdminLifespan" : 43200, + "actionTokenGeneratedByUserLifespan" : 300, + "enabled" : true, + "sslRequired" : "external", + "registrationAllowed" : false, + "registrationEmailAsUsername" : false, + "rememberMe" : false, + "verifyEmail" : false, + "loginWithEmailAllowed" : true, + "duplicateEmailsAllowed" : false, + "resetPasswordAllowed" : false, + "editUsernameAllowed" : false, + "bruteForceProtected" : false, + "permanentLockout" : false, + "maxFailureWaitSeconds" : 900, + "minimumQuickLoginWaitSeconds" : 60, + "waitIncrementSeconds" : 60, + "quickLoginCheckMilliSeconds" : 1000, + "maxDeltaTimeSeconds" : 43200, + "failureFactor" : 30, + "roles" : { + "realm" : [ { + "id" : "2f6015a8-ddee-42f9-99c5-4760bd5fb5c7", + "name" : "ROLE_USER", + "description" : "temporary role for catalogue jhipster", + "composite" : false, + "clientRole" : false, + "containerId" : "medina", + "attributes" : { } + }, { + "id" : "9d96522b-ff58-498d-ad7f-11a747bd924e", + "name" : "offline_access", + "description" : "${role_offline-access}", + "composite" : false, + "clientRole" : false, + "containerId" : "medina", + "attributes" : { } + }, { + "id" : "417a650d-7309-41d2-aecd-cd179c656c65", + "name" : "Auditor", + "description" : "The Conformity Assessment Body (CAB) is a body that performs conformity assessment services with the goal of demonstrating that specified requirements are fulfilled.", + "composite" : true, + "composites" : { + "client" : { + "clouditor-orchestrator" : [ "Create", "Delete", "Read", "Update" ], + "api-swagger" : [ "user", "test-fake-role" ], + "integrated-ui" : [ "showCCE", "user", "showUser", "showOrchestrator", "admin" ] + } + }, + "clientRole" : false, + "containerId" : "medina", + "attributes" : { } + }, { + "id" : "aba5b760-352b-493c-8c2b-86657d5852aa", + "name" : "SecurityGovernance", + "description" : "IT Security Governance (UC1) - Its main objective is the protection of Bosch business models, products, services, and data.", + "composite" : true, + "composites" : { + "client" : { + "integrated-ui" : [ "showSATRA", "showCCE", "showAMOE", "showUser", "showCNL", "showCatalogue", "showOrchestrator", "admin" ] + } + }, + "clientRole" : false, + "containerId" : "medina", + "attributes" : { } + }, { + "id" : "9d2b69b9-28c2-4c79-bc75-316100a7027e", + "name" : "SecurityAnalyst", + "description" : "Security Analyst (UC1) - Responsible for ensuring that the Bosch Group’s digital assets and sensitive information are protected as well as evaluating and reporting on the efficiency of the security policies in place.", + "composite" : false, + "clientRole" : false, + "containerId" : "medina", + "attributes" : { } + }, { + "id" : "dca59f95-5177-4721-92b4-b817c7c5d423", + "name" : "ProductOwner", + "description" : "Product and Service Owner (UC1) - The Product & Service Owner is the central point of contact for all questions concerning a specific Bosch IT product or service.", + "composite" : true, + "composites" : { + "client" : { + "integrated-ui" : [ "showSATRA", "showCCE", "showAMOE", "user", "showUser", "showCNL", "showCatalogue", "showOrchestrator", "admin" ] + } + }, + "clientRole" : false, + "containerId" : "medina", + "attributes" : { } + }, { + "id" : "0f08df2b-4b64-487c-9e51-2580a02ae0ef", + "name" : "Customer", + "description" : "The customer is either a company consuming cloud products or services (B2B, business-to-business context), or an individual (B2C, business-to-customer context).", + "composite" : false, + "clientRole" : false, + "containerId" : "medina", + "attributes" : { } + }, { + "id" : "dac0890c-0957-40ed-b72f-37ca91a59d6e", + "name" : "Company", + "description" : "Most of the defined roles are employed by the company. Products of company are being audited", + "composite" : true, + "composites" : { + "client" : { + "integrated-ui" : [ "showSATRA", "showCCE", "showAMOE", "user", "showUser", "showCNL", "showCatalogue", "showOrchestrator" ] + } + }, + "clientRole" : false, + "containerId" : "medina", + "attributes" : { } + }, { + "id" : "f4c52c7f-c34d-4101-8c11-523dbc526d72", + "name" : "ICO", + "description" : "Internal Control Owner - Responsible for creating internal controls. Executing the internal controls.", + "composite" : false, + "clientRole" : false, + "containerId" : "medina", + "attributes" : { } + }, { + "id" : "a73d220e-2c6b-4451-a80d-7689f6722884", + "name" : "ProductSecurityEng", + "description" : "Product (Security) Engineer (UC1) - Oversees the build, deploy, and run of a product and its system components.", + "composite" : true, + "composites" : { + "client" : { + "integrated-ui" : [ "showSATRA", "showCCE", "showAMOE", "user", "showUser", "showCNL", "showCatalogue", "showOrchestrator", "admin" ] + } + }, + "clientRole" : false, + "containerId" : "medina", + "attributes" : { } + }, { + "id" : "ec325a48-83c2-4b16-96be-305dc4767132", + "name" : "uma_authorization", + "description" : "${role_uma_authorization}", + "composite" : false, + "clientRole" : false, + "containerId" : "medina", + "attributes" : { } + }, { + "id" : "a45d5e5d-b5a5-4a2d-8026-a2371ad84577", + "name" : "DomainGovernance", + "description" : "Domain Governance (UC1) - Acts as the core competence holder and responsible topic owner for product security", + "composite" : true, + "composites" : { + "client" : { + "integrated-ui" : [ "showSATRA", "showCCE", "showAMOE", "user", "showUser", "showCNL", "showCatalogue", "showOrchestrator", "admin" ] + } + }, + "clientRole" : false, + "containerId" : "medina", + "attributes" : { } + }, { + "id" : "64dbcf9f-4231-4163-828a-5fa4fe9db278", + "name" : "CISO", + "description" : "Chief Information Security Officer - Responsible for security in the company, chooses what security controls should be implemented", + "composite" : true, + "composites" : { + "client" : { + "integrated-ui" : [ "showSATRA", "showCCE", "showAMOE", "user", "showUser", "showCNL", "showCatalogue", "showOrchestrator" ] + } + }, + "clientRole" : false, + "containerId" : "medina", + "attributes" : { } + }, { + "id" : "acdc368d-14d9-4478-b102-b67cfadebf49", + "name" : "test-role-1", + "composite" : false, + "clientRole" : false, + "containerId" : "medina", + "attributes" : { } + }, { + "id" : "e7c3caa6-1e16-4cf6-9484-b0af649117df", + "name" : "Compliance Manager", + "description" : "Responsible for the implementation of security control frameworks.\nResponsible for the correct implementation of the internal controls.\nResponsible for incident management.\nResponsible for performing internal audits.", + "composite" : true, + "composites" : { + "realm" : [ "ROLE_USER", "ROLE_ADMIN" ], + "client" : { + "raof" : [ "engine", "uma_protection" ], + "cnl-editor-frontend" : [ "user" ], + "integrated-ui" : [ "user", "showSATRA", "showCCE", "showAMOE", "showUser", "showCNL", "showCatalogue", "showOrchestrator", "admin", "showSSI" ], + "nl2cnl-translator-client" : [ "user" ] + } + }, + "clientRole" : false, + "containerId" : "medina", + "attributes" : { } + }, { + "id" : "fd93daa9-1357-4ba3-989d-7bf4b7ba2a07", + "name" : "ROLE_ADMIN", + "description" : "temporary role for catalogue jhipster", + "composite" : false, + "clientRole" : false, + "containerId" : "medina", + "attributes" : { } + } ], + "client" : { + "catalogue-backend" : [ ], + "cce" : [ { + "id" : "aa5844fb-a4f8-4cfa-8514-1f4033e8bd9c", + "name" : "uma_protection", + "composite" : false, + "clientRole" : true, + "containerId" : "dc64b28b-a696-4b0c-8e24-2aeae138c3e5", + "attributes" : { } + } ], + "raof-app" : [ { + "id" : "e08ef386-bb91-4ce8-8a02-8f65755d0612", + "name" : "uma_protection", + "composite" : false, + "clientRole" : true, + "containerId" : "1c198016-f44c-4620-b2f6-821173bc2e54", + "attributes" : { } + } ], + "security-admin-console" : [ ], + "trustworthiness_verification" : [ ], + "wazuh-vat-evidence-collector-dev" : [ { + "id" : "3c40a84f-dc61-43d1-a607-e3fad0df3766", + "name" : "uma_protection", + "composite" : false, + "clientRole" : true, + "containerId" : "aa18689d-6d81-4b92-8b9e-291eb4733408", + "attributes" : { } + } ], + "clouditor-assessment" : [ ], + "account-console" : [ ], + "cce-frontend" : [ ], + "ssi-frontend" : [ ], + "amoe-client" : [ ], + "dsl-mapper-client" : [ { + "id" : "16f2a92a-594f-420a-92c7-e39fbee9901a", + "name" : "user", + "composite" : false, + "clientRole" : true, + "containerId" : "4cb90bba-1483-48f8-85c3-af800943c740", + "attributes" : { } + }, { + "id" : "e2b8af2e-38b0-4018-9a79-794fb47acd59", + "name" : "uma_protection", + "composite" : false, + "clientRole" : true, + "containerId" : "4cb90bba-1483-48f8-85c3-af800943c740", + "attributes" : { } + } ], + "clouditor-cli" : [ ], + "codyze" : [ ], + "admin-cli" : [ ], + "catalogue-jhipster-control-center" : [ ], + "catalogue-registry" : [ ], + "clouditor-orchestrator" : [ { + "id" : "d0e4fbcd-ae45-48c3-89d5-29b1b5f35107", + "name" : "Create", + "composite" : false, + "clientRole" : true, + "containerId" : "fb2b3d0e-e2d7-4cb2-819d-bab9043f0d11", + "attributes" : { } + }, { + "id" : "22de6b01-a691-4b28-8f1d-95050048ade7", + "name" : "Delete", + "composite" : false, + "clientRole" : true, + "containerId" : "fb2b3d0e-e2d7-4cb2-819d-bab9043f0d11", + "attributes" : { } + }, { + "id" : "49d1cb98-55b9-48b3-a21c-4c7e8638cc19", + "name" : "Read", + "composite" : false, + "clientRole" : true, + "containerId" : "fb2b3d0e-e2d7-4cb2-819d-bab9043f0d11", + "attributes" : { } + }, { + "id" : "11bd1875-8f19-4216-8a2c-6dd2a5895c00", + "name" : "Update", + "composite" : false, + "clientRole" : true, + "containerId" : "fb2b3d0e-e2d7-4cb2-819d-bab9043f0d11", + "attributes" : { } + } ], + "realm-management" : [ { + "id" : "e02ce89a-c0b9-43b5-b6be-5c515624927a", + "name" : "manage-clients", + "description" : "${role_manage-clients}", + "composite" : false, + "clientRole" : true, + "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", + "attributes" : { } + }, { + "id" : "5bc05c8b-6d6a-45a1-92f7-cc33f4fe57bd", + "name" : "view-authorization", + "description" : "${role_view-authorization}", + "composite" : false, + "clientRole" : true, + "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", + "attributes" : { } + }, { + "id" : "0ee5608f-ab3a-4a8e-889b-e0d230a2fc86", + "name" : "view-clients", + "description" : "${role_view-clients}", + "composite" : true, + "composites" : { + "client" : { + "realm-management" : [ "query-clients" ] + } + }, + "clientRole" : true, + "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", + "attributes" : { } + }, { + "id" : "c2bd9190-451c-45d7-9588-412e1c40d5fd", + "name" : "manage-authorization", + "description" : "${role_manage-authorization}", + "composite" : false, + "clientRole" : true, + "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", + "attributes" : { } + }, { + "id" : "83e3e683-50b5-4050-b88b-2178342a13f8", + "name" : "manage-events", + "description" : "${role_manage-events}", + "composite" : false, + "clientRole" : true, + "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", + "attributes" : { } + }, { + "id" : "4e9c2113-f0d3-4691-bb66-49e3ca218d63", + "name" : "query-clients", + "description" : "${role_query-clients}", + "composite" : false, + "clientRole" : true, + "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", + "attributes" : { } + }, { + "id" : "cdca2718-5853-4969-9b63-2186e0382085", + "name" : "query-realms", + "description" : "${role_query-realms}", + "composite" : false, + "clientRole" : true, + "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", + "attributes" : { } + }, { + "id" : "33eb311b-fdbc-4ccf-b367-ae2b1c8c2e55", + "name" : "view-users", + "description" : "${role_view-users}", + "composite" : true, + "composites" : { + "client" : { + "realm-management" : [ "query-users", "query-groups" ] + } + }, + "clientRole" : true, + "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", + "attributes" : { } + }, { + "id" : "56382323-69f8-4eca-b433-aa14ccc83be3", + "name" : "manage-identity-providers", + "description" : "${role_manage-identity-providers}", + "composite" : false, + "clientRole" : true, + "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", + "attributes" : { } + }, { + "id" : "2db34bf8-3fac-4fb8-8ed4-b7f44cadcb2e", + "name" : "create-client", + "description" : "${role_create-client}", + "composite" : false, + "clientRole" : true, + "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", + "attributes" : { } + }, { + "id" : "ae7b03e5-747f-4341-8add-1c872658bec4", + "name" : "view-events", + "description" : "${role_view-events}", + "composite" : false, + "clientRole" : true, + "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", + "attributes" : { } + }, { + "id" : "a607a195-5e2c-4701-855d-d202ba52a313", + "name" : "manage-users", + "description" : "${role_manage-users}", + "composite" : false, + "clientRole" : true, + "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", + "attributes" : { } + }, { + "id" : "3f2bf59d-4b3f-425a-a75f-e6b8c6d27af0", + "name" : "view-realm", + "description" : "${role_view-realm}", + "composite" : false, + "clientRole" : true, + "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", + "attributes" : { } + }, { + "id" : "d23239ef-028a-4409-b965-e20ea6ac8795", + "name" : "impersonation", + "description" : "${role_impersonation}", + "composite" : false, + "clientRole" : true, + "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", + "attributes" : { } + }, { + "id" : "f724e1e9-a878-4ae3-9bc8-995767add1a3", + "name" : "manage-realm", + "description" : "${role_manage-realm}", + "composite" : false, + "clientRole" : true, + "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", + "attributes" : { } + }, { + "id" : "e6b7421d-7d5c-4f1c-bb48-0a873c9870c4", + "name" : "query-users", + "description" : "${role_query-users}", + "composite" : false, + "clientRole" : true, + "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", + "attributes" : { } + }, { + "id" : "7a81ec99-e710-409d-bd34-ae3642a1912d", + "name" : "view-identity-providers", + "description" : "${role_view-identity-providers}", + "composite" : false, + "clientRole" : true, + "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", + "attributes" : { } + }, { + "id" : "fbeca797-27ee-44a0-8566-bec5666e6bcc", + "name" : "query-groups", + "description" : "${role_query-groups}", + "composite" : false, + "clientRole" : true, + "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", + "attributes" : { } + }, { + "id" : "f9ea5c84-0690-47f4-b887-a3351ca800de", + "name" : "realm-admin", + "description" : "${role_realm-admin}", + "composite" : true, + "composites" : { + "client" : { + "realm-management" : [ "manage-clients", "view-authorization", "view-clients", "manage-authorization", "manage-events", "query-clients", "query-realms", "view-users", "manage-identity-providers", "create-client", "view-events", "manage-users", "view-realm", "impersonation", "manage-realm", "query-users", "view-identity-providers", "query-groups" ] + } + }, + "clientRole" : true, + "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", + "attributes" : { } + } ], + "api-swagger" : [ { + "id" : "a7aa8c9f-7cc5-4c91-8657-31b74ba02a1a", + "name" : "uma_protection", + "composite" : false, + "clientRole" : true, + "containerId" : "a08fc1fe-7c85-4c1c-9d04-604c6e35faa8", + "attributes" : { } + }, { + "id" : "88fa7113-8fd5-4dd4-940d-e0e2e06471d4", + "name" : "user", + "composite" : false, + "clientRole" : true, + "containerId" : "a08fc1fe-7c85-4c1c-9d04-604c6e35faa8", + "attributes" : { } + }, { + "id" : "08979d05-5713-4826-a036-39a25cbbcba6", + "name" : "test-fake-role", + "description" : "this is a fake role, for testing purpose", + "composite" : false, + "clientRole" : true, + "containerId" : "a08fc1fe-7c85-4c1c-9d04-604c6e35faa8", + "attributes" : { } + } ], + "cnl-editor-frontend" : [ { + "id" : "910ffe29-95b3-4b82-a734-b24bff7cfa8d", + "name" : "user", + "composite" : false, + "clientRole" : true, + "containerId" : "15a81bd1-4edd-4e2a-87ec-3bbcac30d2a3", + "attributes" : { } + } ], + "life-cycle-manager" : [ ], + "integrated-ui" : [ { + "id" : "644bda67-3674-4a93-968d-8a7bb9679e50", + "name" : "showSATRA", + "composite" : false, + "clientRole" : true, + "containerId" : "1150f83f-37bc-4b14-98a0-e179aaee0f6c", + "attributes" : { } + }, { + "id" : "58b0ddb9-373c-47d1-889a-9adacc414bf0", + "name" : "showCCE", + "composite" : false, + "clientRole" : true, + "containerId" : "1150f83f-37bc-4b14-98a0-e179aaee0f6c", + "attributes" : { } + }, { + "id" : "eb0a3413-b986-4cb6-a49c-9148d89df25a", + "name" : "showAMOE", + "composite" : false, + "clientRole" : true, + "containerId" : "1150f83f-37bc-4b14-98a0-e179aaee0f6c", + "attributes" : { } + }, { + "id" : "258c00de-d88c-4239-908b-be79f895c3b0", + "name" : "user", + "composite" : false, + "clientRole" : true, + "containerId" : "1150f83f-37bc-4b14-98a0-e179aaee0f6c", + "attributes" : { } + }, { + "id" : "8309ecee-a10c-440b-909c-5c36d12c6e2e", + "name" : "showUser", + "composite" : false, + "clientRole" : true, + "containerId" : "1150f83f-37bc-4b14-98a0-e179aaee0f6c", + "attributes" : { } + }, { + "id" : "77ecaa02-0d8e-4544-8235-21c07c48d251", + "name" : "showCNL", + "composite" : false, + "clientRole" : true, + "containerId" : "1150f83f-37bc-4b14-98a0-e179aaee0f6c", + "attributes" : { } + }, { + "id" : "a4309640-7f2f-45b5-a0ed-bb9977d6b2e7", + "name" : "showCatalogue", + "composite" : false, + "clientRole" : true, + "containerId" : "1150f83f-37bc-4b14-98a0-e179aaee0f6c", + "attributes" : { } + }, { + "id" : "ceae1740-d2ed-414f-b316-651d192adef3", + "name" : "showOrchestrator", + "composite" : false, + "clientRole" : true, + "containerId" : "1150f83f-37bc-4b14-98a0-e179aaee0f6c", + "attributes" : { } + }, { + "id" : "ae424f76-ac11-4a9b-939d-67ab55a0fc5a", + "name" : "admin", + "composite" : false, + "clientRole" : true, + "containerId" : "1150f83f-37bc-4b14-98a0-e179aaee0f6c", + "attributes" : { } + }, { + "id" : "e779ba09-8cc8-4b87-8289-f96a6de40d24", + "name" : "showSSI", + "composite" : false, + "clientRole" : true, + "containerId" : "1150f83f-37bc-4b14-98a0-e179aaee0f6c", + "attributes" : { } + } ], + "ccd-client" : [ ], + "broker" : [ { + "id" : "381e01c5-2dce-4da6-854b-334d015e7224", + "name" : "read-token", + "description" : "${role_read-token}", + "composite" : false, + "clientRole" : true, + "containerId" : "8d1a867d-537c-433e-8234-b3582127cc54", + "attributes" : { } + } ], + "clouditor-ui" : [ ], + "raof" : [ { + "id" : "6de07826-dc41-4208-bc5e-8d64d38cfec2", + "name" : "engine", + "composite" : false, + "clientRole" : true, + "containerId" : "785a9f77-d06f-4a65-9ba9-341921fda61a", + "attributes" : { } + }, { + "id" : "9ecb4267-a5d3-421e-9aad-9b329fe4701d", + "name" : "uma_protection", + "composite" : false, + "clientRole" : true, + "containerId" : "785a9f77-d06f-4a65-9ba9-341921fda61a", + "attributes" : { } + } ], + "nl2cnl-translator-client" : [ { + "id" : "8fdf06d3-6c44-4aa3-bb0a-80dc589ced1c", + "name" : "uma_protection", + "composite" : false, + "clientRole" : true, + "containerId" : "9f7c65f7-9ae9-4c9e-9bd7-971d0cbe146d", + "attributes" : { } + }, { + "id" : "4486610d-0195-463c-bf2f-cf4cd10001c8", + "name" : "user", + "composite" : false, + "clientRole" : true, + "containerId" : "9f7c65f7-9ae9-4c9e-9bd7-971d0cbe146d", + "attributes" : { } + } ], + "catalogue-gateway" : [ ], + "clouditor-discovery" : [ ], + "account" : [ { + "id" : "ad76fbd3-fd48-4820-8454-c9e6e8b21da5", + "name" : "manage-consent", + "description" : "${role_manage-consent}", + "composite" : true, + "composites" : { + "client" : { + "account" : [ "view-consent" ] + } + }, + "clientRole" : true, + "containerId" : "8bd89baf-08f6-4e4b-8394-6b4dd6050ed2", + "attributes" : { } + }, { + "id" : "3cf9ad63-38af-430f-86da-bf7455dfb668", + "name" : "view-applications", + "description" : "${role_view-applications}", + "composite" : false, + "clientRole" : true, + "containerId" : "8bd89baf-08f6-4e4b-8394-6b4dd6050ed2", + "attributes" : { } + }, { + "id" : "a47fd133-6ba5-4870-af1b-9a17b76be404", + "name" : "view-consent", + "description" : "${role_view-consent}", + "composite" : false, + "clientRole" : true, + "containerId" : "8bd89baf-08f6-4e4b-8394-6b4dd6050ed2", + "attributes" : { } + }, { + "id" : "36ac4d35-7384-40c3-a877-7a2934bc9250", + "name" : "manage-account-links", + "description" : "${role_manage-account-links}", + "composite" : false, + "clientRole" : true, + "containerId" : "8bd89baf-08f6-4e4b-8394-6b4dd6050ed2", + "attributes" : { } + }, { + "id" : "3e5612a2-7c5c-4026-a6ac-7a332e266aab", + "name" : "manage-account", + "description" : "${role_manage-account}", + "composite" : true, + "composites" : { + "client" : { + "account" : [ "manage-account-links" ] + } + }, + "clientRole" : true, + "containerId" : "8bd89baf-08f6-4e4b-8394-6b4dd6050ed2", + "attributes" : { } + }, { + "id" : "1062c184-cad0-462d-ad3a-d51d5208536c", + "name" : "delete-account", + "description" : "${role_delete-account}", + "composite" : false, + "clientRole" : true, + "containerId" : "8bd89baf-08f6-4e4b-8394-6b4dd6050ed2", + "attributes" : { } + }, { + "id" : "d1a2381b-d165-43fb-a79d-8c614c46b96e", + "name" : "view-profile", + "description" : "${role_view-profile}", + "composite" : false, + "clientRole" : true, + "containerId" : "8bd89baf-08f6-4e4b-8394-6b4dd6050ed2", + "attributes" : { } + } ] + } + }, + "groups" : [ { + "id" : "8b3ee09d-0aa4-4382-be86-a8b84745b56a", + "name" : "AlwaysGreen", + "path" : "/AlwaysGreen", + "attributes" : { + "cloudserviceid" : [ "1b0d7b7e-a230-4d0c-8891-65d0b92e0fa1" ] + }, + "realmRoles" : [ ], + "clientRoles" : { }, + "subGroups" : [ ] + }, { + "id" : "e827087c-1649-47e6-a238-2acc1c81fe26", + "name" : "AlwaysGreenExceptOne", + "path" : "/AlwaysGreenExceptOne", + "attributes" : { + "cloudserviceid" : [ "e3a76767-0376-499a-a8b3-3ba1394fd5f5" ] + }, + "realmRoles" : [ ], + "clientRoles" : { }, + "subGroups" : [ ] + }, { + "id" : "5e615fa4-4770-455a-affa-4a4d51f27396", + "name" : "AlwaysRed", + "path" : "/AlwaysRed", + "attributes" : { + "cloudserviceid" : [ "2d645da4-9c45-40b4-b26f-12090cea4f6f" ] + }, + "realmRoles" : [ ], + "clientRoles" : { }, + "subGroups" : [ ] + }, { + "id" : "ed9dd061-e96c-47e0-95bd-fcc39e359c0c", + "name" : "CloudServiceProvidersGroup", + "path" : "/CloudServiceProvidersGroup", + "attributes" : { }, + "realmRoles" : [ ], + "clientRoles" : { }, + "subGroups" : [ { + "id" : "8e2617d0-5711-44d1-a93e-d05d4423a63b", + "name" : "Fabasoft Cloud Service Provider", + "path" : "/CloudServiceProvidersGroup/Fabasoft Cloud Service Provider", + "attributes" : { + "cloudserviceproviderid" : [ "Fabasoft" ] + }, + "realmRoles" : [ ], + "clientRoles" : { }, + "subGroups" : [ ] + }, { + "id" : "a9cae5cc-8824-47fc-9564-d3976b6ae0ff", + "name" : "CloudServiceProviderTest1", + "path" : "/CloudServiceProvidersGroup/CloudServiceProviderTest1", + "attributes" : { + "cloudserviceproviderid" : [ "CloudServiceProviderTest1ID" ] + }, + "realmRoles" : [ ], + "clientRoles" : { }, + "subGroups" : [ ] + }, { + "id" : "372d7fb2-acfd-4338-aa9a-c04c1fe139e7", + "name" : "Bosch Cloud Service Provider", + "path" : "/CloudServiceProvidersGroup/Bosch Cloud Service Provider", + "attributes" : { + "cloudserviceproviderid" : [ "Bosch" ] + }, + "realmRoles" : [ ], + "clientRoles" : { }, + "subGroups" : [ ] + } ] + }, { + "id" : "b8508c0d-57db-4136-a469-b70e1f6332cc", + "name" : "CloudServicesGroup", + "path" : "/CloudServicesGroup", + "attributes" : { }, + "realmRoles" : [ ], + "clientRoles" : { }, + "subGroups" : [ { + "id" : "b6421285-efcf-4a4e-9a71-432cf325e2e4", + "name" : "CloudServiceTest2", + "path" : "/CloudServicesGroup/CloudServiceTest2", + "attributes" : { + "cloudserviceid" : [ "CloudServiceTest2ID" ] + }, + "realmRoles" : [ ], + "clientRoles" : { }, + "subGroups" : [ ] + }, { + "id" : "6ff013fa-c765-43e0-b7d6-a0ab1cac5000", + "name" : "TestCCDCloudService", + "path" : "/CloudServicesGroup/TestCCDCloudService", + "attributes" : { + "cloudserviceid" : [ "73633f38-9509-4820-a867-68d49622c5f7" ] + }, + "realmRoles" : [ ], + "clientRoles" : { }, + "subGroups" : [ ] + }, { + "id" : "23bd87c3-c46f-47fa-9925-d26e7e8b3045", + "name" : "MichelaCS1", + "path" : "/CloudServicesGroup/MichelaCS1", + "attributes" : { + "cloudserviceid" : [ "71e9d06f-518c-4c95-be1b-011661220c4d" ] + }, + "realmRoles" : [ ], + "clientRoles" : { }, + "subGroups" : [ ] + }, { + "id" : "610a288f-b93b-4da2-ab58-a5e61b38dbc7", + "name" : "Fabasoft", + "path" : "/CloudServicesGroup/Fabasoft", + "attributes" : { + "cloudserviceid" : [ "27ec470e-952b-40e7-9167-a7c3e58bd53d" ] + }, + "realmRoles" : [ ], + "clientRoles" : { }, + "subGroups" : [ ] + }, { + "id" : "9dccce11-775b-4e2c-a471-90d91cc40dcf", + "name" : "Bosch", + "path" : "/CloudServicesGroup/Bosch", + "attributes" : { + "cloudserviceid" : [ "f712b8bc-5bd0-4df7-9e34-9e1fb2719763" ] + }, + "realmRoles" : [ ], + "clientRoles" : { }, + "subGroups" : [ ] + }, { + "id" : "c23dc3e7-334b-403f-a327-3f4761a8508a", + "name" : "Bosch_PaaS", + "path" : "/CloudServicesGroup/Bosch_PaaS", + "attributes" : { + "cloudserviceid" : [ "5a69a810-b523-4cb7-8f46-600098a9754f" ] + }, + "realmRoles" : [ ], + "clientRoles" : { }, + "subGroups" : [ ] + }, { + "id" : "fd59fb08-937f-4e3a-b9fd-cd3443781cad", + "name" : "DefaultCloudService", + "path" : "/CloudServicesGroup/DefaultCloudService", + "attributes" : { + "cloudserviceid" : [ "00000000-0000-0000-0000-000000000000" ] + }, + "realmRoles" : [ ], + "clientRoles" : { }, + "subGroups" : [ ] + }, { + "id" : "c7e191c6-ef16-4d6c-bc62-1cac4dbd8dc7", + "name" : "CloudServiceWithValidUUID", + "path" : "/CloudServicesGroup/CloudServiceWithValidUUID", + "attributes" : { + "cloudserviceid" : [ "813d82df-2d31-4ee1-9ca6-f38137bd1f14" ] + }, + "realmRoles" : [ ], + "clientRoles" : { }, + "subGroups" : [ ] + }, { + "id" : "3ae94354-6142-4999-a964-1c7fe5193657", + "name" : "Bosch_IaaS", + "path" : "/CloudServicesGroup/Bosch_IaaS", + "attributes" : { + "cloudserviceid" : [ "945d9c38-b2ad-4db5-9d33-cd10b7d5d840" ] + }, + "realmRoles" : [ ], + "clientRoles" : { }, + "subGroups" : [ ] + }, { + "id" : "f9da1040-2a1d-4dbb-b387-e68f159dd1b2", + "name" : "CloudServiceTest1", + "path" : "/CloudServicesGroup/CloudServiceTest1", + "attributes" : { + "cloudserviceid" : [ "CloudServiceTest1ID" ] + }, + "realmRoles" : [ ], + "clientRoles" : { }, + "subGroups" : [ ] + }, { + "id" : "f7822dbb-1b40-4992-903a-3102e83df6dc", + "name" : "hpe-csid1", + "path" : "/CloudServicesGroup/hpe-csid1", + "attributes" : { + "cloudserviceid" : [ "0000001-b2ad-4db5-9d33-cd10b7d5d840" ] + }, + "realmRoles" : [ ], + "clientRoles" : { }, + "subGroups" : [ ] + }, { + "id" : "7c09aad4-b0e8-4f00-8b40-05c8451de518", + "name" : "Bosch_SaaS", + "path" : "/CloudServicesGroup/Bosch_SaaS", + "attributes" : { + "cloudserviceid" : [ "35586422-bd0d-4a01-a467-7ced9c388748" ] + }, + "realmRoles" : [ ], + "clientRoles" : { }, + "subGroups" : [ ] + }, { + "id" : "d2fb3390-c515-41f9-9475-6abab61ae4d7", + "name" : "hpe-csid2", + "path" : "/CloudServicesGroup/hpe-csid2", + "attributes" : { + "cloudserviceid" : [ "00000002-b2ad-4db5-9d33-cd10b7d5d840" ] + }, + "realmRoles" : [ ], + "clientRoles" : { }, + "subGroups" : [ ] + } ] + }, { + "id" : "d6d56fa4-0c2c-4067-8e84-b705ebf2d788", + "name" : "NonPolicyService", + "path" : "/NonPolicyService", + "attributes" : { + "cloudserviceid" : [ "1d44a934-4783-4fda-9265-ec9f9bb145c5" ] + }, + "realmRoles" : [ ], + "clientRoles" : { }, + "subGroups" : [ ] + }, { + "id" : "515497a3-59d5-4020-ab57-d07d4bde9c74", + "name" : "OldDefaultCS", + "path" : "/OldDefaultCS", + "attributes" : { + "cloudserviceid" : [ "00000000-0000-0000-000000000000" ] + }, + "realmRoles" : [ ], + "clientRoles" : { }, + "subGroups" : [ ] + }, { + "id" : "3d01df79-5e32-4966-9ccb-a221bdd82b4e", + "name" : "is_admin", + "path" : "/is_admin", + "attributes" : { + "is_admin" : [ "TRUE" ] + }, + "realmRoles" : [ ], + "clientRoles" : { }, + "subGroups" : [ ] + } ], + "defaultRoles" : [ "offline_access", "uma_authorization" ], + "requiredCredentials" : [ "password" ], + "otpPolicyType" : "totp", + "otpPolicyAlgorithm" : "HmacSHA1", + "otpPolicyInitialCounter" : 0, + "otpPolicyDigits" : 6, + "otpPolicyLookAheadWindow" : 1, + "otpPolicyPeriod" : 30, + "otpSupportedApplications" : [ "FreeOTP", "Google Authenticator" ], + "webAuthnPolicyRpEntityName" : "keycloak", + "webAuthnPolicySignatureAlgorithms" : [ "ES256" ], + "webAuthnPolicyRpId" : "", + "webAuthnPolicyAttestationConveyancePreference" : "not specified", + "webAuthnPolicyAuthenticatorAttachment" : "not specified", + "webAuthnPolicyRequireResidentKey" : "not specified", + "webAuthnPolicyUserVerificationRequirement" : "not specified", + "webAuthnPolicyCreateTimeout" : 0, + "webAuthnPolicyAvoidSameAuthenticatorRegister" : false, + "webAuthnPolicyAcceptableAaguids" : [ ], + "webAuthnPolicyPasswordlessRpEntityName" : "keycloak", + "webAuthnPolicyPasswordlessSignatureAlgorithms" : [ "ES256" ], + "webAuthnPolicyPasswordlessRpId" : "", + "webAuthnPolicyPasswordlessAttestationConveyancePreference" : "not specified", + "webAuthnPolicyPasswordlessAuthenticatorAttachment" : "not specified", + "webAuthnPolicyPasswordlessRequireResidentKey" : "not specified", + "webAuthnPolicyPasswordlessUserVerificationRequirement" : "not specified", + "webAuthnPolicyPasswordlessCreateTimeout" : 0, + "webAuthnPolicyPasswordlessAvoidSameAuthenticatorRegister" : false, + "webAuthnPolicyPasswordlessAcceptableAaguids" : [ ], + "users" : [ { + "id" : "bb6244c3-35ec-4908-b4e0-73b159cc7a04", + "createdTimestamp" : 1646126460390, + "username" : "admin", + "enabled" : true, + "totp" : false, + "emailVerified" : true, + "firstName" : "admin", + "email" : "admin@localhost", + "attributes" : { + "cladmin" : [ "true" ] + }, + "credentials" : [ { + "id" : "0538b4a5-5a40-42f2-b92e-56cd9c6820f0", + "type" : "password", + "createdDate" : 1683189447590, + "secretData" : "{\"value\":\"aosiXWGkQS2nq7css2Bk39UvWjvuE6gfrmb/gajL3fRRqK0qzkYDcJvpR1nYo64XihoB8qKtyaAUdQ2LyfrpLA==\",\"salt\":\"FAbuyUYldOndssGKUHkiTA==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "ROLE_USER", "offline_access", "Auditor", "uma_authorization", "ROLE_ADMIN", "Compliance Manager" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ "/AlwaysGreen", "/AlwaysGreenExceptOne", "/AlwaysRed", "/CloudServicesGroup/Bosch", "/CloudServiceProvidersGroup/Bosch Cloud Service Provider", "/CloudServiceProvidersGroup/CloudServiceProviderTest1", "/CloudServicesGroup/CloudServiceTest1", "/CloudServicesGroup/CloudServiceTest2", "/CloudServicesGroup/CloudServiceWithValidUUID", "/CloudServicesGroup/DefaultCloudService", "/CloudServicesGroup/Fabasoft", "/CloudServiceProvidersGroup/Fabasoft Cloud Service Provider", "/NonPolicyService", "/OldDefaultCS", "/CloudServicesGroup/TestCCDCloudService", "/is_admin" ] + }, { + "id" : "08fbe789-4ada-4b3a-bcf1-dc20b469911b", + "createdTimestamp" : 1646739467160, + "username" : "amoe_test", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "firstName" : "First name of amoe_test", + "lastName" : "Last name of amoe_test", + "credentials" : [ { + "id" : "da7be389-1b6a-42fa-8eb6-95fc83dc1cfa", + "type" : "password", + "createdDate" : 1659086998243, + "secretData" : "{\"value\":\"t0KyuUWeAlO6kD1pr6T65d9XGn1dGPDLYHPlVWO2PLp8bdyfEw83swDl2DZxjLueSA2Ko9Oj9YjdkAzHGIFL0g==\",\"salt\":\"gMuE/1NUTwSHg5Wad0GfwA==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "ICO", "uma_authorization" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ "/AlwaysGreen", "/AlwaysGreenExceptOne", "/AlwaysRed", "/CloudServicesGroup/DefaultCloudService", "/CloudServicesGroup/Fabasoft" ] + }, { + "id" : "3c4f61ad-d73f-4f7e-9765-1423cdabab50", + "createdTimestamp" : 1652112647746, + "username" : "auditor", + "enabled" : true, + "totp" : false, + "emailVerified" : true, + "firstName" : "John", + "lastName" : "Doe", + "credentials" : [ { + "id" : "2f4b54a6-1156-4b45-a15a-9f82dc71f56b", + "type" : "password", + "createdDate" : 1652112667799, + "secretData" : "{\"value\":\"2d0Gsuw7tv/hqVqpyPgYvgZBhTFFjG4PzOvOPXyUjrQe51ObcPGrUQZnlcHv/eNAKGuIVpETuoDizmNtY0Q56A==\",\"salt\":\"0lLn1LPVUYiOqJvA4eUmBg==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "Auditor", "uma_authorization" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ "/CloudServiceProvidersGroup/CloudServiceProviderTest1", "/CloudServicesGroup/DefaultCloudService" ] + }, { + "id" : "02e668be-9d34-4eb5-ae44-a139de6f8f22", + "createdTimestamp" : 1652187672848, + "username" : "auditor_test", + "enabled" : true, + "totp" : false, + "emailVerified" : true, + "firstName" : "Test", + "lastName" : "Auditor", + "email" : "test@auditor.com", + "credentials" : [ { + "id" : "19bb6976-fb3c-4faa-909b-0391c123945c", + "type" : "password", + "createdDate" : 1652187687565, + "secretData" : "{\"value\":\"8id0z74ft3S127JZmjrj17SMlQFA5oRS50/JpzOSt5ivYc8d2XFcJEi/LgNQUPMc+OrBKzwGkqUOJAINGCgQ9w==\",\"salt\":\"jqiKjTRDRPABNeU1HRvUxw==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "Auditor", "uma_authorization" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "745cb22f-555b-4d93-8a77-f566494f1c12", + "createdTimestamp" : 1653297176816, + "username" : "bosch_test", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "email" : "michela.fazzolari@iit.cnr.it", + "credentials" : [ { + "id" : "b831343a-7f00-431b-b75f-852335d84347", + "type" : "password", + "createdDate" : 1653297431168, + "secretData" : "{\"value\":\"RY74rikcZ2dTQxWiMdtizGiTRHjH3uLjqrZR6o9NhQ3c3TMyl4u/BCKVwO3CGa1Y5BSBlUUb3u7PwgxkhCgwdw==\",\"salt\":\"fjV8yJwb94Raye/qg600vw==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "ROLE_USER", "offline_access", "Auditor", "uma_authorization", "Compliance Manager" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ "/CloudServicesGroup/Bosch", "/CloudServiceProvidersGroup/Bosch Cloud Service Provider" ] + }, { + "id" : "778ce3aa-e840-4fec-9b7a-52dde6a2f878", + "createdTimestamp" : 1671615249436, + "username" : "ccd_admin", + "enabled" : true, + "totp" : false, + "emailVerified" : true, + "firstName" : "CCD", + "lastName" : "Testuser", + "email" : "bernhard.cermak@fabasoft.com", + "credentials" : [ { + "id" : "b1f67032-d7da-4595-96fc-4d6f8073ba4d", + "type" : "password", + "userLabel" : "", + "createdDate" : 1671615440296, + "secretData" : "{\"value\":\"K+vbtk9rqKFZaD/Rs1p8t8uG+sz9xyyLs2KU89cXyWB7hFvdjsDD3VHz0/jzAWwAeN9Q6MOzCG3PtMCJJIlcsA==\",\"salt\":\"yUSxM8Vetd331zl/tfR+IQ==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "ROLE_USER", "offline_access", "Auditor", "uma_authorization", "CISO", "ROLE_ADMIN", "Compliance Manager" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ "/AlwaysGreen", "/AlwaysGreenExceptOne", "/AlwaysRed", "/CloudServicesGroup/DefaultCloudService", "/CloudServicesGroup/Fabasoft", "/CloudServiceProvidersGroup/Fabasoft Cloud Service Provider" ] + }, { + "id" : "beac8e83-64e4-4b47-8140-8a85fa36fd12", + "createdTimestamp" : 1668692868046, + "username" : "ciso", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "firstName" : "amoe read only", + "credentials" : [ { + "id" : "9b7d688c-f9e0-4210-9727-fe4313882715", + "type" : "password", + "createdDate" : 1668692879318, + "secretData" : "{\"value\":\"HmPYkMZRirfATQ1fCAI85xw/qm+/9Vkkjp6xSId7w8yCLQgBEPwruhRxbJ0GDou0xzoHGesKf9JMRLXbLsCVKg==\",\"salt\":\"FnMudEOWxeN+No1LB2wpXQ==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "ROLE_USER", "offline_access", "uma_authorization", "CISO" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ "/CloudServiceProvidersGroup/CloudServiceProviderTest1", "/CloudServicesGroup/DefaultCloudService" ] + }, { + "id" : "67bb2090-c670-4ce9-ac41-c48d8390a82d", + "createdTimestamp" : 1668528487642, + "username" : "cnledito-test", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "firstName" : "cnleditortest", + "lastName" : "test", + "email" : "cnleditortest@editor.com", + "credentials" : [ { + "id" : "5c044583-cf1e-4fad-92eb-9a1fa9f2c219", + "type" : "password", + "createdDate" : 1668528520774, + "secretData" : "{\"value\":\"u+/Bx8qHcKSTfJxsydwyihI4opGHi0eX7V2161D3xZy0XdtcLQj+wFLBZlRFRpvca7EJcr8d5XCkXQ1SVOvhSA==\",\"salt\":\"Ch9289q4Ljsl08F0qIGRPA==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization", "Compliance Manager" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "5b083c04-bbda-48be-8441-fbe16968902b", + "createdTimestamp" : 1650710929018, + "username" : "cnr-user", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "firstName" : "Stefano", + "lastName" : "Fagnano", + "email" : "stefano.fagnano@me.com", + "credentials" : [ { + "id" : "fe14429e-56cf-4810-8ca2-7fab0ea81a80", + "type" : "password", + "createdDate" : 1650710973177, + "secretData" : "{\"value\":\"t+/Zdw3TRlptIsNjJh22t1t2rJmNsanwsZkqfgI0++tKxhnq8pMZCHmX8RTLuotokLNPjzC+oWTxpOjdQwJ5vg==\",\"salt\":\"7NvfqfUVIqeY9uVBwG5+kw==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "ICO", "uma_authorization" ], + "clientRoles" : { + "raof" : [ "engine" ], + "raof-app" : [ "uma_protection" ], + "integrated-ui" : [ "user", "showSATRA", "showCCE", "showAMOE", "showUser", "showCNL", "showCatalogue", "showOrchestrator" ], + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 1660315722, + "groups" : [ ] + }, { + "id" : "efa7b51d-1c6a-4eb6-87ed-6e7afd3f5901", + "createdTimestamp" : 1651657436115, + "username" : "csp_test", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "credentials" : [ { + "id" : "02d21c6e-093f-4631-98fb-09a9315c8ee3", + "type" : "password", + "createdDate" : 1651657542422, + "secretData" : "{\"value\":\"PUExIha4Quy9RzbBQtRpXx5F5itYQrp3+fd5FcQuy3A4JjsRZ7DgZQ5abEvytgAKrI+vFUY9NvGeHR2vWijwoQ==\",\"salt\":\"EhGr0tjHnNSuKZp2hvNLHA==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization", "Compliance Manager" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "1247915b-d17c-4b5b-aad6-889c24225420", + "createdTimestamp" : 1646842473867, + "username" : "fabasoftpe", + "enabled" : true, + "totp" : false, + "emailVerified" : true, + "firstName" : "fabasoftpe", + "credentials" : [ { + "id" : "99ea9dc6-b4b3-4e0b-8aa9-2ecf58daa670", + "type" : "password", + "createdDate" : 1646842549296, + "secretData" : "{\"value\":\"rjCSXoy+G2SbrGgLqP8Qtx9eJYGheRLzVaZ2W7tZ7SO14I9K7W0GZFK7gg/wwZe7fNCT4c+kTWuuK42cR7JAiA==\",\"salt\":\"ViuDtUVx++5GGlqT+Kajvg==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "ROLE_USER", "offline_access", "Auditor", "uma_authorization", "Compliance Manager" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ "/CloudServicesGroup/Fabasoft", "/CloudServiceProvidersGroup/Fabasoft Cloud Service Provider" ] + }, { + "id" : "0f52f8dd-8347-4666-be72-2d44debec2d6", + "createdTimestamp" : 1675771346677, + "username" : "hpe-user1", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "credentials" : [ { + "id" : "cc5b9aa2-0fbb-44c6-a63d-4397bb117d7d", + "type" : "password", + "createdDate" : 1675771371499, + "secretData" : "{\"value\":\"BnLcEhRNKkj0UXexTGO0Jk7HvQp/uPP2P5M17MS9yHV/qGmrPnCX8bC7tU+bjnWfmS2lhtSXDTZIf8qZLtncWw==\",\"salt\":\"D9Ce0ExGm95QZ9jDZyO6hA==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "ROLE_USER", "offline_access", "uma_authorization", "Compliance Manager" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ "/CloudServicesGroup/hpe-csid1" ] + }, { + "id" : "3a3d32c9-6543-4ba7-b900-7dcabcf8457d", + "createdTimestamp" : 1675771545834, + "username" : "hpe-user2", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "credentials" : [ { + "id" : "9e9f5bf9-7378-4d2d-97cd-5904d72c83d2", + "type" : "password", + "createdDate" : 1675771558717, + "secretData" : "{\"value\":\"/dzDuLuAitMA1rzNf3+xUWI6/vrnkgS27tSyTLHQl8Ayn/8wSVwpEOU8dzeBPaNdYpyLs86v0Y0vVF0E0+KiEQ==\",\"salt\":\"VConj0TiO36bBTmmBTQUgg==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "ROLE_USER", "offline_access", "uma_authorization", "Compliance Manager" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ "/CloudServicesGroup/hpe-csid1", "/CloudServicesGroup/hpe-csid2" ] + }, { + "id" : "5cd36ec2-65fd-4373-aa16-9114d76d43da", + "createdTimestamp" : 1653465308946, + "username" : "jlunagar", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "firstName" : "Jesus", + "lastName" : "Luna", + "email" : "jesus.lunagarcia@de.bosch.com", + "credentials" : [ ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "federatedIdentities" : [ { + "identityProvider" : "oidc", + "userId" : "GKn0JglY4EuL/COIDpC4xtWS8XbWmlQcWNN1lxaxTMw=", + "userName" : "gkn0jgly4eul/coidpc4xtws8xbwmlqcwnn1lxaxtmw=" + } ], + "realmRoles" : [ "ROLE_USER", "offline_access", "uma_authorization", "Compliance Manager" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ "/CloudServicesGroup/Bosch", "/CloudServiceProvidersGroup/Bosch Cloud Service Provider" ] + }, { + "id" : "dbdb2c43-a90d-4bd8-a29a-c23d00e8a5fc", + "createdTimestamp" : 1646842573862, + "username" : "lawexpert", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "credentials" : [ { + "id" : "47c67cc2-9fec-471f-aee3-b93cb8fb50d4", + "type" : "password", + "createdDate" : 1646842584938, + "secretData" : "{\"value\":\"4u0v3JqYQ/m7qYSuG8gcxfdMveQyTLkOK1t9YTXsdH9b6XWmcmx+eemKvvZzlhGLrZ2JoyRv3Emr7E3gacWvbw==\",\"salt\":\"hKwIjTGtDpDCPw0r7xFMyA==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization", "Compliance Manager" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "c4eaac8d-860d-4f35-add0-00b52277deab", + "createdTimestamp" : 1668089005936, + "username" : "levilübbe", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "firstName" : "Levi", + "lastName" : "Lübbe", + "email" : "fixed-term.levi.luebbe@de.bosch.com", + "credentials" : [ ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "federatedIdentities" : [ { + "identityProvider" : "oidc", + "userId" : "n/s6GK+IJlhIlRsPzqrQtbn5RmwurgRTzMuZh/9IFGg=", + "userName" : "n/s6gk+ijlhilrspzqrqtbn5rmwurgrtzmuzh/9ifgg=" + } ], + "realmRoles" : [ "offline_access", "uma_authorization", "Compliance Manager" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "1a127e64-49ea-47ae-bc94-e65d60cc044f", + "createdTimestamp" : 1656060420821, + "username" : "luca", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "email" : "lucapetrillo0@gmail.com", + "credentials" : [ { + "id" : "89606e04-593a-462c-b105-49291a314f46", + "type" : "password", + "createdDate" : 1657004701136, + "secretData" : "{\"value\":\"AGZxDoD8TnZQWbjQ8C10czzhedMZbhik22BZwizM1NOWf1G1Bgk9jhSo3FG8Y8dSznlkHhqkux6pto3pFeAinA==\",\"salt\":\"t1l9/JcGqu80EmyPCHVJrA==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ "UPDATE_PASSWORD" ], + "realmRoles" : [ "offline_access", "uma_authorization" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "5459884f-0e81-4541-b0f7-039143074658", + "createdTimestamp" : 1647939833771, + "username" : "nl2cnl_test", + "enabled" : true, + "totp" : false, + "emailVerified" : true, + "firstName" : "", + "email" : "m.fazzolari@iit.cnr.it", + "credentials" : [ { + "id" : "0950817c-a5b2-4b9b-b0cf-8b7ae79526c2", + "type" : "password", + "createdDate" : 1651654675240, + "secretData" : "{\"value\":\"H5hcwQTSDwABIRHvMOOywIvJFEEDhn5GXyGttQVDJpqnY7uQaRD7KxfbXIb5nE9m495A4kpG5L0/AFCwdgL+ZQ==\",\"salt\":\"1Z6UllkkiwS6jf7FKA312Q==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "ROLE_USER", "offline_access", "Auditor", "uma_authorization", "ROLE_ADMIN", "Compliance Manager" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ "/CloudServicesGroup/MichelaCS1", "/CloudServicesGroup/hpe-csid1" ] + }, { + "id" : "870ee3ee-7640-4ef3-8f37-c99306d7b02f", + "createdTimestamp" : 1668755928215, + "username" : "noroles", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "firstName" : "I have no", + "lastName" : "roles", + "credentials" : [ { + "id" : "d73fd5de-b5ec-4196-90eb-376cca300001", + "type" : "password", + "createdDate" : 1668755939191, + "secretData" : "{\"value\":\"j3HO2+EYY6HVOtKrdktKCRv+xf29S3ic14aU2e0+BG33E3AJGwbQ26u8QePXtaQvcnLjB9tgX3fzhiD8o2uXnw==\",\"salt\":\"pR9RdzE892uBElC3UbV0ng==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "78161698-ec9d-4fdc-ae05-d1b0b1dc0d97", + "createdTimestamp" : 1652873527037, + "username" : "patrick.weiss3@de.bosch.com", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "firstName" : "Patrick", + "lastName" : "Weiss", + "email" : "patrick.weiss3@de.bosch.com", + "credentials" : [ ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "federatedIdentities" : [ { + "identityProvider" : "oidc", + "userId" : "TQQySlVjXN8OaaXkrKUKJEMCx3dfuu4MuIuKiRgXgF8=", + "userName" : "tqqyslvjxn8oaaxkrkukjemcx3dfuu4muiukirgxgf8=" + } ], + "realmRoles" : [ "offline_access", "uma_authorization", "Compliance Manager" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "bb6d0c7f-e4ea-4f42-9375-f741b1ebac97", + "createdTimestamp" : 1646841881112, + "username" : "policyexpert", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "credentials" : [ { + "id" : "f9c4ca91-072f-418e-8bfb-0ef499620490", + "type" : "password", + "createdDate" : 1646841889121, + "secretData" : "{\"value\":\"6OlHWWs4Bad2qqMXi7PdiCAsNLjQTmbhgssnGuFAlTeMJeI/k48B8ahGyrJ2RYO4WcM29yBCEBZoZOWx7QUXEQ==\",\"salt\":\"FUl+Hwy2OqSWb+po3PvAGQ==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization", "Compliance Manager" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ "/CloudServiceProvidersGroup/CloudServiceProviderTest1", "/CloudServicesGroup/CloudServiceTest1", "/CloudServicesGroup/CloudServiceTest2" ] + }, { + "id" : "7fcfeba8-2512-4c10-b1e8-fac6d623a83e", + "createdTimestamp" : 1647940816157, + "username" : "service-account-admin-cli", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "serviceAccountClientId" : "admin-cli", + "credentials" : [ ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "465eb553-71ea-47bb-8557-3753e1679b0b", + "createdTimestamp" : 1648629087836, + "username" : "service-account-api-swagger", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "serviceAccountClientId" : "api-swagger", + "credentials" : [ ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization" ], + "clientRoles" : { + "api-swagger" : [ "uma_protection" ], + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "4ccb51e5-5911-4052-914b-41120086c8ef", + "createdTimestamp" : 1648043982626, + "username" : "service-account-catalogue-backend", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "serviceAccountClientId" : "catalogue-backend", + "credentials" : [ ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "72b2d795-8d27-4aa7-a935-4c1ce274f27d", + "createdTimestamp" : 1650355454172, + "username" : "service-account-cce", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "serviceAccountClientId" : "cce", + "credentials" : [ ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization" ], + "clientRoles" : { + "cce" : [ "uma_protection" ], + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "4aafc668-9855-44b2-a079-a271a3c4a515", + "createdTimestamp" : 1646860326928, + "username" : "service-account-clouditor-assessment", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "serviceAccountClientId" : "clouditor-assessment", + "credentials" : [ ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "89145876-b402-435f-bcfc-1a5da1f948ac", + "createdTimestamp" : 1646860316152, + "username" : "service-account-clouditor-discovery", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "serviceAccountClientId" : "clouditor-discovery", + "credentials" : [ ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "7a3be6fa-aa06-4d47-92fe-0c7dbdcf081e", + "createdTimestamp" : 1652269527099, + "username" : "service-account-clouditor-orchestrator", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "serviceAccountClientId" : "clouditor-orchestrator", + "credentials" : [ ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "a5916f7c-3494-4b8b-a899-d6424762a7e8", + "createdTimestamp" : 1646917353062, + "username" : "service-account-codyze", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "serviceAccountClientId" : "codyze", + "credentials" : [ ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "b5130ada-9590-42ef-a690-ba7ff12f35bd", + "createdTimestamp" : 1657201467930, + "username" : "service-account-dsl-mapper-client", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "serviceAccountClientId" : "dsl-mapper-client", + "credentials" : [ ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ], + "dsl-mapper-client" : [ "uma_protection" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "6e8ff208-0ede-436c-b1ee-b853d33c3d81", + "createdTimestamp" : 1646998107929, + "username" : "service-account-life-cycle-manager", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "serviceAccountClientId" : "life-cycle-manager", + "credentials" : [ ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "7cdaece4-9f13-4a89-9e46-f56a3cee862e", + "createdTimestamp" : 1647940729928, + "username" : "service-account-nl2cnl-translator-client", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "serviceAccountClientId" : "nl2cnl-translator-client", + "credentials" : [ ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization" ], + "clientRoles" : { + "nl2cnl-translator-client" : [ "uma_protection" ], + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "20913f11-a80b-4b95-9e9c-3b7318275a9f", + "createdTimestamp" : 1650445410351, + "username" : "service-account-raof", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "serviceAccountClientId" : "raof", + "credentials" : [ ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization" ], + "clientRoles" : { + "raof" : [ "uma_protection" ], + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "42584464-92a0-40b9-a9ff-0a43a6358956", + "createdTimestamp" : 1651501788820, + "username" : "service-account-raof-app", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "serviceAccountClientId" : "raof-app", + "credentials" : [ ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization" ], + "clientRoles" : { + "raof-app" : [ "uma_protection" ], + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "d12a0ea0-d7d4-4194-b8f7-6e1190bbfcff", + "createdTimestamp" : 1650377634668, + "username" : "service-account-wazuh-vat-evidence-collector-dev", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "serviceAccountClientId" : "wazuh-vat-evidence-collector-dev", + "credentials" : [ ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization" ], + "clientRoles" : { + "wazuh-vat-evidence-collector-dev" : [ "uma_protection" ], + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "9c57f6db-6643-48b4-8fc8-cb48c627e6df", + "createdTimestamp" : 1674719353111, + "username" : "ssi-user", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "firstName" : "Aitor", + "lastName" : "GG", + "email" : "aitor.gomez@tecnalia.com", + "credentials" : [ { + "id" : "40582145-880c-4421-991f-8deaa243ffc4", + "type" : "password", + "createdDate" : 1674719424557, + "secretData" : "{\"value\":\"cDkRTyBio4JGyNnbmeJxuoXU3XA07VJ/A1jsrfZX93HXWqM2rfQdWDFl5wlqvyvaHLH+m5UICNPzPMhUg2qhfQ==\",\"salt\":\"ZM/7ntKfebO0NJ3/aOeZDg==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "ROLE_USER", "offline_access", "Auditor", "uma_authorization", "Compliance Manager" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "77bce8b9-706d-4249-a4cc-cacfa5a5b91b", + "createdTimestamp" : 1671626314628, + "username" : "t2", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "credentials" : [ { + "id" : "cbb382dd-a160-4202-a8c0-861afb87cf02", + "type" : "password", + "createdDate" : 1671626348428, + "secretData" : "{\"value\":\"dHUuLiejLrygJr6HaIwDqrwxu/ssA9/VIj9m51hSxnauSOp9hpmIGRmCYCZic0zvta/3mw1N2XUVfCW5KWR/Sw==\",\"salt\":\"bYGVI+Zooj2/GvXZ2MEStQ==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "ROLE_USER", "offline_access", "uma_authorization", "ROLE_ADMIN", "Compliance Manager" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "2ea72f64-2701-4b3b-ba1d-532149d37202", + "createdTimestamp" : 1652186093284, + "username" : "test_compliance_manager", + "enabled" : true, + "totp" : true, + "emailVerified" : true, + "firstName" : "Test", + "lastName" : "Manager", + "email" : "test@manager.com", + "credentials" : [ { + "id" : "70348399-c811-4b3e-96a3-991579b32bb7", + "type" : "password", + "createdDate" : 1652186110401, + "secretData" : "{\"value\":\"7bYUhg72bGCJCY+PRnuL0yO496Miksy+Psc+YGGWPtD0OJdzIvhGW0B6wnj6YInAQEfh8TN/h/FqLDkQMIYWcg==\",\"salt\":\"TGfGXtzLm0dPGXjuT2dCnw==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + }, { + "id" : "1d57e74b-6017-4d55-bb0d-25d434748402", + "type" : "otp", + "userLabel" : "Mobile Phone", + "createdDate" : 1652186263250, + "secretData" : "{\"value\":\"Dgk5BqB0qJ1k9Afll5mj\"}", + "credentialData" : "{\"subType\":\"totp\",\"digits\":6,\"counter\":0,\"period\":30,\"algorithm\":\"HmacSHA1\"}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization", "Compliance Manager" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "e19545f8-3579-483f-9004-790d578dddfa", + "createdTimestamp" : 1674145886816, + "username" : "uc1_auditor", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "credentials" : [ { + "id" : "70d94477-ceec-4932-9935-4ee984d14389", + "type" : "password", + "createdDate" : 1674145904588, + "secretData" : "{\"value\":\"ksIULvCzo+bvULy0jirrF8rtvbbWAfyzSy/eMfuqF5mnziIGqxWyIC+KwAQTqhys8l7rTaGZLNzdyn17r1/K0Q==\",\"salt\":\"RvlSLO78qi1K8lGMxOhNHg==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "Auditor", "uma_authorization" ], + "clientRoles" : { + "raof" : [ "engine" ], + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ "/CloudServicesGroup/Bosch_IaaS", "/CloudServicesGroup/Bosch_PaaS" ] + }, { + "id" : "6d6d63b1-e1fd-461e-9427-d2891934f2c8", + "createdTimestamp" : 1674145751069, + "username" : "uc1_ciso", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "credentials" : [ { + "id" : "fb3515d2-cb63-4755-9891-a59bfe03de91", + "type" : "password", + "createdDate" : 1674145765210, + "secretData" : "{\"value\":\"YpfIVnyCtPFS0eIw6hOvrR6IN5KtejRLRaS+uOvp1MTUTXqzBSi7eeJyBFs2f/LEuwW2M2+1MocaJDmT+AOZCg==\",\"salt\":\"cTW2gbBBk6chX9YZcQZNEg==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization", "CISO" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ "/AlwaysGreen", "/AlwaysGreenExceptOne", "/AlwaysRed", "/CloudServicesGroup/Bosch", "/CloudServiceProvidersGroup/Bosch Cloud Service Provider", "/CloudServicesGroup/Bosch_IaaS", "/CloudServicesGroup/Bosch_PaaS", "/CloudServicesGroup/Bosch_SaaS", "/CloudServiceProvidersGroup/CloudServiceProviderTest1", "/CloudServicesGroup/CloudServiceTest1", "/CloudServicesGroup/CloudServiceTest2", "/CloudServicesGroup/CloudServiceWithValidUUID", "/CloudServicesGroup/DefaultCloudService", "/CloudServicesGroup/Fabasoft", "/CloudServiceProvidersGroup/Fabasoft Cloud Service Provider", "/CloudServicesGroup/MichelaCS1", "/CloudServicesGroup/TestCCDCloudService", "/CloudServicesGroup/hpe-csid1", "/CloudServicesGroup/hpe-csid2" ] + }, { + "id" : "a297bee2-1e9e-4c2b-aee8-9895816ab47c", + "createdTimestamp" : 1674145341569, + "username" : "uc1_domgov", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "credentials" : [ { + "id" : "5b4aad96-5016-42df-afec-f9893e280c4d", + "type" : "password", + "createdDate" : 1674145359184, + "secretData" : "{\"value\":\"N6w0KcmWLsMENdat9eaMRoM34QZAxPjEiT55YVvnmEF6v2j6RNqHVv17hXWyXsEkNalyRi7jaERxOF3IQGF0kA==\",\"salt\":\"8jkW8WDLldHOJ1h5F7oGKg==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "SecurityGovernance", "uma_authorization" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ "/CloudServicesGroup/Bosch_IaaS", "/CloudServicesGroup/Bosch_PaaS" ] + }, { + "id" : "d7b43b52-b048-4fea-a90b-ce6388b18831", + "createdTimestamp" : 1674145455906, + "username" : "uc1_prodown", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "credentials" : [ { + "id" : "0544042d-3b6d-4995-a680-30c8f398e688", + "type" : "password", + "createdDate" : 1674145475221, + "secretData" : "{\"value\":\"RwVqLSQax/flyOgNk1cHoYoAmA0+uhE4K7jrn+hgTZ2k/CPuuhWcXTh8C/QjO0TmiSKj9tew1SiWDjY+vdr8AQ==\",\"salt\":\"MRKS4kOhNIhivhjPFgVxVA==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization", "ProductOwner" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ "/CloudServicesGroup/Bosch_IaaS" ] + }, { + "id" : "027b55fb-dec7-4ae2-a9e6-eaf6a3cd0f50", + "createdTimestamp" : 1674145592731, + "username" : "uc1_prodsec", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "credentials" : [ { + "id" : "e8bb2853-4cdc-4392-bde3-03549222999f", + "type" : "password", + "createdDate" : 1674145608293, + "secretData" : "{\"value\":\"tQcf31ARRsR2FMO9NsadvUG+TVtVrL3krEebP0C2aX3HfyT3yKc9WWK9vB7jg5eyEsj8cJ2bVyo0jXkw5xnfrg==\",\"salt\":\"qYccy+Nsyj9+uJ56Jf9NmQ==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "ProductSecurityEng", "uma_authorization" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ "/CloudServicesGroup/Bosch_IaaS" ] + }, { + "id" : "8cd26e6b-af60-4192-9962-489ac1a586c2", + "createdTimestamp" : 1674144766118, + "username" : "uc1_secanalyst", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "credentials" : [ { + "id" : "201521cd-677e-4a0b-91f4-be2a240747c4", + "type" : "password", + "createdDate" : 1674144783147, + "secretData" : "{\"value\":\"5Akf4Tyfbenem77IjCv2enXE90qzVCTcRVZq+2FguHTbaY3TTlwDjKmzHMXaia8h2rmOc3x9F0Eo+E9DMWFczQ==\",\"salt\":\"rWV6q1kzfej5oTOOEVlHyQ==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "SecurityAnalyst", "uma_authorization" ], + "clientRoles" : { + "integrated-ui" : [ "user", "showSATRA", "showCCE", "showAMOE", "showUser", "showCNL", "showCatalogue", "showOrchestrator", "admin" ], + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ "/CloudServicesGroup/Bosch_IaaS", "/CloudServicesGroup/Bosch_PaaS", "/CloudServicesGroup/Bosch_SaaS" ] + }, { + "id" : "20a895c6-4cb9-4707-a06c-804d5328b67c", + "createdTimestamp" : 1674144525022, + "username" : "uc1_secgov", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "credentials" : [ { + "id" : "6f2db9a7-2879-43cc-9581-6bd8682052c0", + "type" : "password", + "createdDate" : 1674144659301, + "secretData" : "{\"value\":\"b1RipaQ+5wTvV3auTm1y7E8JqqY7XyWjOk3PFcQcKtVvHX0I9mEsem05nd2qImgX2M4d25Udshsv2WkY9v3yfw==\",\"salt\":\"if6yR8YUa7oV2UYXB8gBDg==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "SecurityGovernance", "uma_authorization" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ "/CloudServicesGroup/Bosch_IaaS", "/CloudServicesGroup/Bosch_PaaS", "/CloudServicesGroup/Bosch_SaaS" ] + }, { + "id" : "a2d9c454-960f-47e9-860e-e1876cdd81e7", + "createdTimestamp" : 1648054983093, + "username" : "user", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "firstName" : "U.", + "lastName" : "Ser", + "email" : "user@localhost", + "credentials" : [ { + "id" : "b6a60d24-da76-47f4-a07b-885bac646b7a", + "type" : "password", + "createdDate" : 1650406346090, + "secretData" : "{\"value\":\"NTNpm0k7ky3gLf9pcYTklGY8qn0LPwCrhUYu94nhHVUl1vp5IHb5eSjgFJjpFaKKObNDcz7qJFWjyJ/mWCtwGA==\",\"salt\":\"fQAJhWFTktzewkFQ5ypbRQ==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "ROLE_USER", "offline_access", "Auditor", "uma_authorization" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "228eed5c-845a-42b6-a60d-27bfe62167c3", + "createdTimestamp" : 1659009856941, + "username" : "usertest", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "credentials" : [ { + "id" : "5909c50c-2225-4403-8995-3132b851b1c0", + "type" : "password", + "createdDate" : 1659009866614, + "secretData" : "{\"value\":\"PNVxA2+Kv2nyJfQjLcDvYagzfE/loAyrsJ1QEUkhL/bVWDku+VJu/QkCKXU1Dr4rTnTGBaOxl2ASFoRm6oP3Cg==\",\"salt\":\"T0N9Ed98G4wz5iBwyo2tRQ==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization", "Compliance Manager" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ "/CloudServiceProvidersGroup/CloudServiceProviderTest1", "/CloudServicesGroup/CloudServiceTest1" ] + }, { + "id" : "a3f3653e-d47e-4d21-bae4-40265bf90318", + "createdTimestamp" : 1667576437610, + "username" : "xlab", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "credentials" : [ { + "id" : "9238dc63-0ef0-47a9-8c53-2bce6f4f35b2", + "type" : "password", + "createdDate" : 1667576457684, + "secretData" : "{\"value\":\"jw9KOFdG6tGZBMY7NdX2FNtvCBXfq4igmlEOCZ67jPRaWpPASPlnYD5EVqNfcmVBvGmnjV73PMUgo4L/Zg/9pw==\",\"salt\":\"DRbV1mX842qUu+Zifrm4Gg==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "Customer", "ROLE_USER", "offline_access", "Auditor", "Company", "ICO", "uma_authorization", "CISO", "test-role-1", "Compliance Manager" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + } ], + "scopeMappings" : [ { + "clientScope" : "offline_access", + "roles" : [ "offline_access" ] + } ], + "clientScopeMappings" : { + "account" : [ { + "client" : "account-console", + "roles" : [ "manage-account" ] + } ] + }, + "clients" : [ { + "id" : "8bd89baf-08f6-4e4b-8394-6b4dd6050ed2", + "clientId" : "account", + "name" : "${client_account}", + "rootUrl" : "${authBaseUrl}", + "baseUrl" : "/realms/medina/account/", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "533f8bfc-73ca-4950-a17e-29510052e70a", + "defaultRoles" : [ "manage-account", "view-profile" ], + "redirectUris" : [ "/realms/medina/account/*" ], + "webOrigins" : [ ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : false, + "serviceAccountsEnabled" : false, + "publicClient" : false, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : false, + "nodeReRegistrationTimeout" : 0, + "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "8f7fee7a-d32e-4c08-85fd-0a92ace43970", + "clientId" : "account-console", + "name" : "${client_account-console}", + "rootUrl" : "${authBaseUrl}", + "baseUrl" : "/realms/medina/account/", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "0ffbdc8a-e2b4-4693-abc0-cf08d0a3127e", + "redirectUris" : [ "/realms/medina/account/*" ], + "webOrigins" : [ ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : false, + "serviceAccountsEnabled" : false, + "publicClient" : true, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "pkce.code.challenge.method" : "S256" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : false, + "nodeReRegistrationTimeout" : 0, + "protocolMappers" : [ { + "id" : "edc42cad-bd34-4811-8354-0adaee774340", + "name" : "audience resolve", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-audience-resolve-mapper", + "consentRequired" : false, + "config" : { } + } ], + "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "24244b46-4845-4734-a061-bcb8ec91b84c", + "clientId" : "admin-cli", + "name" : "${client_admin-cli}", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "c29d2164-1f3d-476b-951c-c5eea7518fd6", + "redirectUris" : [ ], + "webOrigins" : [ ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : false, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : true, + "serviceAccountsEnabled" : true, + "publicClient" : false, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "false", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : 0, + "protocolMappers" : [ { + "id" : "8b8f8749-0adc-492d-a73d-3029413881be", + "name" : "Client ID", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientId", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientId", + "jsonType.label" : "String" + } + }, { + "id" : "6117fb7e-ecbe-4f0f-90da-d5a5c805e5d7", + "name" : "Client IP Address", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientAddress", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientAddress", + "jsonType.label" : "String" + } + }, { + "id" : "786a08b5-a459-43d0-b0d4-1d45a084a14a", + "name" : "Client Host", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientHost", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientHost", + "jsonType.label" : "String" + } + } ], + "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "a25b15fc-202b-4dc6-9340-fcc94f491a24", + "clientId" : "amoe-client", + "rootUrl" : "https://amoe-dev.192.168.56.1.nip.io/", + "adminUrl" : "https://amoe-dev.192.168.56.1.nip.io/", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "781dfe86-109c-47f5-8776-72a1aad0a370", + "redirectUris" : [ "*" ], + "webOrigins" : [ "*" ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : true, + "serviceAccountsEnabled" : false, + "publicClient" : false, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "backchannel.logout.url" : "https://amoe-dev.192.168.56.1.nip.io/openid/logout_request", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "protocolMappers" : [ { + "id" : "7adfc5e5-5248-4737-8b84-78567a897980", + "name" : "Client Host", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientHost", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientHost", + "jsonType.label" : "String" + } + }, { + "id" : "f96e6e25-77e4-4ffe-a4ca-5081f6dd3488", + "name" : "Client ID", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientId", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientId", + "jsonType.label" : "String" + } + }, { + "id" : "0078d78f-a368-41c5-9c41-16ba08b0dd64", + "name" : "Client IP Address", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientAddress", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientAddress", + "jsonType.label" : "String" + } + } ], + "defaultClientScopes" : [ "web-origins", "role_list", "cloudservice", "offline_access", "profile", "roles", "cladmin-backend-services", "email" ], + "optionalClientScopes" : [ "address", "phone", "microprofile-jwt" ] + }, { + "id" : "a08fc1fe-7c85-4c1c-9d04-604c6e35faa8", + "clientId" : "api-swagger", + "rootUrl" : "https://api-swagger-dev.192.168.56.1.nip.io", + "adminUrl" : "https://api-swagger-dev.192.168.56.1.nip.io", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "c29a5cf2-52c0-4fa2-89fc-8951fa80ce84", + "redirectUris" : [ "https://api-swagger-dev.192.168.56.1.nip.io/*" ], + "webOrigins" : [ "https://api-swagger-dev.192.168.56.1.nip.io" ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : true, + "serviceAccountsEnabled" : true, + "authorizationServicesEnabled" : true, + "publicClient" : false, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "protocolMappers" : [ { + "id" : "a1b33188-ca81-44c0-ba56-772581a94038", + "name" : "Client IP Address", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientAddress", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientAddress", + "jsonType.label" : "String" + } + }, { + "id" : "7455b7e4-2b73-4a6d-b7e6-8434370a7a85", + "name" : "Client Host", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientHost", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientHost", + "jsonType.label" : "String" + } + }, { + "id" : "d9167dc9-6937-4bea-bc20-6e885857ccd0", + "name" : "Client ID", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientId", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientId", + "jsonType.label" : "String" + } + } ], + "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ], + "authorizationSettings" : { + "allowRemoteResourceManagement" : true, + "policyEnforcementMode" : "ENFORCING", + "resources" : [ { + "name" : "Default Resource", + "type" : "urn:api-swagger:resources:default", + "ownerManagedAccess" : false, + "attributes" : { }, + "_id" : "b8d55282-f977-4e89-9e8e-2b3e8ef07200", + "uris" : [ "/*" ] + } ], + "policies" : [ { + "id" : "9dc0a736-90a6-4428-be5a-0695b9153f93", + "name" : "Default Policy", + "description" : "A policy that grants access only for users within this realm", + "type" : "js", + "logic" : "POSITIVE", + "decisionStrategy" : "AFFIRMATIVE", + "config" : { + "code" : "// by default, grants any permission associated with this policy\n$evaluation.grant();\n" + } + }, { + "id" : "4058b893-6396-4351-ae9c-e4ecf5329d18", + "name" : "Default Permission", + "description" : "A permission that applies to the default resource type", + "type" : "resource", + "logic" : "POSITIVE", + "decisionStrategy" : "UNANIMOUS", + "config" : { + "defaultResourceType" : "urn:api-swagger:resources:default", + "applyPolicies" : "[\"Default Policy\"]" + } + } ], + "scopes" : [ ], + "decisionStrategy" : "UNANIMOUS" + } + }, { + "id" : "8d1a867d-537c-433e-8234-b3582127cc54", + "clientId" : "broker", + "name" : "${client_broker}", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "4293f846-3a76-4628-a9a4-810bebcdc51b", + "redirectUris" : [ ], + "webOrigins" : [ ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : false, + "serviceAccountsEnabled" : false, + "publicClient" : false, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : false, + "nodeReRegistrationTimeout" : 0, + "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "df274002-83dd-4c7f-b64b-8cf7b90d9a97", + "clientId" : "catalogue-backend", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "47b59168-f965-4a6f-941c-ae7ee1ba463c", + "redirectUris" : [ ], + "webOrigins" : [ ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : false, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : false, + "serviceAccountsEnabled" : true, + "publicClient" : false, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "protocolMappers" : [ { + "id" : "6ea5df11-551c-44e4-a4e7-74e787bea43e", + "name" : "Client Host", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientHost", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientHost", + "jsonType.label" : "String" + } + }, { + "id" : "0544b98a-f678-4395-b3cf-bdb0529a5661", + "name" : "Client IP Address", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientAddress", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientAddress", + "jsonType.label" : "String" + } + }, { + "id" : "adace2ba-512e-4856-a187-75031220377d", + "name" : "Client ID", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientId", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientId", + "jsonType.label" : "String" + } + } ], + "defaultClientScopes" : [ "web-origins", "role_list", "cloudservice", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "fa074dc3-e8de-4f34-9437-dc5d93f60f9a", + "clientId" : "catalogue-gateway", + "rootUrl" : "https://192.168.56.1.nip.io", + "adminUrl" : "https://192.168.56.1.nip.io", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "1895c8be-10f2-4243-a7da-8443aa1a2851", + "redirectUris" : [ "*" ], + "webOrigins" : [ "*" ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : true, + "directAccessGrantsEnabled" : false, + "serviceAccountsEnabled" : false, + "publicClient" : true, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "defaultClientScopes" : [ "web-origins", "jhipster", "role_list", "cloudservice", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "b7769853-8605-4a36-9352-7633d3be0f22", + "clientId" : "catalogue-jhipster-control-center", + "rootUrl" : "http://localhost:7419", + "adminUrl" : "http://localhost:7419", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "a77e5efc-e542-4ed2-b8a2-535fe4c4fb34", + "redirectUris" : [ "dev.localhost.ionic:*", "http://127.0.0.1:*", "http://localhost:*", "https://127.0.0.1:*", "https://localhost:*" ], + "webOrigins" : [ "*" ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : true, + "directAccessGrantsEnabled" : false, + "serviceAccountsEnabled" : false, + "publicClient" : true, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "645cf799-be24-42fd-a169-f9d5fc39be31", + "clientId" : "catalogue-registry", + "rootUrl" : "https://registry.192.168.56.1.nip.io", + "adminUrl" : "https://registry.192.168.56.1.nip.io", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "ff31a06d-d850-48d2-8355-6723e856c1b6", + "redirectUris" : [ "*" ], + "webOrigins" : [ "*" ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : true, + "serviceAccountsEnabled" : false, + "publicClient" : true, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "defaultClientScopes" : [ "web-origins", "jhipster", "role_list", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "12d63192-94cd-4692-b557-ab76a331eaa6", + "clientId" : "ccd-client", + "name" : "Company compliance dashboard", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "cc728558-1c40-48ae-8be4-e48b582a727a", + "redirectUris" : [ "http://localhost:8080/" ], + "webOrigins" : [ ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : true, + "serviceAccountsEnabled" : false, + "publicClient" : false, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "defaultClientScopes" : [ "web-origins", "role_list", "cloudservice", "profile", "roles", "cladmin-backend-services", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "dc64b28b-a696-4b0c-8e24-2aeae138c3e5", + "clientId" : "cce", + "rootUrl" : "http://cce-api-dev.192.168.56.1.nip.io", + "adminUrl" : "http://cce-api-dev.192.168.56.1.nip.io", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "efe3acb8-b4c1-43f0-a3a2-b75402e76afc", + "redirectUris" : [ "https://cce-api-dev.192.168.56.1.nip.io/*" ], + "webOrigins" : [ "http://cce-api-dev.192.168.56.1.nip.io" ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : true, + "serviceAccountsEnabled" : true, + "authorizationServicesEnabled" : true, + "publicClient" : false, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "access.token.lifespan" : "3600", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "protocolMappers" : [ { + "id" : "12f94f61-bb5e-41dc-ae0b-20206ff6173c", + "name" : "Client IP Address", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientAddress", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientAddress", + "jsonType.label" : "String" + } + }, { + "id" : "3920d8ac-45ea-4bf5-a203-1c831cb845ab", + "name" : "Client Host", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientHost", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientHost", + "jsonType.label" : "String" + } + }, { + "id" : "75f9dc3a-6aaa-4206-9c52-729d326117ef", + "name" : "cladmin", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-hardcoded-claim-mapper", + "consentRequired" : false, + "config" : { + "claim.value" : "true", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "cladmin", + "jsonType.label" : "boolean", + "access.tokenResponse.claim" : "false" + } + }, { + "id" : "5f427941-d12d-432c-b883-ac39fe209705", + "name" : "Client ID", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientId", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientId", + "jsonType.label" : "String" + } + } ], + "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "cladmin-backend-services", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ], + "authorizationSettings" : { + "allowRemoteResourceManagement" : true, + "policyEnforcementMode" : "ENFORCING", + "resources" : [ { + "name" : "Default Resource", + "type" : "urn:cce-dev:resources:default", + "ownerManagedAccess" : false, + "attributes" : { }, + "_id" : "ef475897-65aa-4813-a810-340268090336", + "uris" : [ "/*" ] + } ], + "policies" : [ { + "id" : "ff85e02d-5048-473c-8bd0-fa22b6574852", + "name" : "Default Policy", + "description" : "A policy that grants access only for users within this realm", + "type" : "js", + "logic" : "POSITIVE", + "decisionStrategy" : "AFFIRMATIVE", + "config" : { + "code" : "// by default, grants any permission associated with this policy\n$evaluation.grant();\n" + } + }, { + "id" : "043cee90-99a8-4f2b-9ad2-3f37ce518483", + "name" : "Default Permission", + "description" : "A permission that applies to the default resource type", + "type" : "resource", + "logic" : "POSITIVE", + "decisionStrategy" : "UNANIMOUS", + "config" : { + "defaultResourceType" : "urn:cce-dev:resources:default", + "applyPolicies" : "[\"Default Policy\"]" + } + } ], + "scopes" : [ ], + "decisionStrategy" : "UNANIMOUS" + } + }, { + "id" : "3917091b-6bf1-4865-96e2-141077a43b92", + "clientId" : "cce-frontend", + "rootUrl" : "https://cce-dev.192.168.56.1.nip.io", + "adminUrl" : "https://cce-dev.192.168.56.1.nip.io", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "59e20d74-9053-4f7e-9cc8-cd63bd5c4909", + "redirectUris" : [ "https://cce-dev.192.168.56.1.nip.io/*" ], + "webOrigins" : [ "https://cce-dev.192.168.56.1.nip.io" ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : true, + "serviceAccountsEnabled" : false, + "publicClient" : true, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "backchannel.logout.session.required" : "true", + "backchannel.logout.revoke.offline.tokens" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "defaultClientScopes" : [ "web-origins", "role_list", "cloudservice", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "4a57f2cd-5b99-4b78-ba31-d994521abd30", + "clientId" : "clouditor-assessment", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "4a47f42a-df33-418f-b687-64e7c8ffbbda", + "redirectUris" : [ "https://security-assessment-dev.192.168.56.1.nip.io" ], + "webOrigins" : [ ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : false, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : false, + "serviceAccountsEnabled" : true, + "publicClient" : false, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "protocolMappers" : [ { + "id" : "caf7c5a7-f72e-44d8-aa9d-37c185e415ca", + "name" : "Client ID", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientId", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientId", + "jsonType.label" : "String" + } + }, { + "id" : "7dde8113-bf11-4cb4-be6b-d342ed64b1b6", + "name" : "Client Host", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientHost", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientHost", + "jsonType.label" : "String" + } + }, { + "id" : "1261d141-6010-4868-b659-2ce26e1680b4", + "name" : "Client IP Address", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientAddress", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientAddress", + "jsonType.label" : "String" + } + } ], + "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "cladmin-backend-services", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "69bba521-b088-45a6-9e56-bd29e557cea4", + "clientId" : "clouditor-cli", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "c3228efe-8dc3-4c09-bc89-8bdc362ae878", + "redirectUris" : [ "http://localhost:10000/callback" ], + "webOrigins" : [ ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : false, + "serviceAccountsEnabled" : false, + "publicClient" : true, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "protocolMappers" : [ { + "id" : "d6f6611d-8fa1-4116-82db-e23ee7574c0c", + "name" : "cladmin", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-attribute-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "cladmin", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "cladmin", + "jsonType.label" : "boolean" + } + } ], + "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "8fedfacb-2df9-4342-be33-7d3e18dc316f", + "clientId" : "clouditor-discovery", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "2f38b7bd-c3fa-4e7b-af59-5b8d67ddd8c1", + "redirectUris" : [ "https://orchestrator-dev.192.168.56.1.nip.io/" ], + "webOrigins" : [ ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : false, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : false, + "serviceAccountsEnabled" : true, + "publicClient" : false, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "protocolMappers" : [ { + "id" : "8dfab4e0-512c-4879-8878-c949ba32a641", + "name" : "Client Host", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientHost", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientHost", + "jsonType.label" : "String" + } + }, { + "id" : "9bba24ce-80f6-4a69-844d-7406c39d678b", + "name" : "Client ID", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientId", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientId", + "jsonType.label" : "String" + } + }, { + "id" : "112001f6-9584-4949-9d79-4d8e337bb9eb", + "name" : "Client IP Address", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientAddress", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientAddress", + "jsonType.label" : "String" + } + } ], + "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "cladmin-backend-services", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "fb2b3d0e-e2d7-4cb2-819d-bab9043f0d11", + "clientId" : "clouditor-orchestrator", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "eb100a60-92f7-4321-b9a6-55e8f82bc3a7", + "redirectUris" : [ ], + "webOrigins" : [ ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : false, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : false, + "serviceAccountsEnabled" : true, + "publicClient" : false, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "protocolMappers" : [ { + "id" : "1cefc460-e6b3-4077-a9f1-dab69ca3e2ba", + "name" : "Client ID", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientId", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientId", + "jsonType.label" : "String" + } + }, { + "id" : "34f93a44-5113-4638-bff8-4c89544a512e", + "name" : "Client Host", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientHost", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientHost", + "jsonType.label" : "String" + } + }, { + "id" : "cced5616-8012-473d-9cfb-95cf88efad11", + "name" : "Client IP Address", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientAddress", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientAddress", + "jsonType.label" : "String" + } + } ], + "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "fcf4c413-07b8-40e1-9ee0-2ffa646dfdf5", + "clientId" : "clouditor-ui", + "rootUrl" : "https://orchestrator-dev.192.168.56.1.nip.io", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "7a189e46-8e44-4968-9228-2115e84dbcdd", + "redirectUris" : [ "https://orchestrator-dev.192.168.56.1.nip.io/callback" ], + "webOrigins" : [ "https://orchestrator-dev.192.168.56.1.nip.io" ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : false, + "serviceAccountsEnabled" : false, + "publicClient" : true, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "protocolMappers" : [ { + "id" : "1489a48c-4d85-4566-a4f6-b453809bfaf3", + "name" : "cladmin", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-attribute-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "cladmin", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "cladmin", + "jsonType.label" : "boolean" + } + } ], + "defaultClientScopes" : [ "web-origins", "role_list", "cloudservice", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "15a81bd1-4edd-4e2a-87ec-3bbcac30d2a3", + "clientId" : "cnl-editor-frontend", + "rootUrl" : "https://cnl-editor-frontend-dev.192.168.56.1.nip.io", + "adminUrl" : "https://cnl-editor-frontend-dev.192.168.56.1.nip.io", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "e6b76254-187d-441b-9061-cb6b03dd51a4", + "redirectUris" : [ "http://cnl-editor-frontend-dev.192.168.56.1.nip.io/*", "https://cnl-editor-frontend-dev.192.168.56.1.nip.io/*" ], + "webOrigins" : [ "https://cnl-editor-frontend-dev.192.168.56.1.nip.io" ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : true, + "serviceAccountsEnabled" : false, + "publicClient" : true, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "defaultClientScopes" : [ "web-origins", "role_list", "cloudservice", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "01fce0c3-2db7-46dd-af1c-115dc1800053", + "clientId" : "codyze", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "7ff65ca2-a54a-4093-84f3-3b5756cc4e5c", + "redirectUris" : [ ], + "webOrigins" : [ ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : false, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : false, + "serviceAccountsEnabled" : true, + "publicClient" : false, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "protocolMappers" : [ { + "id" : "43fbe8e9-8141-4868-b85c-91220bd5f08f", + "name" : "Client IP Address", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientAddress", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientAddress", + "jsonType.label" : "String" + } + }, { + "id" : "ab5e553c-34e4-4411-b6c2-23235f3d7f84", + "name" : "Client ID", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientId", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientId", + "jsonType.label" : "String" + } + }, { + "id" : "8d070365-134e-4302-b0bd-e6ce82b1c2db", + "name" : "Client Host", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientHost", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientHost", + "jsonType.label" : "String" + } + } ], + "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "cladmin-backend-services", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "4cb90bba-1483-48f8-85c3-af800943c740", + "clientId" : "dsl-mapper-client", + "rootUrl" : "https://dsl-mapper-dev.192.168.56.1.nip.io/", + "adminUrl" : "https://dsl-mapper-dev.192.168.56.1.nip.io/", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "0fa48e19-90a5-4e6c-addd-446691dbf8eb", + "redirectUris" : [ "https://dsl-mapper-dev.192.168.56.1.nip.io/*" ], + "webOrigins" : [ "https://dsl-mapper-dev.192.168.56.1.nip.io" ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : true, + "serviceAccountsEnabled" : true, + "authorizationServicesEnabled" : true, + "publicClient" : false, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "protocolMappers" : [ { + "id" : "987c2d9a-ef46-4d60-881d-72d495260d07", + "name" : "Client Host", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientHost", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientHost", + "jsonType.label" : "String" + } + }, { + "id" : "7c8815a1-7820-46ed-93d8-45398092f0ff", + "name" : "Client IP Address", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientAddress", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientAddress", + "jsonType.label" : "String" + } + }, { + "id" : "c5b8af61-2816-47e9-aa22-743172954c8c", + "name" : "Client ID", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientId", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientId", + "jsonType.label" : "String" + } + }, { + "id" : "ac9a4d80-4c93-4875-95e4-e8bd7e7150c0", + "name" : "cladmin", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-hardcoded-claim-mapper", + "consentRequired" : false, + "config" : { + "claim.value" : "true", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "cladmin", + "jsonType.label" : "boolean", + "access.tokenResponse.claim" : "false" + } + } ], + "defaultClientScopes" : [ "web-origins", "role_list", "cloudservice", "profile", "roles", "cladmin-backend-services", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ], + "authorizationSettings" : { + "allowRemoteResourceManagement" : true, + "policyEnforcementMode" : "ENFORCING", + "resources" : [ { + "name" : "Default Resource", + "type" : "urn:dsl-mapper-client:resources:default", + "ownerManagedAccess" : false, + "attributes" : { }, + "_id" : "09ef8b92-846c-4f44-af8a-73138006111b", + "uris" : [ "/*" ] + } ], + "policies" : [ { + "id" : "586e6b4a-0614-4102-b48d-cd633f918809", + "name" : "Default Policy", + "description" : "A policy that grants access only for users within this realm", + "type" : "js", + "logic" : "POSITIVE", + "decisionStrategy" : "AFFIRMATIVE", + "config" : { + "code" : "// by default, grants any permission associated with this policy\n$evaluation.grant();\n" + } + }, { + "id" : "43e2f264-68dc-44a6-9db2-f2f31dcb67ad", + "name" : "Default Permission", + "description" : "A permission that applies to the default resource type", + "type" : "resource", + "logic" : "POSITIVE", + "decisionStrategy" : "UNANIMOUS", + "config" : { + "defaultResourceType" : "urn:dsl-mapper-client:resources:default", + "applyPolicies" : "[\"Default Policy\"]" + } + } ], + "scopes" : [ ], + "decisionStrategy" : "UNANIMOUS" + } + }, { + "id" : "1150f83f-37bc-4b14-98a0-e179aaee0f6c", + "clientId" : "integrated-ui", + "rootUrl" : "https://integrated-ui-dev.192.168.56.1.nip.io", + "adminUrl" : "https://integrated-ui-dev.192.168.56.1.nip.io", + "baseUrl" : "https://integrated-ui-dev.192.168.56.1.nip.io", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "9049e030-2e66-496e-accf-b7a5037bc0eb", + "redirectUris" : [ "", "https://integrated-ui-dev.192.168.56.1.nip.io/*" ], + "webOrigins" : [ "https://integrated-ui-dev.192.168.56.1.nip.io" ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : true, + "serviceAccountsEnabled" : false, + "publicClient" : true, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "defaultClientScopes" : [ "web-origins", "role_list", "cloudservice", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "095fac49-b0b4-4c44-b5b9-fa22bed6d160", + "clientId" : "life-cycle-manager", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "0191bfe6-1d93-4d89-b1e4-4b505d348057", + "redirectUris" : [ ], + "webOrigins" : [ ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : false, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : false, + "serviceAccountsEnabled" : true, + "publicClient" : false, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "protocolMappers" : [ { + "id" : "415b43bf-765a-4dba-a488-2dd969b7b253", + "name" : "cladmin", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-hardcoded-claim-mapper", + "consentRequired" : false, + "config" : { + "claim.value" : "true", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "cladmin", + "jsonType.label" : "boolean", + "access.tokenResponse.claim" : "false" + } + }, { + "id" : "cdb336c7-b22f-44c6-b30b-9136364b8229", + "name" : "Client IP Address", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientAddress", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientAddress", + "jsonType.label" : "String" + } + }, { + "id" : "3c6e3fe1-37bb-4ef0-a162-720b0d78b3af", + "name" : "Client ID", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientId", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientId", + "jsonType.label" : "String" + } + }, { + "id" : "e39ee5e2-dd4a-4d0e-9fc3-a0a84b200143", + "name" : "Client Host", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientHost", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientHost", + "jsonType.label" : "String" + } + } ], + "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "cladmin-backend-services", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "9f7c65f7-9ae9-4c9e-9bd7-971d0cbe146d", + "clientId" : "nl2cnl-translator-client", + "rootUrl" : "https://nl2cnl-translator-dev.192.168.56.1.nip.io/", + "adminUrl" : "https://nl2cnl-translator-dev.192.168.56.1.nip.io/", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "b1d1d98d-b5e5-46ac-9b45-30502cfb53ab", + "redirectUris" : [ "https://nl2cnl-translator-dev.192.168.56.1.nip.io/*" ], + "webOrigins" : [ "https://nl2cnl-translator-dev.192.168.56.1.nip.io" ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : true, + "serviceAccountsEnabled" : true, + "authorizationServicesEnabled" : true, + "publicClient" : false, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "protocolMappers" : [ { + "id" : "ad2d1f98-62a8-4859-8cce-1ce4034b9920", + "name" : "Client Host", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientHost", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientHost", + "jsonType.label" : "String" + } + }, { + "id" : "480e69e8-ebca-4e89-8d20-24bba626bbce", + "name" : "Client ID", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientId", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientId", + "jsonType.label" : "String" + } + }, { + "id" : "42724a07-f05f-4d65-82cb-b1c2288810d8", + "name" : "Client IP Address", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientAddress", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientAddress", + "jsonType.label" : "String" + } + } ], + "defaultClientScopes" : [ "web-origins", "role_list", "cloudservice", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ], + "authorizationSettings" : { + "allowRemoteResourceManagement" : true, + "policyEnforcementMode" : "ENFORCING", + "resources" : [ { + "name" : "Default Resource", + "type" : "urn:nl2cnl-translator-client:resources:default", + "ownerManagedAccess" : false, + "attributes" : { }, + "_id" : "cf0de028-f233-4f59-83cb-3d60d34450a3", + "uris" : [ "/*" ] + } ], + "policies" : [ { + "id" : "46935297-5bfb-4a43-b493-b28efe8c863b", + "name" : "Default Policy", + "description" : "A policy that grants access only for users within this realm", + "type" : "js", + "logic" : "POSITIVE", + "decisionStrategy" : "AFFIRMATIVE", + "config" : { + "code" : "// by default, grants any permission associated with this policy\n$evaluation.grant();\n" + } + }, { + "id" : "9cd3da2f-0302-4033-a9ed-36758ffa7730", + "name" : "Default Permission", + "description" : "A permission that applies to the default resource type", + "type" : "resource", + "logic" : "POSITIVE", + "decisionStrategy" : "UNANIMOUS", + "config" : { + "defaultResourceType" : "urn:nl2cnl-translator-client:resources:default", + "applyPolicies" : "[\"Default Policy\"]" + } + } ], + "scopes" : [ ], + "decisionStrategy" : "UNANIMOUS" + } + }, { + "id" : "785a9f77-d06f-4a65-9ba9-341921fda61a", + "clientId" : "raof", + "rootUrl" : "http://risk-assessment-engine-dev.192.168.56.1.nip.io", + "adminUrl" : "http://risk-assessment-engine-dev.192.168.56.1.nip.io", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "92d45bca-073b-49e3-8b23-2615f7fcbb3e", + "redirectUris" : [ "http://risk-assessment-engine-dev.192.168.56.1.nip.io/*" ], + "webOrigins" : [ "http://risk-assessment-engine-dev.192.168.56.1.nip.io" ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : true, + "serviceAccountsEnabled" : true, + "publicClient" : true, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "protocolMappers" : [ { + "id" : "1fddcb23-2a23-4ce6-acd4-cb48155d9034", + "name" : "Client Host", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientHost", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientHost", + "jsonType.label" : "String" + } + }, { + "id" : "1b88c2af-c338-4cf2-ab8d-69d1a60837a2", + "name" : "Client IP Address", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientAddress", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientAddress", + "jsonType.label" : "String" + } + }, { + "id" : "1c4f9074-9c2a-40bc-b55e-07a4eccfedab", + "name" : "Client ID", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientId", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientId", + "jsonType.label" : "String" + } + } ], + "defaultClientScopes" : [ "web-origins", "role_list", "cloudservice", "profile", "roles", "cladmin-backend-services", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "1c198016-f44c-4620-b2f6-821173bc2e54", + "clientId" : "raof-app", + "rootUrl" : "https://risk-assessment-app-dev.192.168.56.1.nip.io", + "adminUrl" : "https://risk-assessment-app-dev.192.168.56.1.nip.io", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "5f3391fb-e3da-4d24-bf49-a110ce86e5de", + "redirectUris" : [ "https://risk-assessment-app-dev.192.168.56.1.nip.io/*" ], + "webOrigins" : [ "https://risk-assessment-app-dev.192.168.56.1.nip.io" ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : true, + "serviceAccountsEnabled" : true, + "authorizationServicesEnabled" : true, + "publicClient" : false, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "protocolMappers" : [ { + "id" : "84cd6938-b5aa-4003-b0ee-0090073e2a88", + "name" : "Client IP Address", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientAddress", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientAddress", + "jsonType.label" : "String" + } + }, { + "id" : "9f22b311-05a4-4575-b7a5-ee07f2a38c08", + "name" : "Client ID", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientId", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientId", + "jsonType.label" : "String" + } + }, { + "id" : "f5e2cf3e-2f89-449b-bd1d-3cac7224b576", + "name" : "Client Host", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientHost", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientHost", + "jsonType.label" : "String" + } + } ], + "defaultClientScopes" : [ "web-origins", "role_list", "cloudservice", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ], + "authorizationSettings" : { + "allowRemoteResourceManagement" : true, + "policyEnforcementMode" : "ENFORCING", + "resources" : [ { + "name" : "Default Resource", + "type" : "urn:raof-app:resources:default", + "ownerManagedAccess" : false, + "attributes" : { }, + "_id" : "c9d1728e-3f6a-4003-8362-d6f5f960515c", + "uris" : [ "/*" ] + } ], + "policies" : [ { + "id" : "73bfec51-aca5-4ac8-b537-51a78d5de521", + "name" : "Default Policy", + "description" : "A policy that grants access only for users within this realm", + "type" : "js", + "logic" : "POSITIVE", + "decisionStrategy" : "AFFIRMATIVE", + "config" : { + "code" : "// by default, grants any permission associated with this policy\n$evaluation.grant();\n" + } + }, { + "id" : "67de5082-2eb9-4f99-b13e-a269a911952f", + "name" : "Default Permission", + "description" : "A permission that applies to the default resource type", + "type" : "resource", + "logic" : "POSITIVE", + "decisionStrategy" : "UNANIMOUS", + "config" : { + "defaultResourceType" : "urn:raof-app:resources:default", + "applyPolicies" : "[\"Default Policy\"]" + } + } ], + "scopes" : [ ], + "decisionStrategy" : "UNANIMOUS" + } + }, { + "id" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", + "clientId" : "realm-management", + "name" : "${client_realm-management}", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "eac6413c-b76b-4d1a-b4dc-b217fe77326b", + "redirectUris" : [ ], + "webOrigins" : [ ], + "notBefore" : 0, + "bearerOnly" : true, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : false, + "serviceAccountsEnabled" : false, + "publicClient" : false, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : false, + "nodeReRegistrationTimeout" : 0, + "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "7d57284a-3eba-4ceb-8088-b13aeef3df24", + "clientId" : "security-admin-console", + "name" : "${client_security-admin-console}", + "rootUrl" : "${authAdminUrl}", + "baseUrl" : "/admin/medina/console/", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "11fb3ec1-97dc-46e4-aee3-7d61493a0184", + "redirectUris" : [ "/admin/medina/console/*" ], + "webOrigins" : [ "+" ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : false, + "serviceAccountsEnabled" : false, + "publicClient" : true, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "pkce.code.challenge.method" : "S256" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : false, + "nodeReRegistrationTimeout" : 0, + "protocolMappers" : [ { + "id" : "ce06926e-1e52-49b7-86ea-ddfd7665b90b", + "name" : "locale", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-attribute-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "locale", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "locale", + "jsonType.label" : "String" + } + } ], + "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "52938086-6278-49af-b311-48ec89d2c3dc", + "clientId" : "ssi-frontend", + "rootUrl" : "http://localhost:3000", + "adminUrl" : "http://localhost:3000", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "7f73d06a-5f9e-4b0f-88f7-40b43b62e58f", + "redirectUris" : [ "https://ssi-framework-ui-dev.192.168.56.1.nip.io/*", "http://localhost:3000/*", "https://static.cybersec.digital.tecnalia.dev/*" ], + "webOrigins" : [ "https://ssi-framework-ui-dev.192.168.56.1.nip.io", "https://static.cybersec.digital.tecnalia.dev", "http://localhost:3000" ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : true, + "serviceAccountsEnabled" : false, + "publicClient" : true, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "access.token.lifespan" : "3600", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "pkce.code.challenge.method" : "S256", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "defaultClientScopes" : [ "web-origins", "role_list", "cloudservice", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "ea94ba36-c7d0-4eb1-9e05-1c7bfffc6a3b", + "clientId" : "trustworthiness_verification", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "78105567-dd19-4705-9e8f-9b1c6e21baae", + "redirectUris" : [ "*" ], + "webOrigins" : [ "*" ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : true, + "serviceAccountsEnabled" : false, + "publicClient" : true, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "access.token.lifespan" : "86400", + "saml.multivalued.roles" : "false", + "saml.force.post.binding" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "defaultClientScopes" : [ "web-origins", "role_list", "cloudservice", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "aa18689d-6d81-4b92-8b9e-291eb4733408", + "clientId" : "wazuh-vat-evidence-collector-dev", + "rootUrl" : "http://wazuh-vat-evidence-collector-dev.192.168.56.1.nip.io/", + "adminUrl" : "http://wazuh-vat-evidence-collector-dev.192.168.56.1.nip.io/", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "68dec932-77fc-4322-8089-d64c3a3317bf", + "redirectUris" : [ "http://wazuh-vat-evidence-collector-dev.192.168.56.1.nip.io/*" ], + "webOrigins" : [ "http://wazuh-vat-evidence-collector-dev.192.168.56.1.nip.io" ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : true, + "serviceAccountsEnabled" : true, + "authorizationServicesEnabled" : true, + "publicClient" : false, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "protocolMappers" : [ { + "id" : "21e80b89-4ab6-4eb1-b1b1-1a44c133e922", + "name" : "Client IP Address", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientAddress", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientAddress", + "jsonType.label" : "String" + } + }, { + "id" : "f9117947-484b-4486-9299-97a1bac403bc", + "name" : "Client Host", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientHost", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientHost", + "jsonType.label" : "String" + } + }, { + "id" : "a610e8bf-64c2-4c57-ba45-f576d1dbd1b9", + "name" : "Client ID", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientId", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientId", + "jsonType.label" : "String" + } + } ], + "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "cladmin-backend-services", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ], + "authorizationSettings" : { + "allowRemoteResourceManagement" : true, + "policyEnforcementMode" : "ENFORCING", + "resources" : [ { + "name" : "Default Resource", + "type" : "urn:wazuh-vat-evidence-collector-dev:resources:default", + "ownerManagedAccess" : false, + "attributes" : { }, + "_id" : "9b151dde-64db-48eb-a5c8-1cb76dbda106", + "uris" : [ "/*" ] + } ], + "policies" : [ { + "id" : "ea4d0471-d8e0-4eb3-b978-5e08ed330193", + "name" : "Default Policy", + "description" : "A policy that grants access only for users within this realm", + "type" : "js", + "logic" : "POSITIVE", + "decisionStrategy" : "AFFIRMATIVE", + "config" : { + "code" : "// by default, grants any permission associated with this policy\n$evaluation.grant();\n" + } + }, { + "id" : "d56c4a80-9aea-4527-80b8-fa8736d55cbe", + "name" : "Default Permission", + "description" : "A permission that applies to the default resource type", + "type" : "resource", + "logic" : "POSITIVE", + "decisionStrategy" : "UNANIMOUS", + "config" : { + "defaultResourceType" : "urn:wazuh-vat-evidence-collector-dev:resources:default", + "applyPolicies" : "[\"Default Policy\"]" + } + } ], + "scopes" : [ ], + "decisionStrategy" : "UNANIMOUS" + } + } ], + "clientScopes" : [ { + "id" : "448d9d12-2046-483f-9951-9cfb26270957", + "name" : "address", + "description" : "OpenID Connect built-in scope: address", + "protocol" : "openid-connect", + "attributes" : { + "include.in.token.scope" : "true", + "display.on.consent.screen" : "true", + "consent.screen.text" : "${addressScopeConsentText}" + }, + "protocolMappers" : [ { + "id" : "d9a1907f-8701-4b47-85a8-b7d959c37d52", + "name" : "address", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-address-mapper", + "consentRequired" : false, + "config" : { + "user.attribute.formatted" : "formatted", + "user.attribute.country" : "country", + "user.attribute.postal_code" : "postal_code", + "userinfo.token.claim" : "true", + "user.attribute.street" : "street", + "id.token.claim" : "true", + "user.attribute.region" : "region", + "access.token.claim" : "true", + "user.attribute.locality" : "locality" + } + } ] + }, { + "id" : "54b21e72-237f-455f-81c6-1f2719ea6466", + "name" : "cladmin-backend-services", + "protocol" : "openid-connect", + "attributes" : { + "include.in.token.scope" : "true", + "display.on.consent.screen" : "true" + }, + "protocolMappers" : [ { + "id" : "798044a8-4388-4a98-9376-15e31b42590a", + "name" : "cladmin", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-hardcoded-claim-mapper", + "consentRequired" : false, + "config" : { + "claim.value" : "true", + "userinfo.token.claim" : "false", + "id.token.claim" : "false", + "access.token.claim" : "true", + "claim.name" : "cladmin", + "jsonType.label" : "boolean", + "access.tokenResponse.claim" : "false" + } + } ] + }, { + "id" : "f5b5d781-271d-4d03-9fc9-6e56c0349f32", + "name" : "cloudservice", + "protocol" : "openid-connect", + "attributes" : { + "include.in.token.scope" : "true", + "display.on.consent.screen" : "true" + }, + "protocolMappers" : [ { + "id" : "bb0a28a6-e1c5-4a1c-9eb9-404b6158b71b", + "name" : "cloudserviceid", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-attribute-mapper", + "consentRequired" : false, + "config" : { + "aggregate.attrs" : "true", + "multivalued" : "true", + "userinfo.token.claim" : "true", + "user.attribute" : "cloudserviceid", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "cloudserviceid", + "jsonType.label" : "String" + } + }, { + "id" : "99f13ac5-3ddd-4183-af53-d352b32616a5", + "name" : "cloudserviceproviderid", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-attribute-mapper", + "consentRequired" : false, + "config" : { + "aggregate.attrs" : "true", + "multivalued" : "true", + "userinfo.token.claim" : "true", + "user.attribute" : "cloudserviceproviderid", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "cloudserviceproviderid", + "jsonType.label" : "String" + } + }, { + "id" : "ed488ec6-a3a7-4ffb-a117-8b92127569bb", + "name" : "is_admin", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-attribute-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "is_admin", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "is_admin", + "jsonType.label" : "boolean" + } + } ] + }, { + "id" : "275d79c9-b59c-40f6-bea2-ce277f3bb3e0", + "name" : "email", + "description" : "OpenID Connect built-in scope: email", + "protocol" : "openid-connect", + "attributes" : { + "include.in.token.scope" : "true", + "display.on.consent.screen" : "true", + "consent.screen.text" : "${emailScopeConsentText}" + }, + "protocolMappers" : [ { + "id" : "e2e140c5-e12f-4a38-ad55-dbeb73558260", + "name" : "email", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-property-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "email", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "email", + "jsonType.label" : "String" + } + }, { + "id" : "a22524be-6358-4d93-beaa-38faed65e198", + "name" : "email verified", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-property-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "emailVerified", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "email_verified", + "jsonType.label" : "boolean" + } + } ] + }, { + "id" : "bbfebad4-3f48-432f-9696-1529017fd411", + "name" : "jhipster", + "description" : "Jhipster specific claims", + "protocol" : "openid-connect", + "attributes" : { + "include.in.token.scope" : "true", + "display.on.consent.screen" : "true" + }, + "protocolMappers" : [ { + "id" : "71c49d92-db9e-4669-b945-a6dd790b8b00", + "name" : "langKey", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-attribute-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "langKey", + "id.token.claim" : "false", + "access.token.claim" : "false", + "claim.name" : "langKey", + "jsonType.label" : "String" + } + }, { + "id" : "79e9563d-3c27-4cb3-b8c7-cb11bc43ebc9", + "name" : "login", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-attribute-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "preferred_username", + "id.token.claim" : "false", + "access.token.claim" : "false", + "claim.name" : "login", + "jsonType.label" : "String" + } + }, { + "id" : "d8ce7859-d0c3-4e55-9415-438c81bfdaa2", + "name" : "roles", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-realm-role-mapper", + "consentRequired" : false, + "config" : { + "multivalued" : "true", + "userinfo.token.claim" : "true", + "id.token.claim" : "false", + "access.token.claim" : "true", + "claim.name" : "roles", + "jsonType.label" : "String" + } + } ] + }, { + "id" : "3dd12f9d-3af5-4757-b89c-4d2a8c448316", + "name" : "microprofile-jwt", + "description" : "Microprofile - JWT built-in scope", + "protocol" : "openid-connect", + "attributes" : { + "include.in.token.scope" : "true", + "display.on.consent.screen" : "false" + }, + "protocolMappers" : [ { + "id" : "995d9d7f-97af-4c01-81d8-8ca11aa34553", + "name" : "groups", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-realm-role-mapper", + "consentRequired" : false, + "config" : { + "multivalued" : "true", + "userinfo.token.claim" : "true", + "user.attribute" : "foo", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "groups", + "jsonType.label" : "String" + } + }, { + "id" : "43df77e9-387b-4f80-bd3e-c2153178ee72", + "name" : "upn", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-property-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "username", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "upn", + "jsonType.label" : "String" + } + } ] + }, { + "id" : "31c108bb-1587-4373-b46a-7d2f0d7acdba", + "name" : "offline_access", + "description" : "OpenID Connect built-in scope: offline_access", + "protocol" : "openid-connect", + "attributes" : { + "consent.screen.text" : "${offlineAccessScopeConsentText}", + "display.on.consent.screen" : "true" + } + }, { + "id" : "b8b09b9e-6096-46ae-8e90-3cd03d364a0a", + "name" : "phone", + "description" : "OpenID Connect built-in scope: phone", + "protocol" : "openid-connect", + "attributes" : { + "include.in.token.scope" : "true", + "display.on.consent.screen" : "true", + "consent.screen.text" : "${phoneScopeConsentText}" + }, + "protocolMappers" : [ { + "id" : "5464cfbe-e421-4034-8f6a-378e99476bf4", + "name" : "phone number", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-attribute-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "phoneNumber", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "phone_number", + "jsonType.label" : "String" + } + }, { + "id" : "f8a484ce-7c5f-4562-8d61-ec161e2929f6", + "name" : "phone number verified", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-attribute-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "phoneNumberVerified", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "phone_number_verified", + "jsonType.label" : "boolean" + } + } ] + }, { + "id" : "b188dc18-eca7-4941-ab04-d3e599e9aa93", + "name" : "profile", + "description" : "OpenID Connect built-in scope: profile", + "protocol" : "openid-connect", + "attributes" : { + "include.in.token.scope" : "true", + "display.on.consent.screen" : "true", + "consent.screen.text" : "${profileScopeConsentText}" + }, + "protocolMappers" : [ { + "id" : "0d52d80c-a7e1-45f9-a16e-1965220474d5", + "name" : "nickname", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-attribute-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "nickname", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "nickname", + "jsonType.label" : "String" + } + }, { + "id" : "cf0e8f74-1996-4ad1-8bcc-3f331bea4e45", + "name" : "birthdate", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-attribute-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "birthdate", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "birthdate", + "jsonType.label" : "String" + } + }, { + "id" : "c58346fb-1470-420c-a6cb-c115e833444b", + "name" : "full name", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-full-name-mapper", + "consentRequired" : false, + "config" : { + "id.token.claim" : "true", + "access.token.claim" : "true", + "userinfo.token.claim" : "true" + } + }, { + "id" : "bdfca3bd-1dda-4ebe-993c-ea11c674c919", + "name" : "gender", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-attribute-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "gender", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "gender", + "jsonType.label" : "String" + } + }, { + "id" : "1299560c-f37d-47d2-96f7-712761cf679a", + "name" : "middle name", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-attribute-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "middleName", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "middle_name", + "jsonType.label" : "String" + } + }, { + "id" : "c67dab67-c3b4-40c4-91fe-7c9ce61fca5f", + "name" : "zoneinfo", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-attribute-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "zoneinfo", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "zoneinfo", + "jsonType.label" : "String" + } + }, { + "id" : "8682ba32-def5-4111-b2ab-79cd865844d0", + "name" : "family name", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-property-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "lastName", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "family_name", + "jsonType.label" : "String" + } + }, { + "id" : "0ee61bf2-d022-420a-aa6d-c7e8bd60e24f", + "name" : "picture", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-attribute-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "picture", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "picture", + "jsonType.label" : "String" + } + }, { + "id" : "3acdc903-7ceb-40b8-8516-ebbc7874d6e4", + "name" : "given name", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-property-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "firstName", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "given_name", + "jsonType.label" : "String" + } + }, { + "id" : "d1fe9f83-141c-4c8c-9635-20367c7e5218", + "name" : "locale", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-attribute-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "locale", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "locale", + "jsonType.label" : "String" + } + }, { + "id" : "502de8c4-4cdf-402b-8453-d407a7b666da", + "name" : "username", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-property-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "username", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "preferred_username", + "jsonType.label" : "String" + } + }, { + "id" : "1603ac87-6a50-4205-b9b9-4ba4d3224d83", + "name" : "website", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-attribute-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "website", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "website", + "jsonType.label" : "String" + } + }, { + "id" : "f2c9d6f6-06b7-415a-87b3-c872a26ab921", + "name" : "updated at", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-attribute-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "updatedAt", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "updated_at", + "jsonType.label" : "String" + } + }, { + "id" : "ee586b78-b33e-4a0b-842f-9bd7059a747a", + "name" : "profile", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-attribute-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "profile", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "profile", + "jsonType.label" : "String" + } + } ] + }, { + "id" : "83717992-b174-46c3-99f1-1a097b02e99c", + "name" : "role_list", + "description" : "SAML role list", + "protocol" : "saml", + "attributes" : { + "consent.screen.text" : "${samlRoleListScopeConsentText}", + "display.on.consent.screen" : "true" + }, + "protocolMappers" : [ { + "id" : "0c0b8746-2e89-4ede-9ea6-ac76d2c66f33", + "name" : "role list", + "protocol" : "saml", + "protocolMapper" : "saml-role-list-mapper", + "consentRequired" : false, + "config" : { + "single" : "false", + "attribute.nameformat" : "Basic", + "attribute.name" : "Role" + } + } ] + }, { + "id" : "da1df8bb-b502-44fb-94a4-cff04b190a8c", + "name" : "roles", + "description" : "OpenID Connect scope for add user roles to the access token", + "protocol" : "openid-connect", + "attributes" : { + "include.in.token.scope" : "false", + "display.on.consent.screen" : "true", + "consent.screen.text" : "${rolesScopeConsentText}" + }, + "protocolMappers" : [ { + "id" : "cef58889-d64f-4405-a1f9-4978962472aa", + "name" : "realm roles", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-realm-role-mapper", + "consentRequired" : false, + "config" : { + "user.attribute" : "foo", + "access.token.claim" : "true", + "claim.name" : "realm_access.roles", + "jsonType.label" : "String", + "multivalued" : "true" + } + }, { + "id" : "44e1ccc5-63d0-464f-a88c-535864dba161", + "name" : "audience resolve", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-audience-resolve-mapper", + "consentRequired" : false, + "config" : { } + }, { + "id" : "fc7ab48f-7268-4f85-874c-8b35d00d5fb1", + "name" : "client roles", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-client-role-mapper", + "consentRequired" : false, + "config" : { + "user.attribute" : "foo", + "access.token.claim" : "true", + "claim.name" : "resource_access.${client_id}.roles", + "jsonType.label" : "String", + "multivalued" : "true" + } + } ] + }, { + "id" : "cab2790d-6362-4d1a-96cb-427e906ea1d0", + "name" : "web-origins", + "description" : "OpenID Connect scope for add allowed web origins to the access token", + "protocol" : "openid-connect", + "attributes" : { + "include.in.token.scope" : "false", + "display.on.consent.screen" : "false", + "consent.screen.text" : "" + }, + "protocolMappers" : [ { + "id" : "e8c45111-ab73-4a68-a793-fdcc71c4f2ad", + "name" : "allowed web origins", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-allowed-origins-mapper", + "consentRequired" : false, + "config" : { } + } ] + } ], + "defaultDefaultClientScopes" : [ "email", "role_list", "profile", "web-origins", "roles", "cloudservice" ], + "defaultOptionalClientScopes" : [ "offline_access", "microprofile-jwt", "address", "phone" ], + "browserSecurityHeaders" : { + "contentSecurityPolicyReportOnly" : "", + "xContentTypeOptions" : "nosniff", + "xRobotsTag" : "none", + "xFrameOptions" : "ALLOW-FROM https://integrated-ui-dev.192.168.56.1.nip.io", + "contentSecurityPolicy" : "frame-src 'self' https://integrated-ui-dev.192.168.56.1.nip.io; frame-ancestors 'self' https://ssi-framework-ui-dev.192.168.56.1.nip.io https://integrated-ui-dev.192.168.56.1.nip.io; object-src https://integrated-ui-dev.192.168.56.1.nip.io;", + "xXSSProtection" : "1; mode=block", + "strictTransportSecurity" : "max-age=31536000; includeSubDomains" + }, + "smtpServer" : { + "password" : "medinaPassword", + "starttls" : "", + "auth" : "true", + "host" : "smtp.gmail.com", + "from" : "medinatestuser@gmail.com", + "ssl" : "true", + "user" : "medinatestuser@gmail.com" + }, + "eventsEnabled" : false, + "eventsListeners" : [ "jboss-logging" ], + "enabledEventTypes" : [ ], + "adminEventsEnabled" : false, + "adminEventsDetailsEnabled" : false, + "identityProviders" : [ { + "alias" : "oidc", + "displayName" : "Bosch Login", + "internalId" : "0a60d4b9-c19c-4df7-9d55-f27547b90af0", + "providerId" : "oidc", + "enabled" : true, + "updateProfileFirstLoginMode" : "on", + "trustEmail" : false, + "storeToken" : false, + "addReadTokenRoleOnCreate" : false, + "authenticateByDefault" : false, + "linkOnly" : false, + "firstBrokerLoginFlowAlias" : "first broker login", + "config" : { + "userInfoUrl" : "https://stfs.test-bosch.com/adfs/userinfo", + "validateSignature" : "true", + "clientId" : "acfbc2ab-64e4-4b64-ad0e-204ec212cbbf", + "tokenUrl" : "https://stfs.test-bosch.com/adfs/oauth2/token/", + "jwksUrl" : "https://stfs.test-bosch.com/adfs/discovery/keys", + "issuer" : "https://stfs.test-bosch.com/adfs", + "useJwksUrl" : "true", + "authorizationUrl" : "https://stfs.test-bosch.com/adfs/oauth2/authorize/", + "clientAuthMethod" : "client_secret_post", + "disableUserInfo" : "true", + "logoutUrl" : "https://stfs.test-bosch.com/adfs/oauth2/logout", + "syncMode" : "IMPORT", + "clientSecret" : "Iog6MCAS2DoU0tLURqTVOME5p_Fq-LY_eewuOye4" + } + } ], + "identityProviderMappers" : [ { + "id" : "07f77793-a333-4c4f-a394-49eb29857486", + "name" : "Username Custom Mapper", + "identityProviderAlias" : "oidc", + "identityProviderMapper" : "oidc-username-idp-mapper", + "config" : { + "template" : "${CLAIM.email}", + "syncMode" : "INHERIT", + "target" : "LOCAL" + } + }, { + "id" : "bb71a007-f1e3-4dc7-9a8a-1e6e21d09544", + "name" : "Default Compliance Manager mapper", + "identityProviderAlias" : "oidc", + "identityProviderMapper" : "oidc-hardcoded-role-idp-mapper", + "config" : { + "syncMode" : "INHERIT", + "role" : "Compliance Manager" + } + } ], + "components" : { + "org.keycloak.services.clientregistration.policy.ClientRegistrationPolicy" : [ { + "id" : "fbccf871-d01e-4d47-99d0-3bdce3bfa12c", + "name" : "Allowed Client Scopes", + "providerId" : "allowed-client-templates", + "subType" : "anonymous", + "subComponents" : { }, + "config" : { + "allow-default-scopes" : [ "true" ] + } + }, { + "id" : "611a0a79-84c4-4d2d-9d11-01eb58141a46", + "name" : "Trusted Hosts", + "providerId" : "trusted-hosts", + "subType" : "anonymous", + "subComponents" : { }, + "config" : { + "host-sending-registration-request-must-match" : [ "true" ], + "client-uris-must-match" : [ "true" ] + } + }, { + "id" : "2124ff56-7c6f-4095-ba92-ae335222f88c", + "name" : "Full Scope Disabled", + "providerId" : "scope", + "subType" : "anonymous", + "subComponents" : { }, + "config" : { } + }, { + "id" : "b8f02611-098d-402f-90a6-a1f09afcdb22", + "name" : "Allowed Protocol Mapper Types", + "providerId" : "allowed-protocol-mappers", + "subType" : "anonymous", + "subComponents" : { }, + "config" : { + "allowed-protocol-mapper-types" : [ "oidc-usermodel-attribute-mapper", "saml-role-list-mapper", "oidc-full-name-mapper", "saml-user-attribute-mapper", "saml-user-property-mapper", "oidc-sha256-pairwise-sub-mapper", "oidc-address-mapper", "oidc-usermodel-property-mapper" ] + } + }, { + "id" : "cca940dd-d866-44db-a211-0ed1bc682ae7", + "name" : "Allowed Protocol Mapper Types", + "providerId" : "allowed-protocol-mappers", + "subType" : "authenticated", + "subComponents" : { }, + "config" : { + "allowed-protocol-mapper-types" : [ "saml-user-attribute-mapper", "oidc-sha256-pairwise-sub-mapper", "saml-role-list-mapper", "oidc-usermodel-property-mapper", "oidc-full-name-mapper", "oidc-address-mapper", "saml-user-property-mapper", "oidc-usermodel-attribute-mapper" ] + } + }, { + "id" : "dfb48f4f-8760-419e-9337-15eb81a41fdb", + "name" : "Max Clients Limit", + "providerId" : "max-clients", + "subType" : "anonymous", + "subComponents" : { }, + "config" : { + "max-clients" : [ "200" ] + } + }, { + "id" : "dfbcfdd0-4628-4a27-927a-4a476017ca56", + "name" : "Allowed Client Scopes", + "providerId" : "allowed-client-templates", + "subType" : "authenticated", + "subComponents" : { }, + "config" : { + "allow-default-scopes" : [ "true" ] + } + }, { + "id" : "cb8bff43-35e8-4fbc-9758-02da2892008d", + "name" : "Consent Required", + "providerId" : "consent-required", + "subType" : "anonymous", + "subComponents" : { }, + "config" : { } + } ], + "org.keycloak.keys.KeyProvider" : [ { + "id" : "4fcc8a9a-8dac-4051-8c34-748bf12d011d", + "name" : "rsa-generated", + "providerId" : "rsa-generated", + "subComponents" : { }, + "config" : { + "privateKey" : [ "MIIEpAIBAAKCAQEAqpMWsm7G85cM6j1jJCxmM6UAssq+oVsfdFUNEXJPpjy4FGRo4cIzaSPjqLAHn1xrBY4wWoPQU+4h2RRurXw0ELLhCIy+LIfUU0djB/5v0s5vqzaj/v8nSKQuKT2NY04b1oNTSeUuL1/sopo8ZcvtOdD2gTlVE2qDQJvJuKxIK9D4r2h2E7Kh7GwI0VIuywi0Ehdbwm21LTZlcrrmNu1pzN8oodjz0uYRIQ/p+AJCa0b+RhFQWN40XTmW1hmERE/J21ZK8sMcmO0vKcg5v2yzDOMQUcTMVVA1MHER8Q08yTYWmyQNP6E3xobVhqwCeClzcNCw1SdNfOVTuqCiZOWQWQIDAQABAoIBAEhcYbKMYAYSPD5akGZWF30tMGCotboJyAw30HVoQvXIqGauOfgbxGeD/B4hnvox4IzYxxZ++K/CQ8Wtb05VdFjpKaHQ4xRNAvvZOt+3RoTtYl4FrgiNAYNFcve3zvUju5eC2qBsgu1CCkbom1qr6hUu2oPzaG32L3wHGsom++7p4YE7FAzfqrEhntlVouMf9oW2477823gcr4LtX3tz2uIw8ZtSGsAxPGWfunxtX9qTgEVzXUFYou94fn7u6vRbRKSqq/udjQcSRaPzdrdto98oH6Y+3rm0PKj5sTkJf8SJHJFCPTgIgnG/7VZm8ZVJAoGLLUGzNC6pgEFdYjDmhSkCgYEA+mQYOKF6f8c5axsrUXtHHoWKYjZCXnWCH+P+DJQAHFSvdPAZgLJ6odKS8tFhujh8murE5WGsVkXxqZOHwXqBHrWrpJhfO8otHPEklhjn2MAhrxWxHEVokdUJjfUzoK0S6RVni/4hZIFkj3322lW7KXdSoeM5dfe9hFKxYM8G+jMCgYEArmVGSJtOzrIAzRZCmMwXwW/rV9Hi8QQOJRy8IM5zLvQutZa3RbqGPjOnq8XjsT98L6w4tM6WsTXWmGxOKDFzPhtg3pxz0ghFC895WaDqz1EL3Wjzp0p1a0mqo8zA+vOh9h+0YQs649eOPHkdr5AvMqenpxIwhu7nG0WOK+OKl0MCgYEAzcYiza+PP6GXg3kxkWYRnXi7sFjNFFnX1aOF7gpXSPEjvKNxIf4LoB+w2lLO0L6JULstkyFBAym6H9V5lLy7jmRYqgz6/uT5TDa1DZFsQAot5HicNBKqjGaa0oo3oo155AnOLhNsl+9qmC46B1a7WKmSRC6700IFAtD+qwOYxVcCgYB1892ToietOUu9ar7kZbXziWUd4sGhzeJbS5Iahkf1jAZDn4qZyMyfKYTQc2nLKmsuO0enUsstVIKuWSKLoNaXPSFJr3vOpPU+RbeH3YSzb9eciy2xCnVceVjGrOghU8NJmqv/rv7Ht7VmRWzEn7qsgiSspWrY+KCrG2JLYP0NzQKBgQDtcbX43N7aGMs/wP2Y/PDoTPeIB6f0+D7rdoHBmK6nUxQ9V70uAyYC4WtJudrKkVKUKAK8oOgbD2Qne2t02pbYKxQQDyBGQObuyC28fA5DHl9F8j6jx2u+He1s23V9HZhxj36TOVIjdjctRCDGTg32RMLGZlli0St2hK9EWSrUvQ==" ], + "certificate" : [ "MIICmzCCAYMCBgF/LGg1XzANBgkqhkiG9w0BAQsFADARMQ8wDQYDVQQDDAZtZWRpbmEwHhcNMjIwMjI0MTU0MzIxWhcNMzIwMjI0MTU0NTAxWjARMQ8wDQYDVQQDDAZtZWRpbmEwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCqkxaybsbzlwzqPWMkLGYzpQCyyr6hWx90VQ0Rck+mPLgUZGjhwjNpI+OosAefXGsFjjBag9BT7iHZFG6tfDQQsuEIjL4sh9RTR2MH/m/Szm+rNqP+/ydIpC4pPY1jThvWg1NJ5S4vX+yimjxly+050PaBOVUTaoNAm8m4rEgr0PivaHYTsqHsbAjRUi7LCLQSF1vCbbUtNmVyuuY27WnM3yih2PPS5hEhD+n4AkJrRv5GEVBY3jRdOZbWGYRET8nbVkrywxyY7S8pyDm/bLMM4xBRxMxVUDUwcRHxDTzJNhabJA0/oTfGhtWGrAJ4KXNw0LDVJ0185VO6oKJk5ZBZAgMBAAEwDQYJKoZIhvcNAQELBQADggEBAD7yJ2HegJ3/LzAmn/JIDXH1qfZ2DgGyfFQk82tWmFnsxVaLrv0sehS7Ufza5JRsudmzL6I8LHTgYuS1zyDZ1kmEB4gIpmw+ZI4M+isIpuzGRz8B3t2y3jOnEKjykjTWWYQrINYQiqPKU8LSFwe+Uqtcqga0TqgZ2fO8tkeP74a7JVk1hd4JD50shuPIInPx5PfqN7xAUebyPeJk91RQVC4tSpIIlFyd13MFQOzocj9uB685SE6DT3vjguYod6tv7JIUme0+JZIhd67hBlZS71ebL2B0gcX7+9jKZi3oeGFX+2k5CWCHZUf7KBvY3WaxxZTlFCtRcNbWKkMUmVTjRJ8=" ], + "priority" : [ "100" ] + } + }, { + "id" : "025383fb-ebfe-4e5d-b82e-ada254fff0fc", + "name" : "hmac-generated", + "providerId" : "hmac-generated", + "subComponents" : { }, + "config" : { + "kid" : [ "672cf3de-8a6e-43a9-bbb3-3b4cda7477a5" ], + "secret" : [ "lxJLgn2fZb9sMr0OZOzv98PC9GZWRJRGrNP86lb99Ded4XqqVXPU5HGxdn6RCxXdJxZyydNbrCnzDhZSpYLJDw" ], + "priority" : [ "100" ], + "algorithm" : [ "HS256" ] + } + }, { + "id" : "9e25e190-e32d-4bc8-9c9d-f5683ba8d2c3", + "name" : "aes-generated", + "providerId" : "aes-generated", + "subComponents" : { }, + "config" : { + "kid" : [ "5fe1d9fe-f688-4e7b-8871-176b5cf97cd4" ], + "secret" : [ "o_z-vBEGNLSgbqxfgun_sg" ], + "priority" : [ "100" ] + } + } ] + }, + "internationalizationEnabled" : false, + "supportedLocales" : [ ], + "authenticationFlows" : [ { + "id" : "542e66b3-00a6-46d0-bebd-573aa184f412", + "alias" : "Account verification options", + "description" : "Method with which to verity the existing account", + "providerId" : "basic-flow", + "topLevel" : false, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticator" : "idp-email-verification", + "requirement" : "ALTERNATIVE", + "priority" : 10, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "requirement" : "ALTERNATIVE", + "priority" : 20, + "flowAlias" : "Verify Existing Account by Re-authentication", + "userSetupAllowed" : false, + "autheticatorFlow" : true + } ] + }, { + "id" : "acef3f99-a8be-4ee7-ba5e-09b49fd09771", + "alias" : "Authentication Options", + "description" : "Authentication options.", + "providerId" : "basic-flow", + "topLevel" : false, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticator" : "basic-auth", + "requirement" : "REQUIRED", + "priority" : 10, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "authenticator" : "basic-auth-otp", + "requirement" : "DISABLED", + "priority" : 20, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "authenticator" : "auth-spnego", + "requirement" : "DISABLED", + "priority" : 30, + "userSetupAllowed" : false, + "autheticatorFlow" : false + } ] + }, { + "id" : "55f0883b-5df6-4c1a-98e2-5042260ce86e", + "alias" : "Browser - Conditional OTP", + "description" : "Flow to determine if the OTP is required for the authentication", + "providerId" : "basic-flow", + "topLevel" : false, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticator" : "conditional-user-configured", + "requirement" : "REQUIRED", + "priority" : 10, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "authenticator" : "auth-otp-form", + "requirement" : "REQUIRED", + "priority" : 20, + "userSetupAllowed" : false, + "autheticatorFlow" : false + } ] + }, { + "id" : "e137d77f-4a04-444a-8653-f207118e60c9", + "alias" : "Direct Grant - Conditional OTP", + "description" : "Flow to determine if the OTP is required for the authentication", + "providerId" : "basic-flow", + "topLevel" : false, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticator" : "conditional-user-configured", + "requirement" : "REQUIRED", + "priority" : 10, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "authenticator" : "direct-grant-validate-otp", + "requirement" : "REQUIRED", + "priority" : 20, + "userSetupAllowed" : false, + "autheticatorFlow" : false + } ] + }, { + "id" : "7d0bf21f-60bf-48e5-9e6d-b081f0a8cfaf", + "alias" : "First broker login - Conditional OTP", + "description" : "Flow to determine if the OTP is required for the authentication", + "providerId" : "basic-flow", + "topLevel" : false, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticator" : "conditional-user-configured", + "requirement" : "REQUIRED", + "priority" : 10, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "authenticator" : "auth-otp-form", + "requirement" : "REQUIRED", + "priority" : 20, + "userSetupAllowed" : false, + "autheticatorFlow" : false + } ] + }, { + "id" : "55a04a80-9de5-4889-9145-584e00efb74c", + "alias" : "Handle Existing Account", + "description" : "Handle what to do if there is existing account with same email/username like authenticated identity provider", + "providerId" : "basic-flow", + "topLevel" : false, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticator" : "idp-confirm-link", + "requirement" : "REQUIRED", + "priority" : 10, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "requirement" : "REQUIRED", + "priority" : 20, + "flowAlias" : "Account verification options", + "userSetupAllowed" : false, + "autheticatorFlow" : true + } ] + }, { + "id" : "b8c46e73-2dba-4479-a2d9-8de9781411f0", + "alias" : "Reset - Conditional OTP", + "description" : "Flow to determine if the OTP should be reset or not. Set to REQUIRED to force.", + "providerId" : "basic-flow", + "topLevel" : false, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticator" : "conditional-user-configured", + "requirement" : "REQUIRED", + "priority" : 10, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "authenticator" : "reset-otp", + "requirement" : "REQUIRED", + "priority" : 20, + "userSetupAllowed" : false, + "autheticatorFlow" : false + } ] + }, { + "id" : "2be49850-cfdc-421a-a3b3-4ba373aa0a06", + "alias" : "User creation or linking", + "description" : "Flow for the existing/non-existing user alternatives", + "providerId" : "basic-flow", + "topLevel" : false, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticatorConfig" : "create unique user config", + "authenticator" : "idp-create-user-if-unique", + "requirement" : "ALTERNATIVE", + "priority" : 10, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "requirement" : "ALTERNATIVE", + "priority" : 20, + "flowAlias" : "Handle Existing Account", + "userSetupAllowed" : false, + "autheticatorFlow" : true + } ] + }, { + "id" : "fca3935e-19bc-422c-b3fd-cfd431424e61", + "alias" : "Verify Existing Account by Re-authentication", + "description" : "Reauthentication of existing account", + "providerId" : "basic-flow", + "topLevel" : false, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticator" : "idp-username-password-form", + "requirement" : "REQUIRED", + "priority" : 10, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "requirement" : "CONDITIONAL", + "priority" : 20, + "flowAlias" : "First broker login - Conditional OTP", + "userSetupAllowed" : false, + "autheticatorFlow" : true + } ] + }, { + "id" : "5e831b42-7e44-41d6-b4b6-4e60b79766e1", + "alias" : "browser", + "description" : "browser based authentication", + "providerId" : "basic-flow", + "topLevel" : true, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticator" : "auth-cookie", + "requirement" : "ALTERNATIVE", + "priority" : 10, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "authenticator" : "auth-spnego", + "requirement" : "DISABLED", + "priority" : 20, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "authenticator" : "identity-provider-redirector", + "requirement" : "ALTERNATIVE", + "priority" : 25, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "requirement" : "ALTERNATIVE", + "priority" : 30, + "flowAlias" : "forms", + "userSetupAllowed" : false, + "autheticatorFlow" : true + } ] + }, { + "id" : "85a60306-f8aa-4176-84cc-6ecd6a6e78b4", + "alias" : "clients", + "description" : "Base authentication for clients", + "providerId" : "client-flow", + "topLevel" : true, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticator" : "client-secret", + "requirement" : "ALTERNATIVE", + "priority" : 10, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "authenticator" : "client-jwt", + "requirement" : "ALTERNATIVE", + "priority" : 20, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "authenticator" : "client-secret-jwt", + "requirement" : "ALTERNATIVE", + "priority" : 30, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "authenticator" : "client-x509", + "requirement" : "ALTERNATIVE", + "priority" : 40, + "userSetupAllowed" : false, + "autheticatorFlow" : false + } ] + }, { + "id" : "18adc4b6-c061-4a14-9e86-d3c81f41761e", + "alias" : "direct grant", + "description" : "OpenID Connect Resource Owner Grant", + "providerId" : "basic-flow", + "topLevel" : true, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticator" : "direct-grant-validate-username", + "requirement" : "REQUIRED", + "priority" : 10, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "authenticator" : "direct-grant-validate-password", + "requirement" : "REQUIRED", + "priority" : 20, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "requirement" : "CONDITIONAL", + "priority" : 30, + "flowAlias" : "Direct Grant - Conditional OTP", + "userSetupAllowed" : false, + "autheticatorFlow" : true + } ] + }, { + "id" : "c7ee3e5c-6bcf-4307-a5e1-2803d06b0ef8", + "alias" : "docker auth", + "description" : "Used by Docker clients to authenticate against the IDP", + "providerId" : "basic-flow", + "topLevel" : true, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticator" : "docker-http-basic-authenticator", + "requirement" : "REQUIRED", + "priority" : 10, + "userSetupAllowed" : false, + "autheticatorFlow" : false + } ] + }, { + "id" : "ff29c759-441e-465b-8f34-990e1b342841", + "alias" : "first broker login", + "description" : "Actions taken after first broker login with identity provider account, which is not yet linked to any Keycloak account", + "providerId" : "basic-flow", + "topLevel" : true, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticatorConfig" : "review profile config", + "authenticator" : "idp-review-profile", + "requirement" : "REQUIRED", + "priority" : 10, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "requirement" : "REQUIRED", + "priority" : 20, + "flowAlias" : "User creation or linking", + "userSetupAllowed" : false, + "autheticatorFlow" : true + } ] + }, { + "id" : "30411610-5d4f-41c0-8e0b-6a5d31dd670d", + "alias" : "forms", + "description" : "Username, password, otp and other auth forms.", + "providerId" : "basic-flow", + "topLevel" : false, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticator" : "auth-username-password-form", + "requirement" : "REQUIRED", + "priority" : 10, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "requirement" : "CONDITIONAL", + "priority" : 20, + "flowAlias" : "Browser - Conditional OTP", + "userSetupAllowed" : false, + "autheticatorFlow" : true + } ] + }, { + "id" : "03f219b5-78b7-47dc-a68a-0eb2269032a4", + "alias" : "http challenge", + "description" : "An authentication flow based on challenge-response HTTP Authentication Schemes", + "providerId" : "basic-flow", + "topLevel" : true, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticator" : "no-cookie-redirect", + "requirement" : "REQUIRED", + "priority" : 10, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "requirement" : "REQUIRED", + "priority" : 20, + "flowAlias" : "Authentication Options", + "userSetupAllowed" : false, + "autheticatorFlow" : true + } ] + }, { + "id" : "daa97eda-8144-44f1-9564-15575a4ed989", + "alias" : "registration", + "description" : "registration flow", + "providerId" : "basic-flow", + "topLevel" : true, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticator" : "registration-page-form", + "requirement" : "REQUIRED", + "priority" : 10, + "flowAlias" : "registration form", + "userSetupAllowed" : false, + "autheticatorFlow" : true + } ] + }, { + "id" : "8c85f001-0257-4ed5-a485-574849241362", + "alias" : "registration form", + "description" : "registration form", + "providerId" : "form-flow", + "topLevel" : false, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticator" : "registration-user-creation", + "requirement" : "REQUIRED", + "priority" : 20, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "authenticator" : "registration-profile-action", + "requirement" : "REQUIRED", + "priority" : 40, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "authenticator" : "registration-password-action", + "requirement" : "REQUIRED", + "priority" : 50, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "authenticator" : "registration-recaptcha-action", + "requirement" : "DISABLED", + "priority" : 60, + "userSetupAllowed" : false, + "autheticatorFlow" : false + } ] + }, { + "id" : "70a789e0-8b93-4a6d-9281-14fc023d695c", + "alias" : "reset credentials", + "description" : "Reset credentials for a user if they forgot their password or something", + "providerId" : "basic-flow", + "topLevel" : true, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticator" : "reset-credentials-choose-user", + "requirement" : "REQUIRED", + "priority" : 10, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "authenticator" : "reset-credential-email", + "requirement" : "REQUIRED", + "priority" : 20, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "authenticator" : "reset-password", + "requirement" : "REQUIRED", + "priority" : 30, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "requirement" : "CONDITIONAL", + "priority" : 40, + "flowAlias" : "Reset - Conditional OTP", + "userSetupAllowed" : false, + "autheticatorFlow" : true + } ] + }, { + "id" : "bc2ebe7a-6827-4bb7-b888-fdc3a7ca2534", + "alias" : "saml ecp", + "description" : "SAML ECP Profile Authentication Flow", + "providerId" : "basic-flow", + "topLevel" : true, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticator" : "http-basic-authenticator", + "requirement" : "REQUIRED", + "priority" : 10, + "userSetupAllowed" : false, + "autheticatorFlow" : false + } ] + } ], + "authenticatorConfig" : [ { + "id" : "6c90efa8-3c70-4a6b-b04e-abfd516056b2", + "alias" : "create unique user config", + "config" : { + "require.password.update.after.registration" : "false" + } + }, { + "id" : "ddf4310d-2e82-45d2-8621-7ce4beb366a1", + "alias" : "review profile config", + "config" : { + "update.profile.on.first.login" : "missing" + } + } ], + "requiredActions" : [ { + "alias" : "CONFIGURE_TOTP", + "name" : "Configure OTP", + "providerId" : "CONFIGURE_TOTP", + "enabled" : true, + "defaultAction" : false, + "priority" : 10, + "config" : { } + }, { + "alias" : "terms_and_conditions", + "name" : "Terms and Conditions", + "providerId" : "terms_and_conditions", + "enabled" : false, + "defaultAction" : false, + "priority" : 20, + "config" : { } + }, { + "alias" : "UPDATE_PASSWORD", + "name" : "Update Password", + "providerId" : "UPDATE_PASSWORD", + "enabled" : true, + "defaultAction" : false, + "priority" : 30, + "config" : { } + }, { + "alias" : "UPDATE_PROFILE", + "name" : "Update Profile", + "providerId" : "UPDATE_PROFILE", + "enabled" : true, + "defaultAction" : false, + "priority" : 40, + "config" : { } + }, { + "alias" : "VERIFY_EMAIL", + "name" : "Verify Email", + "providerId" : "VERIFY_EMAIL", + "enabled" : true, + "defaultAction" : false, + "priority" : 50, + "config" : { } + }, { + "alias" : "delete_account", + "name" : "Delete Account", + "providerId" : "delete_account", + "enabled" : false, + "defaultAction" : false, + "priority" : 60, + "config" : { } + }, { + "alias" : "update_user_locale", + "name" : "Update User Locale", + "providerId" : "update_user_locale", + "enabled" : true, + "defaultAction" : false, + "priority" : 1000, + "config" : { } + } ], + "browserFlow" : "browser", + "registrationFlow" : "registration", + "directGrantFlow" : "direct grant", + "resetCredentialsFlow" : "reset credentials", + "clientAuthenticationFlow" : "clients", + "dockerAuthenticationFlow" : "docker auth", + "attributes" : { + "clientOfflineSessionMaxLifespan" : "0", + "clientSessionIdleTimeout" : "0", + "clientSessionMaxLifespan" : "0", + "frontendUrl" : "", + "clientOfflineSessionIdleTimeout" : "0" + }, + "keycloakVersion" : "12.0.4", + "userManagedAccessAllowed" : false } \ No newline at end of file diff --git a/data/keycloak-setup/192.168.56.1.nip.io/users.json b/data/keycloak-setup/192.168.56.1.nip.io/users.json index 23184c4b18f38dc84ee5b033dbf820683f7efd90..fafcc73f9a917e45b13d77dd8b744ea16c342003 100755 --- a/data/keycloak-setup/192.168.56.1.nip.io/users.json +++ b/data/keycloak-setup/192.168.56.1.nip.io/users.json @@ -1,3963 +1,5262 @@ -{ - "id" : "medina", - "realm" : "medina", - "displayName" : "", - "notBefore" : 1646899526, - "revokeRefreshToken" : false, - "refreshTokenMaxReuse" : 0, - "accessTokenLifespan" : 300, - "accessTokenLifespanForImplicitFlow" : 900, - "ssoSessionIdleTimeout" : 1800, - "ssoSessionMaxLifespan" : 36000, - "ssoSessionIdleTimeoutRememberMe" : 0, - "ssoSessionMaxLifespanRememberMe" : 0, - "offlineSessionIdleTimeout" : 2592000, - "offlineSessionMaxLifespanEnabled" : false, - "offlineSessionMaxLifespan" : 5184000, - "clientSessionIdleTimeout" : 0, - "clientSessionMaxLifespan" : 0, - "clientOfflineSessionIdleTimeout" : 0, - "clientOfflineSessionMaxLifespan" : 0, - "accessCodeLifespan" : 60, - "accessCodeLifespanUserAction" : 300, - "accessCodeLifespanLogin" : 1800, - "actionTokenGeneratedByAdminLifespan" : 43200, - "actionTokenGeneratedByUserLifespan" : 300, - "enabled" : true, - "sslRequired" : "external", - "registrationAllowed" : false, - "registrationEmailAsUsername" : false, - "rememberMe" : false, - "verifyEmail" : false, - "loginWithEmailAllowed" : true, - "duplicateEmailsAllowed" : false, - "resetPasswordAllowed" : false, - "editUsernameAllowed" : false, - "bruteForceProtected" : false, - "permanentLockout" : false, - "maxFailureWaitSeconds" : 900, - "minimumQuickLoginWaitSeconds" : 60, - "waitIncrementSeconds" : 60, - "quickLoginCheckMilliSeconds" : 1000, - "maxDeltaTimeSeconds" : 43200, - "failureFactor" : 30, - "roles" : { - "realm" : [ { - "id" : "0f08df2b-4b64-487c-9e51-2580a02ae0ef", - "name" : "Customer", - "description" : "Interested in the compliance status of the company", - "composite" : false, - "clientRole" : false, - "containerId" : "medina", - "attributes" : { } - }, { - "id" : "2f6015a8-ddee-42f9-99c5-4760bd5fb5c7", - "name" : "ROLE_USER", - "description" : "temporary role for catalogue jhipster", - "composite" : false, - "clientRole" : false, - "containerId" : "medina", - "attributes" : { } - }, { - "id" : "9d96522b-ff58-498d-ad7f-11a747bd924e", - "name" : "offline_access", - "description" : "${role_offline-access}", - "composite" : false, - "clientRole" : false, - "containerId" : "medina", - "attributes" : { } - }, { - "id" : "417a650d-7309-41d2-aecd-cd179c656c65", - "name" : "Auditor", - "description" : "Performs all actions required to audit a Company", - "composite" : true, - "composites" : { - "client" : { - "api-swagger" : [ "user" ], - "integrated-ui" : [ "admin" ] - } - }, - "clientRole" : false, - "containerId" : "medina", - "attributes" : { } - }, { - "id" : "dac0890c-0957-40ed-b72f-37ca91a59d6e", - "name" : "Company", - "description" : "Most of the defined roles are employed by the company. Products of company are being audited", - "composite" : false, - "clientRole" : false, - "containerId" : "medina", - "attributes" : { } - }, { - "id" : "f4c52c7f-c34d-4101-8c11-523dbc526d72", - "name" : "ICO", - "description" : "Internal Control Owner - Responsible for creating internal controls. Executing the internal controls.", - "composite" : false, - "clientRole" : false, - "containerId" : "medina", - "attributes" : { } - }, { - "id" : "ec325a48-83c2-4b16-96be-305dc4767132", - "name" : "uma_authorization", - "description" : "${role_uma_authorization}", - "composite" : false, - "clientRole" : false, - "containerId" : "medina", - "attributes" : { } - }, { - "id" : "64dbcf9f-4231-4163-828a-5fa4fe9db278", - "name" : "CISO", - "description" : "Chief Information Security Officer - Responsible for security in the company, chooses what security controls should be implemented", - "composite" : false, - "clientRole" : false, - "containerId" : "medina", - "attributes" : { } - }, { - "id" : "e7c3caa6-1e16-4cf6-9484-b0af649117df", - "name" : "Compliance Manager", - "description" : "Responsible for the implementation of security control frameworks.\nResponsible for the correct implementation of the internal controls.\nResponsible for incident management.\nResponsible for performing internal audits.", - "composite" : true, - "composites" : { - "client" : { - "cnl-editor-frontend" : [ "user" ], - "integrated-ui" : [ "user", "admin" ], - "nl2cnl-translator-client" : [ "user" ] - } - }, - "clientRole" : false, - "containerId" : "medina", - "attributes" : { } - }, { - "id" : "fd93daa9-1357-4ba3-989d-7bf4b7ba2a07", - "name" : "ROLE_ADMIN", - "description" : "temporary role for catalogue jhipster", - "composite" : false, - "clientRole" : false, - "containerId" : "medina", - "attributes" : { } - } ], - "client" : { - "catalogue-backend" : [ ], - "raof-app" : [ { - "id" : "9f63da36-943c-4b9e-a92e-2632a76663dd", - "name" : "uma_protection", - "composite" : false, - "clientRole" : true, - "containerId" : "b1293ae0-e720-40cb-ae6f-db7fc9b1fe92", - "attributes" : { } - } ], - "security-admin-console" : [ ], - "wazuh-vat-evidence-collector-dev" : [ { - "id" : "3c40a84f-dc61-43d1-a607-e3fad0df3766", - "name" : "uma_protection", - "composite" : false, - "clientRole" : true, - "containerId" : "aa18689d-6d81-4b92-8b9e-291eb4733408", - "attributes" : { } - } ], - "clouditor-assessment" : [ ], - "account-console" : [ ], - "amoe-client" : [ ], - "cce-dev" : [ { - "id" : "aa5844fb-a4f8-4cfa-8514-1f4033e8bd9c", - "name" : "uma_protection", - "composite" : false, - "clientRole" : true, - "containerId" : "dc64b28b-a696-4b0c-8e24-2aeae138c3e5", - "attributes" : { } - } ], - "clouditor-cli" : [ ], - "codyze" : [ ], - "admin-cli" : [ ], - "catalogue-jhipster-control-center" : [ ], - "catalogue-registry" : [ ], - "realm-management" : [ { - "id" : "e02ce89a-c0b9-43b5-b6be-5c515624927a", - "name" : "manage-clients", - "description" : "${role_manage-clients}", - "composite" : false, - "clientRole" : true, - "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", - "attributes" : { } - }, { - "id" : "5bc05c8b-6d6a-45a1-92f7-cc33f4fe57bd", - "name" : "view-authorization", - "description" : "${role_view-authorization}", - "composite" : false, - "clientRole" : true, - "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", - "attributes" : { } - }, { - "id" : "0ee5608f-ab3a-4a8e-889b-e0d230a2fc86", - "name" : "view-clients", - "description" : "${role_view-clients}", - "composite" : true, - "composites" : { - "client" : { - "realm-management" : [ "query-clients" ] - } - }, - "clientRole" : true, - "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", - "attributes" : { } - }, { - "id" : "c2bd9190-451c-45d7-9588-412e1c40d5fd", - "name" : "manage-authorization", - "description" : "${role_manage-authorization}", - "composite" : false, - "clientRole" : true, - "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", - "attributes" : { } - }, { - "id" : "83e3e683-50b5-4050-b88b-2178342a13f8", - "name" : "manage-events", - "description" : "${role_manage-events}", - "composite" : false, - "clientRole" : true, - "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", - "attributes" : { } - }, { - "id" : "4e9c2113-f0d3-4691-bb66-49e3ca218d63", - "name" : "query-clients", - "description" : "${role_query-clients}", - "composite" : false, - "clientRole" : true, - "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", - "attributes" : { } - }, { - "id" : "cdca2718-5853-4969-9b63-2186e0382085", - "name" : "query-realms", - "description" : "${role_query-realms}", - "composite" : false, - "clientRole" : true, - "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", - "attributes" : { } - }, { - "id" : "33eb311b-fdbc-4ccf-b367-ae2b1c8c2e55", - "name" : "view-users", - "description" : "${role_view-users}", - "composite" : true, - "composites" : { - "client" : { - "realm-management" : [ "query-users", "query-groups" ] - } - }, - "clientRole" : true, - "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", - "attributes" : { } - }, { - "id" : "56382323-69f8-4eca-b433-aa14ccc83be3", - "name" : "manage-identity-providers", - "description" : "${role_manage-identity-providers}", - "composite" : false, - "clientRole" : true, - "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", - "attributes" : { } - }, { - "id" : "2db34bf8-3fac-4fb8-8ed4-b7f44cadcb2e", - "name" : "create-client", - "description" : "${role_create-client}", - "composite" : false, - "clientRole" : true, - "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", - "attributes" : { } - }, { - "id" : "ae7b03e5-747f-4341-8add-1c872658bec4", - "name" : "view-events", - "description" : "${role_view-events}", - "composite" : false, - "clientRole" : true, - "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", - "attributes" : { } - }, { - "id" : "a607a195-5e2c-4701-855d-d202ba52a313", - "name" : "manage-users", - "description" : "${role_manage-users}", - "composite" : false, - "clientRole" : true, - "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", - "attributes" : { } - }, { - "id" : "3f2bf59d-4b3f-425a-a75f-e6b8c6d27af0", - "name" : "view-realm", - "description" : "${role_view-realm}", - "composite" : false, - "clientRole" : true, - "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", - "attributes" : { } - }, { - "id" : "d23239ef-028a-4409-b965-e20ea6ac8795", - "name" : "impersonation", - "description" : "${role_impersonation}", - "composite" : false, - "clientRole" : true, - "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", - "attributes" : { } - }, { - "id" : "f724e1e9-a878-4ae3-9bc8-995767add1a3", - "name" : "manage-realm", - "description" : "${role_manage-realm}", - "composite" : false, - "clientRole" : true, - "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", - "attributes" : { } - }, { - "id" : "e6b7421d-7d5c-4f1c-bb48-0a873c9870c4", - "name" : "query-users", - "description" : "${role_query-users}", - "composite" : false, - "clientRole" : true, - "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", - "attributes" : { } - }, { - "id" : "7a81ec99-e710-409d-bd34-ae3642a1912d", - "name" : "view-identity-providers", - "description" : "${role_view-identity-providers}", - "composite" : false, - "clientRole" : true, - "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", - "attributes" : { } - }, { - "id" : "fbeca797-27ee-44a0-8566-bec5666e6bcc", - "name" : "query-groups", - "description" : "${role_query-groups}", - "composite" : false, - "clientRole" : true, - "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", - "attributes" : { } - }, { - "id" : "f9ea5c84-0690-47f4-b887-a3351ca800de", - "name" : "realm-admin", - "description" : "${role_realm-admin}", - "composite" : true, - "composites" : { - "client" : { - "realm-management" : [ "view-authorization", "manage-clients", "view-clients", "manage-authorization", "query-clients", "manage-events", "view-users", "query-realms", "manage-identity-providers", "create-client", "view-events", "view-realm", "manage-users", "impersonation", "manage-realm", "query-users", "view-identity-providers", "query-groups" ] - } - }, - "clientRole" : true, - "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", - "attributes" : { } - } ], - "api-swagger" : [ { - "id" : "a7aa8c9f-7cc5-4c91-8657-31b74ba02a1a", - "name" : "uma_protection", - "composite" : false, - "clientRole" : true, - "containerId" : "a08fc1fe-7c85-4c1c-9d04-604c6e35faa8", - "attributes" : { } - }, { - "id" : "88fa7113-8fd5-4dd4-940d-e0e2e06471d4", - "name" : "user", - "composite" : false, - "clientRole" : true, - "containerId" : "a08fc1fe-7c85-4c1c-9d04-604c6e35faa8", - "attributes" : { } - } ], - "cnl-editor-frontend" : [ { - "id" : "910ffe29-95b3-4b82-a734-b24bff7cfa8d", - "name" : "user", - "composite" : false, - "clientRole" : true, - "containerId" : "15a81bd1-4edd-4e2a-87ec-3bbcac30d2a3", - "attributes" : { } - } ], - "life-cycle-manager" : [ ], - "integrated-ui" : [ { - "id" : "258c00de-d88c-4239-908b-be79f895c3b0", - "name" : "user", - "composite" : false, - "clientRole" : true, - "containerId" : "1150f83f-37bc-4b14-98a0-e179aaee0f6c", - "attributes" : { } - }, { - "id" : "ae424f76-ac11-4a9b-939d-67ab55a0fc5a", - "name" : "admin", - "composite" : false, - "clientRole" : true, - "containerId" : "1150f83f-37bc-4b14-98a0-e179aaee0f6c", - "attributes" : { } - } ], - "ccd-client" : [ ], - "broker" : [ { - "id" : "381e01c5-2dce-4da6-854b-334d015e7224", - "name" : "read-token", - "description" : "${role_read-token}", - "composite" : false, - "clientRole" : true, - "containerId" : "8d1a867d-537c-433e-8234-b3582127cc54", - "attributes" : { } - } ], - "clouditor-ui" : [ ], - "raof" : [ { - "id" : "6de07826-dc41-4208-bc5e-8d64d38cfec2", - "name" : "engine", - "composite" : false, - "clientRole" : true, - "containerId" : "785a9f77-d06f-4a65-9ba9-341921fda61a", - "attributes" : { } - }, { - "id" : "9ecb4267-a5d3-421e-9aad-9b329fe4701d", - "name" : "uma_protection", - "composite" : false, - "clientRole" : true, - "containerId" : "785a9f77-d06f-4a65-9ba9-341921fda61a", - "attributes" : { } - } ], - "nl2cnl-translator-client" : [ { - "id" : "8fdf06d3-6c44-4aa3-bb0a-80dc589ced1c", - "name" : "uma_protection", - "composite" : false, - "clientRole" : true, - "containerId" : "9f7c65f7-9ae9-4c9e-9bd7-971d0cbe146d", - "attributes" : { } - }, { - "id" : "4486610d-0195-463c-bf2f-cf4cd10001c8", - "name" : "user", - "composite" : false, - "clientRole" : true, - "containerId" : "9f7c65f7-9ae9-4c9e-9bd7-971d0cbe146d", - "attributes" : { } - } ], - "catalogue-gateway" : [ ], - "clouditor-discovery" : [ ], - "account" : [ { - "id" : "ad76fbd3-fd48-4820-8454-c9e6e8b21da5", - "name" : "manage-consent", - "description" : "${role_manage-consent}", - "composite" : true, - "composites" : { - "client" : { - "account" : [ "view-consent" ] - } - }, - "clientRole" : true, - "containerId" : "8bd89baf-08f6-4e4b-8394-6b4dd6050ed2", - "attributes" : { } - }, { - "id" : "3cf9ad63-38af-430f-86da-bf7455dfb668", - "name" : "view-applications", - "description" : "${role_view-applications}", - "composite" : false, - "clientRole" : true, - "containerId" : "8bd89baf-08f6-4e4b-8394-6b4dd6050ed2", - "attributes" : { } - }, { - "id" : "a47fd133-6ba5-4870-af1b-9a17b76be404", - "name" : "view-consent", - "description" : "${role_view-consent}", - "composite" : false, - "clientRole" : true, - "containerId" : "8bd89baf-08f6-4e4b-8394-6b4dd6050ed2", - "attributes" : { } - }, { - "id" : "36ac4d35-7384-40c3-a877-7a2934bc9250", - "name" : "manage-account-links", - "description" : "${role_manage-account-links}", - "composite" : false, - "clientRole" : true, - "containerId" : "8bd89baf-08f6-4e4b-8394-6b4dd6050ed2", - "attributes" : { } - }, { - "id" : "3e5612a2-7c5c-4026-a6ac-7a332e266aab", - "name" : "manage-account", - "description" : "${role_manage-account}", - "composite" : true, - "composites" : { - "client" : { - "account" : [ "manage-account-links" ] - } - }, - "clientRole" : true, - "containerId" : "8bd89baf-08f6-4e4b-8394-6b4dd6050ed2", - "attributes" : { } - }, { - "id" : "1062c184-cad0-462d-ad3a-d51d5208536c", - "name" : "delete-account", - "description" : "${role_delete-account}", - "composite" : false, - "clientRole" : true, - "containerId" : "8bd89baf-08f6-4e4b-8394-6b4dd6050ed2", - "attributes" : { } - }, { - "id" : "d1a2381b-d165-43fb-a79d-8c614c46b96e", - "name" : "view-profile", - "description" : "${role_view-profile}", - "composite" : false, - "clientRole" : true, - "containerId" : "8bd89baf-08f6-4e4b-8394-6b4dd6050ed2", - "attributes" : { } - } ] - } - }, - "groups" : [ { - "id" : "b18d27ac-f4dc-4e3b-b488-e59e3af21eb5", - "name" : "TestCloudService", - "path" : "/TestCloudService", - "attributes" : { - "cloudserviceid" : [ "cf52d866-993f-11ec-b909-0242ac120002" ] - }, - "realmRoles" : [ ], - "clientRoles" : { }, - "subGroups" : [ ] - }, { - "id" : "fe88c642-63e3-4223-ab55-ded3d4edc650", - "name" : "TestCloudService2", - "path" : "/TestCloudService2", - "attributes" : { - "cloudserviceid" : [ "793dcdfe-9940-11ec-b909-0242ac120002" ] - }, - "realmRoles" : [ ], - "clientRoles" : { }, - "subGroups" : [ ] - } ], - "defaultRoles" : [ "offline_access", "uma_authorization" ], - "requiredCredentials" : [ "password" ], - "otpPolicyType" : "totp", - "otpPolicyAlgorithm" : "HmacSHA1", - "otpPolicyInitialCounter" : 0, - "otpPolicyDigits" : 6, - "otpPolicyLookAheadWindow" : 1, - "otpPolicyPeriod" : 30, - "otpSupportedApplications" : [ "FreeOTP", "Google Authenticator" ], - "webAuthnPolicyRpEntityName" : "keycloak", - "webAuthnPolicySignatureAlgorithms" : [ "ES256" ], - "webAuthnPolicyRpId" : "", - "webAuthnPolicyAttestationConveyancePreference" : "not specified", - "webAuthnPolicyAuthenticatorAttachment" : "not specified", - "webAuthnPolicyRequireResidentKey" : "not specified", - "webAuthnPolicyUserVerificationRequirement" : "not specified", - "webAuthnPolicyCreateTimeout" : 0, - "webAuthnPolicyAvoidSameAuthenticatorRegister" : false, - "webAuthnPolicyAcceptableAaguids" : [ ], - "webAuthnPolicyPasswordlessRpEntityName" : "keycloak", - "webAuthnPolicyPasswordlessSignatureAlgorithms" : [ "ES256" ], - "webAuthnPolicyPasswordlessRpId" : "", - "webAuthnPolicyPasswordlessAttestationConveyancePreference" : "not specified", - "webAuthnPolicyPasswordlessAuthenticatorAttachment" : "not specified", - "webAuthnPolicyPasswordlessRequireResidentKey" : "not specified", - "webAuthnPolicyPasswordlessUserVerificationRequirement" : "not specified", - "webAuthnPolicyPasswordlessCreateTimeout" : 0, - "webAuthnPolicyPasswordlessAvoidSameAuthenticatorRegister" : false, - "webAuthnPolicyPasswordlessAcceptableAaguids" : [ ], - "users" : [ { - "id" : "bb6244c3-35ec-4908-b4e0-73b159cc7a04", - "createdTimestamp" : 1646126460390, - "username" : "admin", - "enabled" : true, - "totp" : false, - "emailVerified" : true, - "firstName" : "admin", - "email" : "admin@localhost", - "credentials" : [ { - "id" : "4525a467-f0db-47e7-9f5a-edae4109844a", - "type" : "password", - "createdDate" : 1646126469027, - "secretData" : "{\"value\":\"BaRnqXmvxOYEu8fmlMYD+tpEIhbvW6m4KR9lzAl4f02Lt2WBUK2v7S/QobMoYEXqGWQxLpJnpsUcKlY9YGSiMw==\",\"salt\":\"rjK2JqIKXPdb1A03p8VcQw==\",\"additionalParameters\":{}}", - "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" - } ], - "disableableCredentialTypes" : [ ], - "requiredActions" : [ ], - "realmRoles" : [ "ROLE_USER", "offline_access", "Auditor", "uma_authorization", "ROLE_ADMIN", "Compliance Manager" ], - "clientRoles" : { - "raof" : [ "engine" ], - "integrated-ui" : [ "user" ], - "account" : [ "manage-account", "view-profile" ] - }, - "notBefore" : 0, - "groups" : [ "/TestCloudService2" ] - }, { - "id" : "08fbe789-4ada-4b3a-bcf1-dc20b469911b", - "createdTimestamp" : 1646739467160, - "username" : "amoe_test", - "enabled" : true, - "totp" : false, - "emailVerified" : false, - "credentials" : [ { - "id" : "da7be389-1b6a-42fa-8eb6-95fc83dc1cfa", - "type" : "password", - "createdDate" : 1646739496443, - "secretData" : "{\"value\":\"lTtYEaVM4t3lHrJFxAYu3MY54718QfBIva07Xd86InMCQE1D9jZY2bUCQJ15q+PdYerIU69YLRzXFkurv+BjLA==\",\"salt\":\"pKFJXLTaUzNsEouOGiIDVg==\",\"additionalParameters\":{}}", - "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" - } ], - "disableableCredentialTypes" : [ ], - "requiredActions" : [ ], - "realmRoles" : [ "offline_access", "uma_authorization" ], - "clientRoles" : { - "account" : [ "manage-account", "view-profile" ] - }, - "notBefore" : 0, - "groups" : [ ] - }, { - "id" : "5b083c04-bbda-48be-8441-fbe16968902b", - "createdTimestamp" : 1650710929018, - "username" : "cnr-user", - "enabled" : true, - "totp" : false, - "emailVerified" : false, - "firstName" : "Stefano", - "lastName" : "Fagnano", - "email" : "stefano.fagnano@me.com", - "credentials" : [ { - "id" : "fe14429e-56cf-4810-8ca2-7fab0ea81a80", - "type" : "password", - "createdDate" : 1650710973177, - "secretData" : "{\"value\":\"t+/Zdw3TRlptIsNjJh22t1t2rJmNsanwsZkqfgI0++tKxhnq8pMZCHmX8RTLuotokLNPjzC+oWTxpOjdQwJ5vg==\",\"salt\":\"7NvfqfUVIqeY9uVBwG5+kw==\",\"additionalParameters\":{}}", - "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" - } ], - "disableableCredentialTypes" : [ ], - "requiredActions" : [ ], - "realmRoles" : [ "offline_access", "uma_authorization" ], - "clientRoles" : { - "raof" : [ "engine" ], - "integrated-ui" : [ "user" ], - "account" : [ "manage-account", "view-profile" ] - }, - "notBefore" : 0, - "groups" : [ ] - }, { - "id" : "1247915b-d17c-4b5b-aad6-889c24225420", - "createdTimestamp" : 1646842473867, - "username" : "fabasoftpe", - "enabled" : true, - "totp" : false, - "emailVerified" : false, - "credentials" : [ { - "id" : "99ea9dc6-b4b3-4e0b-8aa9-2ecf58daa670", - "type" : "password", - "createdDate" : 1646842549296, - "secretData" : "{\"value\":\"rjCSXoy+G2SbrGgLqP8Qtx9eJYGheRLzVaZ2W7tZ7SO14I9K7W0GZFK7gg/wwZe7fNCT4c+kTWuuK42cR7JAiA==\",\"salt\":\"ViuDtUVx++5GGlqT+Kajvg==\",\"additionalParameters\":{}}", - "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" - } ], - "disableableCredentialTypes" : [ ], - "requiredActions" : [ ], - "realmRoles" : [ "offline_access", "uma_authorization", "Compliance Manager" ], - "clientRoles" : { - "account" : [ "manage-account", "view-profile" ] - }, - "notBefore" : 0, - "groups" : [ ] - }, { - "id" : "dbdb2c43-a90d-4bd8-a29a-c23d00e8a5fc", - "createdTimestamp" : 1646842573862, - "username" : "lawexpert", - "enabled" : true, - "totp" : false, - "emailVerified" : false, - "credentials" : [ { - "id" : "47c67cc2-9fec-471f-aee3-b93cb8fb50d4", - "type" : "password", - "createdDate" : 1646842584938, - "secretData" : "{\"value\":\"4u0v3JqYQ/m7qYSuG8gcxfdMveQyTLkOK1t9YTXsdH9b6XWmcmx+eemKvvZzlhGLrZ2JoyRv3Emr7E3gacWvbw==\",\"salt\":\"hKwIjTGtDpDCPw0r7xFMyA==\",\"additionalParameters\":{}}", - "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" - } ], - "disableableCredentialTypes" : [ ], - "requiredActions" : [ ], - "realmRoles" : [ "offline_access", "uma_authorization", "Compliance Manager" ], - "clientRoles" : { - "account" : [ "manage-account", "view-profile" ] - }, - "notBefore" : 0, - "groups" : [ ] - }, { - "id" : "5459884f-0e81-4541-b0f7-039143074658", - "createdTimestamp" : 1647939833771, - "username" : "nl2cnl_test", - "enabled" : true, - "totp" : false, - "emailVerified" : false, - "credentials" : [ { - "id" : "4e0de4fc-6cc3-41d8-a47c-f227054b51c8", - "type" : "password", - "createdDate" : 1647967133486, - "secretData" : "{\"value\":\"X93ciaDawh7DTl22Z7IUFdC5frMNfPQf20ozhaUjMVHg0yXsQyG16kZVY7BfTWj43CamWVxnJ3fAJ3nm/DjGmA==\",\"salt\":\"bHm4jda9dLNZLfl5wjYZoQ==\",\"additionalParameters\":{}}", - "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" - } ], - "disableableCredentialTypes" : [ ], - "requiredActions" : [ ], - "realmRoles" : [ "offline_access", "uma_authorization" ], - "clientRoles" : { - "account" : [ "manage-account", "view-profile" ] - }, - "notBefore" : 0, - "groups" : [ ] - }, { - "id" : "bb6d0c7f-e4ea-4f42-9375-f741b1ebac97", - "createdTimestamp" : 1646841881112, - "username" : "policyexpert", - "enabled" : true, - "totp" : false, - "emailVerified" : false, - "credentials" : [ { - "id" : "f9c4ca91-072f-418e-8bfb-0ef499620490", - "type" : "password", - "createdDate" : 1646841889121, - "secretData" : "{\"value\":\"6OlHWWs4Bad2qqMXi7PdiCAsNLjQTmbhgssnGuFAlTeMJeI/k48B8ahGyrJ2RYO4WcM29yBCEBZoZOWx7QUXEQ==\",\"salt\":\"FUl+Hwy2OqSWb+po3PvAGQ==\",\"additionalParameters\":{}}", - "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" - } ], - "disableableCredentialTypes" : [ ], - "requiredActions" : [ ], - "realmRoles" : [ "offline_access", "uma_authorization", "Compliance Manager" ], - "clientRoles" : { - "account" : [ "manage-account", "view-profile" ] - }, - "notBefore" : 0, - "groups" : [ ] - }, { - "id" : "7fcfeba8-2512-4c10-b1e8-fac6d623a83e", - "createdTimestamp" : 1647940816157, - "username" : "service-account-admin-cli", - "enabled" : true, - "totp" : false, - "emailVerified" : false, - "serviceAccountClientId" : "admin-cli", - "credentials" : [ ], - "disableableCredentialTypes" : [ ], - "requiredActions" : [ ], - "realmRoles" : [ "offline_access", "uma_authorization" ], - "clientRoles" : { - "account" : [ "manage-account", "view-profile" ] - }, - "notBefore" : 0, - "groups" : [ ] - }, { - "id" : "465eb553-71ea-47bb-8557-3753e1679b0b", - "createdTimestamp" : 1648629087836, - "username" : "service-account-api-swagger", - "enabled" : true, - "totp" : false, - "emailVerified" : false, - "serviceAccountClientId" : "api-swagger", - "credentials" : [ ], - "disableableCredentialTypes" : [ ], - "requiredActions" : [ ], - "realmRoles" : [ "offline_access", "uma_authorization" ], - "clientRoles" : { - "api-swagger" : [ "uma_protection" ], - "account" : [ "manage-account", "view-profile" ] - }, - "notBefore" : 0, - "groups" : [ ] - }, { - "id" : "4ccb51e5-5911-4052-914b-41120086c8ef", - "createdTimestamp" : 1648043982626, - "username" : "service-account-catalogue-backend", - "enabled" : true, - "totp" : false, - "emailVerified" : false, - "serviceAccountClientId" : "catalogue-backend", - "credentials" : [ ], - "disableableCredentialTypes" : [ ], - "requiredActions" : [ ], - "realmRoles" : [ "offline_access", "uma_authorization" ], - "clientRoles" : { - "account" : [ "manage-account", "view-profile" ] - }, - "notBefore" : 0, - "groups" : [ ] - }, { - "id" : "72b2d795-8d27-4aa7-a935-4c1ce274f27d", - "createdTimestamp" : 1650355454172, - "username" : "service-account-cce-dev", - "enabled" : true, - "totp" : false, - "emailVerified" : false, - "serviceAccountClientId" : "cce-dev", - "credentials" : [ ], - "disableableCredentialTypes" : [ ], - "requiredActions" : [ ], - "realmRoles" : [ "offline_access", "uma_authorization" ], - "clientRoles" : { - "cce-dev" : [ "uma_protection" ], - "account" : [ "manage-account", "view-profile" ] - }, - "notBefore" : 0, - "groups" : [ ] - }, { - "id" : "4aafc668-9855-44b2-a079-a271a3c4a515", - "createdTimestamp" : 1646860326928, - "username" : "service-account-clouditor-assessment", - "enabled" : true, - "totp" : false, - "emailVerified" : false, - "serviceAccountClientId" : "clouditor-assessment", - "credentials" : [ ], - "disableableCredentialTypes" : [ ], - "requiredActions" : [ ], - "realmRoles" : [ "offline_access", "uma_authorization" ], - "clientRoles" : { - "account" : [ "manage-account", "view-profile" ] - }, - "notBefore" : 0, - "groups" : [ ] - }, { - "id" : "89145876-b402-435f-bcfc-1a5da1f948ac", - "createdTimestamp" : 1646860316152, - "username" : "service-account-clouditor-discovery", - "enabled" : true, - "totp" : false, - "emailVerified" : false, - "serviceAccountClientId" : "clouditor-discovery", - "credentials" : [ ], - "disableableCredentialTypes" : [ ], - "requiredActions" : [ ], - "realmRoles" : [ "offline_access", "uma_authorization" ], - "clientRoles" : { - "account" : [ "manage-account", "view-profile" ] - }, - "notBefore" : 0, - "groups" : [ ] - }, { - "id" : "a5916f7c-3494-4b8b-a899-d6424762a7e8", - "createdTimestamp" : 1646917353062, - "username" : "service-account-codyze", - "enabled" : true, - "totp" : false, - "emailVerified" : false, - "serviceAccountClientId" : "codyze", - "credentials" : [ ], - "disableableCredentialTypes" : [ ], - "requiredActions" : [ ], - "realmRoles" : [ "offline_access", "uma_authorization" ], - "clientRoles" : { - "account" : [ "manage-account", "view-profile" ] - }, - "notBefore" : 0, - "groups" : [ ] - }, { - "id" : "6e8ff208-0ede-436c-b1ee-b853d33c3d81", - "createdTimestamp" : 1646998107929, - "username" : "service-account-life-cycle-manager", - "enabled" : true, - "totp" : false, - "emailVerified" : false, - "serviceAccountClientId" : "life-cycle-manager", - "credentials" : [ ], - "disableableCredentialTypes" : [ ], - "requiredActions" : [ ], - "realmRoles" : [ "offline_access", "uma_authorization" ], - "clientRoles" : { - "account" : [ "manage-account", "view-profile" ] - }, - "notBefore" : 0, - "groups" : [ ] - }, { - "id" : "7cdaece4-9f13-4a89-9e46-f56a3cee862e", - "createdTimestamp" : 1647940729928, - "username" : "service-account-nl2cnl-translator-client", - "enabled" : true, - "totp" : false, - "emailVerified" : false, - "serviceAccountClientId" : "nl2cnl-translator-client", - "credentials" : [ ], - "disableableCredentialTypes" : [ ], - "requiredActions" : [ ], - "realmRoles" : [ "offline_access", "uma_authorization" ], - "clientRoles" : { - "nl2cnl-translator-client" : [ "uma_protection" ], - "account" : [ "manage-account", "view-profile" ] - }, - "notBefore" : 0, - "groups" : [ ] - }, { - "id" : "20913f11-a80b-4b95-9e9c-3b7318275a9f", - "createdTimestamp" : 1650445410351, - "username" : "service-account-raof", - "enabled" : true, - "totp" : false, - "emailVerified" : false, - "serviceAccountClientId" : "raof", - "credentials" : [ ], - "disableableCredentialTypes" : [ ], - "requiredActions" : [ ], - "realmRoles" : [ "offline_access", "uma_authorization" ], - "clientRoles" : { - "raof" : [ "uma_protection" ], - "account" : [ "manage-account", "view-profile" ] - }, - "notBefore" : 0, - "groups" : [ ] - }, { - "id" : "43256450-bcb4-4115-ae7b-952462768dde", - "createdTimestamp" : 1650957338070, - "username" : "service-account-raof-app", - "enabled" : true, - "totp" : false, - "emailVerified" : false, - "serviceAccountClientId" : "raof-app", - "credentials" : [ ], - "disableableCredentialTypes" : [ ], - "requiredActions" : [ ], - "realmRoles" : [ "offline_access", "uma_authorization" ], - "clientRoles" : { - "raof-app" : [ "uma_protection" ], - "account" : [ "manage-account", "view-profile" ] - }, - "notBefore" : 0, - "groups" : [ ] - }, { - "id" : "d12a0ea0-d7d4-4194-b8f7-6e1190bbfcff", - "createdTimestamp" : 1650377634668, - "username" : "service-account-wazuh-vat-evidence-collector-dev", - "enabled" : true, - "totp" : false, - "emailVerified" : false, - "serviceAccountClientId" : "wazuh-vat-evidence-collector-dev", - "credentials" : [ ], - "disableableCredentialTypes" : [ ], - "requiredActions" : [ ], - "realmRoles" : [ "offline_access", "uma_authorization" ], - "clientRoles" : { - "wazuh-vat-evidence-collector-dev" : [ "uma_protection" ], - "account" : [ "manage-account", "view-profile" ] - }, - "notBefore" : 0, - "groups" : [ ] - }, { - "id" : "388c9e25-e443-4e6f-b99d-0eafe23def6d", - "createdTimestamp" : 1649755577157, - "username" : "tqqyslvjxn8oaaxkrkukjemcx3dfuu4muiukirgxgf8=", - "enabled" : true, - "totp" : false, - "emailVerified" : false, - "firstName" : "Patrick", - "lastName" : "Weiss", - "email" : "patrick.weiss3@de.bosch.com", - "credentials" : [ ], - "disableableCredentialTypes" : [ ], - "requiredActions" : [ ], - "federatedIdentities" : [ { - "identityProvider" : "oidc", - "userId" : "TQQySlVjXN8OaaXkrKUKJEMCx3dfuu4MuIuKiRgXgF8=", - "userName" : "tqqyslvjxn8oaaxkrkukjemcx3dfuu4muiukirgxgf8=" - } ], - "realmRoles" : [ "offline_access", "uma_authorization", "Compliance Manager" ], - "clientRoles" : { - "integrated-ui" : [ "user", "admin" ], - "account" : [ "manage-account", "view-profile" ] - }, - "notBefore" : 0, - "groups" : [ ] - }, { - "id" : "a2d9c454-960f-47e9-860e-e1876cdd81e7", - "createdTimestamp" : 1648054983093, - "username" : "user", - "enabled" : true, - "totp" : false, - "emailVerified" : false, - "firstName" : "U.", - "lastName" : "Ser", - "email" : "user@localhost", - "credentials" : [ { - "id" : "b6a60d24-da76-47f4-a07b-885bac646b7a", - "type" : "password", - "createdDate" : 1650406346090, - "secretData" : "{\"value\":\"NTNpm0k7ky3gLf9pcYTklGY8qn0LPwCrhUYu94nhHVUl1vp5IHb5eSjgFJjpFaKKObNDcz7qJFWjyJ/mWCtwGA==\",\"salt\":\"fQAJhWFTktzewkFQ5ypbRQ==\",\"additionalParameters\":{}}", - "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" - } ], - "disableableCredentialTypes" : [ ], - "requiredActions" : [ ], - "realmRoles" : [ "ROLE_USER", "offline_access", "Auditor", "uma_authorization" ], - "clientRoles" : { - "account" : [ "manage-account", "view-profile" ] - }, - "notBefore" : 0, - "groups" : [ ] - } ], - "scopeMappings" : [ { - "clientScope" : "offline_access", - "roles" : [ "offline_access" ] - } ], - "clientScopeMappings" : { - "account" : [ { - "client" : "account-console", - "roles" : [ "manage-account" ] - } ] - }, - "clients" : [ { - "id" : "8bd89baf-08f6-4e4b-8394-6b4dd6050ed2", - "clientId" : "account", - "name" : "${client_account}", - "rootUrl" : "${authBaseUrl}", - "baseUrl" : "/realms/medina/account/", - "surrogateAuthRequired" : false, - "enabled" : true, - "alwaysDisplayInConsole" : false, - "clientAuthenticatorType" : "client-secret", - "secret" : "533f8bfc-73ca-4950-a17e-29510052e70a", - "defaultRoles" : [ "manage-account", "view-profile" ], - "redirectUris" : [ "/realms/medina/account/*" ], - "webOrigins" : [ ], - "notBefore" : 0, - "bearerOnly" : false, - "consentRequired" : false, - "standardFlowEnabled" : true, - "implicitFlowEnabled" : false, - "directAccessGrantsEnabled" : false, - "serviceAccountsEnabled" : false, - "publicClient" : false, - "frontchannelLogout" : false, - "protocol" : "openid-connect", - "attributes" : { }, - "authenticationFlowBindingOverrides" : { }, - "fullScopeAllowed" : false, - "nodeReRegistrationTimeout" : 0, - "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], - "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] - }, { - "id" : "8f7fee7a-d32e-4c08-85fd-0a92ace43970", - "clientId" : "account-console", - "name" : "${client_account-console}", - "rootUrl" : "${authBaseUrl}", - "baseUrl" : "/realms/medina/account/", - "surrogateAuthRequired" : false, - "enabled" : true, - "alwaysDisplayInConsole" : false, - "clientAuthenticatorType" : "client-secret", - "secret" : "0ffbdc8a-e2b4-4693-abc0-cf08d0a3127e", - "redirectUris" : [ "/realms/medina/account/*" ], - "webOrigins" : [ ], - "notBefore" : 0, - "bearerOnly" : false, - "consentRequired" : false, - "standardFlowEnabled" : true, - "implicitFlowEnabled" : false, - "directAccessGrantsEnabled" : false, - "serviceAccountsEnabled" : false, - "publicClient" : true, - "frontchannelLogout" : false, - "protocol" : "openid-connect", - "attributes" : { - "pkce.code.challenge.method" : "S256" - }, - "authenticationFlowBindingOverrides" : { }, - "fullScopeAllowed" : false, - "nodeReRegistrationTimeout" : 0, - "protocolMappers" : [ { - "id" : "edc42cad-bd34-4811-8354-0adaee774340", - "name" : "audience resolve", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-audience-resolve-mapper", - "consentRequired" : false, - "config" : { } - } ], - "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], - "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] - }, { - "id" : "24244b46-4845-4734-a061-bcb8ec91b84c", - "clientId" : "admin-cli", - "name" : "${client_admin-cli}", - "surrogateAuthRequired" : false, - "enabled" : true, - "alwaysDisplayInConsole" : false, - "clientAuthenticatorType" : "client-secret", - "secret" : "c29d2164-1f3d-476b-951c-c5eea7518fd6", - "redirectUris" : [ ], - "webOrigins" : [ ], - "notBefore" : 0, - "bearerOnly" : false, - "consentRequired" : false, - "standardFlowEnabled" : false, - "implicitFlowEnabled" : false, - "directAccessGrantsEnabled" : true, - "serviceAccountsEnabled" : true, - "publicClient" : false, - "frontchannelLogout" : false, - "protocol" : "openid-connect", - "attributes" : { - "saml.assertion.signature" : "false", - "saml.force.post.binding" : "false", - "saml.multivalued.roles" : "false", - "saml.encrypt" : "false", - "backchannel.logout.revoke.offline.tokens" : "false", - "saml.server.signature" : "false", - "saml.server.signature.keyinfo.ext" : "false", - "exclude.session.state.from.auth.response" : "false", - "backchannel.logout.session.required" : "false", - "client_credentials.use_refresh_token" : "false", - "saml_force_name_id_format" : "false", - "saml.client.signature" : "false", - "tls.client.certificate.bound.access.tokens" : "false", - "saml.authnstatement" : "false", - "display.on.consent.screen" : "false", - "saml.onetimeuse.condition" : "false" - }, - "authenticationFlowBindingOverrides" : { }, - "fullScopeAllowed" : true, - "nodeReRegistrationTimeout" : 0, - "protocolMappers" : [ { - "id" : "8b8f8749-0adc-492d-a73d-3029413881be", - "name" : "Client ID", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientId", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientId", - "jsonType.label" : "String" - } - }, { - "id" : "6117fb7e-ecbe-4f0f-90da-d5a5c805e5d7", - "name" : "Client IP Address", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientAddress", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientAddress", - "jsonType.label" : "String" - } - }, { - "id" : "786a08b5-a459-43d0-b0d4-1d45a084a14a", - "name" : "Client Host", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientHost", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientHost", - "jsonType.label" : "String" - } - } ], - "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], - "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] - }, { - "id" : "a25b15fc-202b-4dc6-9340-fcc94f491a24", - "clientId" : "amoe-client", - "rootUrl" : "https://api-assessment-and-management-of-organisational-evidences-dev.192.168.56.1.nip.io:8443/", - "adminUrl" : "https://api-assessment-and-management-of-organisational-evidences-dev.192.168.56.1.nip.io:8443/", - "surrogateAuthRequired" : false, - "enabled" : true, - "alwaysDisplayInConsole" : false, - "clientAuthenticatorType" : "client-secret", - "secret" : "54d58c5f-dfd7-4902-819c-5b316ca13770", - "redirectUris" : [ "*" ], - "webOrigins" : [ "*" ], - "notBefore" : 0, - "bearerOnly" : false, - "consentRequired" : false, - "standardFlowEnabled" : true, - "implicitFlowEnabled" : false, - "directAccessGrantsEnabled" : true, - "serviceAccountsEnabled" : false, - "publicClient" : false, - "frontchannelLogout" : false, - "protocol" : "openid-connect", - "attributes" : { - "saml.assertion.signature" : "false", - "saml.force.post.binding" : "false", - "saml.multivalued.roles" : "false", - "saml.encrypt" : "false", - "backchannel.logout.revoke.offline.tokens" : "false", - "saml.server.signature" : "false", - "saml.server.signature.keyinfo.ext" : "false", - "exclude.session.state.from.auth.response" : "false", - "backchannel.logout.session.required" : "true", - "client_credentials.use_refresh_token" : "false", - "saml_force_name_id_format" : "false", - "saml.client.signature" : "false", - "tls.client.certificate.bound.access.tokens" : "false", - "saml.authnstatement" : "false", - "display.on.consent.screen" : "false", - "saml.onetimeuse.condition" : "false" - }, - "authenticationFlowBindingOverrides" : { }, - "fullScopeAllowed" : true, - "nodeReRegistrationTimeout" : -1, - "protocolMappers" : [ { - "id" : "7adfc5e5-5248-4737-8b84-78567a897980", - "name" : "Client Host", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientHost", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientHost", - "jsonType.label" : "String" - } - }, { - "id" : "f96e6e25-77e4-4ffe-a4ca-5081f6dd3488", - "name" : "Client ID", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientId", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientId", - "jsonType.label" : "String" - } - }, { - "id" : "0078d78f-a368-41c5-9c41-16ba08b0dd64", - "name" : "Client IP Address", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientAddress", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientAddress", - "jsonType.label" : "String" - } - } ], - "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], - "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] - }, { - "id" : "a08fc1fe-7c85-4c1c-9d04-604c6e35faa8", - "clientId" : "api-swagger", - "rootUrl" : "https://api-swagger-dev.192.168.56.1.nip.io:8443", - "adminUrl" : "https://api-swagger-dev.192.168.56.1.nip.io:8443", - "surrogateAuthRequired" : false, - "enabled" : true, - "alwaysDisplayInConsole" : false, - "clientAuthenticatorType" : "client-secret", - "secret" : "c29a5cf2-52c0-4fa2-89fc-8951fa80ce84", - "redirectUris" : [ "https://api-swagger-dev.192.168.56.1.nip.io:8443/*" ], - "webOrigins" : [ "https://api-swagger-dev.192.168.56.1.nip.io:8443" ], - "notBefore" : 0, - "bearerOnly" : false, - "consentRequired" : false, - "standardFlowEnabled" : true, - "implicitFlowEnabled" : false, - "directAccessGrantsEnabled" : true, - "serviceAccountsEnabled" : true, - "authorizationServicesEnabled" : true, - "publicClient" : false, - "frontchannelLogout" : false, - "protocol" : "openid-connect", - "attributes" : { - "saml.assertion.signature" : "false", - "saml.force.post.binding" : "false", - "saml.multivalued.roles" : "false", - "saml.encrypt" : "false", - "backchannel.logout.revoke.offline.tokens" : "false", - "saml.server.signature" : "false", - "saml.server.signature.keyinfo.ext" : "false", - "exclude.session.state.from.auth.response" : "false", - "backchannel.logout.session.required" : "true", - "client_credentials.use_refresh_token" : "false", - "saml_force_name_id_format" : "false", - "saml.client.signature" : "false", - "tls.client.certificate.bound.access.tokens" : "false", - "saml.authnstatement" : "false", - "display.on.consent.screen" : "false", - "saml.onetimeuse.condition" : "false" - }, - "authenticationFlowBindingOverrides" : { }, - "fullScopeAllowed" : true, - "nodeReRegistrationTimeout" : -1, - "protocolMappers" : [ { - "id" : "a1b33188-ca81-44c0-ba56-772581a94038", - "name" : "Client IP Address", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientAddress", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientAddress", - "jsonType.label" : "String" - } - }, { - "id" : "7455b7e4-2b73-4a6d-b7e6-8434370a7a85", - "name" : "Client Host", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientHost", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientHost", - "jsonType.label" : "String" - } - }, { - "id" : "d9167dc9-6937-4bea-bc20-6e885857ccd0", - "name" : "Client ID", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientId", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientId", - "jsonType.label" : "String" - } - } ], - "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], - "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ], - "authorizationSettings" : { - "allowRemoteResourceManagement" : true, - "policyEnforcementMode" : "ENFORCING", - "resources" : [ { - "name" : "Default Resource", - "type" : "urn:api-swagger:resources:default", - "ownerManagedAccess" : false, - "attributes" : { }, - "_id" : "b8d55282-f977-4e89-9e8e-2b3e8ef07200", - "uris" : [ "/*" ] - } ], - "policies" : [ { - "id" : "9dc0a736-90a6-4428-be5a-0695b9153f93", - "name" : "Default Policy", - "description" : "A policy that grants access only for users within this realm", - "type" : "js", - "logic" : "POSITIVE", - "decisionStrategy" : "AFFIRMATIVE", - "config" : { - "code" : "// by default, grants any permission associated with this policy\n$evaluation.grant();\n" - } - }, { - "id" : "4058b893-6396-4351-ae9c-e4ecf5329d18", - "name" : "Default Permission", - "description" : "A permission that applies to the default resource type", - "type" : "resource", - "logic" : "POSITIVE", - "decisionStrategy" : "UNANIMOUS", - "config" : { - "defaultResourceType" : "urn:api-swagger:resources:default", - "applyPolicies" : "[\"Default Policy\"]" - } - } ], - "scopes" : [ ], - "decisionStrategy" : "UNANIMOUS" - } - }, { - "id" : "8d1a867d-537c-433e-8234-b3582127cc54", - "clientId" : "broker", - "name" : "${client_broker}", - "surrogateAuthRequired" : false, - "enabled" : true, - "alwaysDisplayInConsole" : false, - "clientAuthenticatorType" : "client-secret", - "secret" : "4293f846-3a76-4628-a9a4-810bebcdc51b", - "redirectUris" : [ ], - "webOrigins" : [ ], - "notBefore" : 0, - "bearerOnly" : false, - "consentRequired" : false, - "standardFlowEnabled" : true, - "implicitFlowEnabled" : false, - "directAccessGrantsEnabled" : false, - "serviceAccountsEnabled" : false, - "publicClient" : false, - "frontchannelLogout" : false, - "protocol" : "openid-connect", - "attributes" : { }, - "authenticationFlowBindingOverrides" : { }, - "fullScopeAllowed" : false, - "nodeReRegistrationTimeout" : 0, - "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], - "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] - }, { - "id" : "df274002-83dd-4c7f-b64b-8cf7b90d9a97", - "clientId" : "catalogue-backend", - "surrogateAuthRequired" : false, - "enabled" : true, - "alwaysDisplayInConsole" : false, - "clientAuthenticatorType" : "client-secret", - "secret" : "47b59168-f965-4a6f-941c-ae7ee1ba463c", - "redirectUris" : [ ], - "webOrigins" : [ ], - "notBefore" : 0, - "bearerOnly" : false, - "consentRequired" : false, - "standardFlowEnabled" : false, - "implicitFlowEnabled" : false, - "directAccessGrantsEnabled" : false, - "serviceAccountsEnabled" : true, - "publicClient" : false, - "frontchannelLogout" : false, - "protocol" : "openid-connect", - "attributes" : { - "saml.assertion.signature" : "false", - "saml.force.post.binding" : "false", - "saml.multivalued.roles" : "false", - "saml.encrypt" : "false", - "backchannel.logout.revoke.offline.tokens" : "false", - "saml.server.signature" : "false", - "saml.server.signature.keyinfo.ext" : "false", - "exclude.session.state.from.auth.response" : "false", - "backchannel.logout.session.required" : "true", - "client_credentials.use_refresh_token" : "false", - "saml_force_name_id_format" : "false", - "saml.client.signature" : "false", - "tls.client.certificate.bound.access.tokens" : "false", - "saml.authnstatement" : "false", - "display.on.consent.screen" : "false", - "saml.onetimeuse.condition" : "false" - }, - "authenticationFlowBindingOverrides" : { }, - "fullScopeAllowed" : true, - "nodeReRegistrationTimeout" : -1, - "protocolMappers" : [ { - "id" : "6ea5df11-551c-44e4-a4e7-74e787bea43e", - "name" : "Client Host", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientHost", - "userinfo.token.claim" : "true", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientHost", - "jsonType.label" : "String" - } - }, { - "id" : "0544b98a-f678-4395-b3cf-bdb0529a5661", - "name" : "Client IP Address", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientAddress", - "userinfo.token.claim" : "true", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientAddress", - "jsonType.label" : "String" - } - }, { - "id" : "adace2ba-512e-4856-a187-75031220377d", - "name" : "Client ID", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientId", - "userinfo.token.claim" : "true", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientId", - "jsonType.label" : "String" - } - } ], - "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], - "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] - }, { - "id" : "fa074dc3-e8de-4f34-9437-dc5d93f60f9a", - "clientId" : "catalogue-gateway", - "rootUrl" : "https://192.168.56.1.nip.io:8443", - "adminUrl" : "https://192.168.56.1.nip.io:8443", - "surrogateAuthRequired" : false, - "enabled" : true, - "alwaysDisplayInConsole" : false, - "clientAuthenticatorType" : "client-secret", - "secret" : "1895c8be-10f2-4243-a7da-8443aa1a2851", - "redirectUris" : [ "*" ], - "webOrigins" : [ "*" ], - "notBefore" : 0, - "bearerOnly" : false, - "consentRequired" : false, - "standardFlowEnabled" : true, - "implicitFlowEnabled" : true, - "directAccessGrantsEnabled" : false, - "serviceAccountsEnabled" : false, - "publicClient" : true, - "frontchannelLogout" : false, - "protocol" : "openid-connect", - "attributes" : { - "saml.assertion.signature" : "false", - "saml.force.post.binding" : "false", - "saml.multivalued.roles" : "false", - "saml.encrypt" : "false", - "backchannel.logout.revoke.offline.tokens" : "false", - "saml.server.signature" : "false", - "saml.server.signature.keyinfo.ext" : "false", - "exclude.session.state.from.auth.response" : "false", - "backchannel.logout.session.required" : "true", - "client_credentials.use_refresh_token" : "false", - "saml_force_name_id_format" : "false", - "saml.client.signature" : "false", - "tls.client.certificate.bound.access.tokens" : "false", - "saml.authnstatement" : "false", - "display.on.consent.screen" : "false", - "saml.onetimeuse.condition" : "false" - }, - "authenticationFlowBindingOverrides" : { }, - "fullScopeAllowed" : true, - "nodeReRegistrationTimeout" : -1, - "defaultClientScopes" : [ "web-origins", "jhipster", "role_list", "profile", "roles", "email" ], - "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] - }, { - "id" : "b7769853-8605-4a36-9352-7633d3be0f22", - "clientId" : "catalogue-jhipster-control-center", - "rootUrl" : "http://localhost:7419", - "adminUrl" : "http://localhost:7419", - "surrogateAuthRequired" : false, - "enabled" : true, - "alwaysDisplayInConsole" : false, - "clientAuthenticatorType" : "client-secret", - "secret" : "a77e5efc-e542-4ed2-b8a2-535fe4c4fb34", - "redirectUris" : [ "dev.localhost.ionic:*", "http://127.0.0.1:*", "http://localhost:*", "https://127.0.0.1:*", "https://localhost:*" ], - "webOrigins" : [ "*" ], - "notBefore" : 0, - "bearerOnly" : false, - "consentRequired" : false, - "standardFlowEnabled" : true, - "implicitFlowEnabled" : true, - "directAccessGrantsEnabled" : false, - "serviceAccountsEnabled" : false, - "publicClient" : true, - "frontchannelLogout" : false, - "protocol" : "openid-connect", - "attributes" : { - "saml.assertion.signature" : "false", - "saml.force.post.binding" : "false", - "saml.multivalued.roles" : "false", - "saml.encrypt" : "false", - "backchannel.logout.revoke.offline.tokens" : "false", - "saml.server.signature" : "false", - "saml.server.signature.keyinfo.ext" : "false", - "exclude.session.state.from.auth.response" : "false", - "backchannel.logout.session.required" : "true", - "saml_force_name_id_format" : "false", - "saml.client.signature" : "false", - "tls.client.certificate.bound.access.tokens" : "false", - "saml.authnstatement" : "false", - "display.on.consent.screen" : "false", - "saml.onetimeuse.condition" : "false" - }, - "authenticationFlowBindingOverrides" : { }, - "fullScopeAllowed" : true, - "nodeReRegistrationTimeout" : -1, - "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], - "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] - }, { - "id" : "645cf799-be24-42fd-a169-f9d5fc39be31", - "clientId" : "catalogue-registry", - "rootUrl" : "https://registry.192.168.56.1.nip.io:8443", - "adminUrl" : "https://registry.192.168.56.1.nip.io:8443", - "surrogateAuthRequired" : false, - "enabled" : true, - "alwaysDisplayInConsole" : false, - "clientAuthenticatorType" : "client-secret", - "secret" : "ff31a06d-d850-48d2-8355-6723e856c1b6", - "redirectUris" : [ "*" ], - "webOrigins" : [ "*" ], - "notBefore" : 0, - "bearerOnly" : false, - "consentRequired" : false, - "standardFlowEnabled" : true, - "implicitFlowEnabled" : false, - "directAccessGrantsEnabled" : true, - "serviceAccountsEnabled" : false, - "publicClient" : true, - "frontchannelLogout" : false, - "protocol" : "openid-connect", - "attributes" : { - "saml.assertion.signature" : "false", - "saml.force.post.binding" : "false", - "saml.multivalued.roles" : "false", - "saml.encrypt" : "false", - "backchannel.logout.revoke.offline.tokens" : "false", - "saml.server.signature" : "false", - "saml.server.signature.keyinfo.ext" : "false", - "exclude.session.state.from.auth.response" : "false", - "backchannel.logout.session.required" : "true", - "saml_force_name_id_format" : "false", - "saml.client.signature" : "false", - "tls.client.certificate.bound.access.tokens" : "false", - "saml.authnstatement" : "false", - "display.on.consent.screen" : "false", - "saml.onetimeuse.condition" : "false" - }, - "authenticationFlowBindingOverrides" : { }, - "fullScopeAllowed" : true, - "nodeReRegistrationTimeout" : -1, - "defaultClientScopes" : [ "web-origins", "jhipster", "role_list", "roles", "profile", "email" ], - "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] - }, { - "id" : "12d63192-94cd-4692-b557-ab76a331eaa6", - "clientId" : "ccd-client", - "name" : "Company compliance dashboard", - "surrogateAuthRequired" : false, - "enabled" : true, - "alwaysDisplayInConsole" : false, - "clientAuthenticatorType" : "client-secret", - "secret" : "cc728558-1c40-48ae-8be4-e48b582a727a", - "redirectUris" : [ "http://localhost:8080/" ], - "webOrigins" : [ ], - "notBefore" : 0, - "bearerOnly" : false, - "consentRequired" : false, - "standardFlowEnabled" : true, - "implicitFlowEnabled" : false, - "directAccessGrantsEnabled" : true, - "serviceAccountsEnabled" : false, - "publicClient" : false, - "frontchannelLogout" : false, - "protocol" : "openid-connect", - "attributes" : { - "saml.assertion.signature" : "false", - "saml.force.post.binding" : "false", - "saml.multivalued.roles" : "false", - "saml.encrypt" : "false", - "backchannel.logout.revoke.offline.tokens" : "false", - "saml.server.signature" : "false", - "saml.server.signature.keyinfo.ext" : "false", - "exclude.session.state.from.auth.response" : "false", - "backchannel.logout.session.required" : "true", - "client_credentials.use_refresh_token" : "false", - "saml_force_name_id_format" : "false", - "saml.client.signature" : "false", - "tls.client.certificate.bound.access.tokens" : "false", - "saml.authnstatement" : "false", - "display.on.consent.screen" : "false", - "saml.onetimeuse.condition" : "false" - }, - "authenticationFlowBindingOverrides" : { }, - "fullScopeAllowed" : true, - "nodeReRegistrationTimeout" : -1, - "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], - "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] - }, { - "id" : "dc64b28b-a696-4b0c-8e24-2aeae138c3e5", - "clientId" : "cce-dev", - "rootUrl" : "http://cce-api-dev.192.168.56.1.nip.io:8443/", - "adminUrl" : "http://cce-api-dev.192.168.56.1.nip.io:8443/", - "surrogateAuthRequired" : false, - "enabled" : true, - "alwaysDisplayInConsole" : false, - "clientAuthenticatorType" : "client-secret", - "secret" : "efe3acb8-b4c1-43f0-a3a2-b75402e76afc", - "redirectUris" : [ "http://cce-api-dev.192.168.56.1.nip.io:8443/*" ], - "webOrigins" : [ "http://cce-api-dev.192.168.56.1.nip.io:8443" ], - "notBefore" : 0, - "bearerOnly" : false, - "consentRequired" : false, - "standardFlowEnabled" : true, - "implicitFlowEnabled" : false, - "directAccessGrantsEnabled" : true, - "serviceAccountsEnabled" : true, - "authorizationServicesEnabled" : true, - "publicClient" : false, - "frontchannelLogout" : false, - "protocol" : "openid-connect", - "attributes" : { - "saml.assertion.signature" : "false", - "saml.force.post.binding" : "false", - "saml.multivalued.roles" : "false", - "saml.encrypt" : "false", - "backchannel.logout.revoke.offline.tokens" : "false", - "saml.server.signature" : "false", - "saml.server.signature.keyinfo.ext" : "false", - "exclude.session.state.from.auth.response" : "false", - "backchannel.logout.session.required" : "true", - "client_credentials.use_refresh_token" : "false", - "saml_force_name_id_format" : "false", - "saml.client.signature" : "false", - "tls.client.certificate.bound.access.tokens" : "false", - "saml.authnstatement" : "false", - "display.on.consent.screen" : "false", - "saml.onetimeuse.condition" : "false" - }, - "authenticationFlowBindingOverrides" : { }, - "fullScopeAllowed" : true, - "nodeReRegistrationTimeout" : -1, - "protocolMappers" : [ { - "id" : "12f94f61-bb5e-41dc-ae0b-20206ff6173c", - "name" : "Client IP Address", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientAddress", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientAddress", - "jsonType.label" : "String" - } - }, { - "id" : "3920d8ac-45ea-4bf5-a203-1c831cb845ab", - "name" : "Client Host", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientHost", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientHost", - "jsonType.label" : "String" - } - }, { - "id" : "5f427941-d12d-432c-b883-ac39fe209705", - "name" : "Client ID", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientId", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientId", - "jsonType.label" : "String" - } - } ], - "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], - "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ], - "authorizationSettings" : { - "allowRemoteResourceManagement" : true, - "policyEnforcementMode" : "ENFORCING", - "resources" : [ { - "name" : "Default Resource", - "type" : "urn:cce-dev:resources:default", - "ownerManagedAccess" : false, - "attributes" : { }, - "_id" : "ef475897-65aa-4813-a810-340268090336", - "uris" : [ "/*" ] - } ], - "policies" : [ { - "id" : "ff85e02d-5048-473c-8bd0-fa22b6574852", - "name" : "Default Policy", - "description" : "A policy that grants access only for users within this realm", - "type" : "js", - "logic" : "POSITIVE", - "decisionStrategy" : "AFFIRMATIVE", - "config" : { - "code" : "// by default, grants any permission associated with this policy\n$evaluation.grant();\n" - } - }, { - "id" : "043cee90-99a8-4f2b-9ad2-3f37ce518483", - "name" : "Default Permission", - "description" : "A permission that applies to the default resource type", - "type" : "resource", - "logic" : "POSITIVE", - "decisionStrategy" : "UNANIMOUS", - "config" : { - "defaultResourceType" : "urn:cce-dev:resources:default", - "applyPolicies" : "[\"Default Policy\"]" - } - } ], - "scopes" : [ ], - "decisionStrategy" : "UNANIMOUS" - } - }, { - "id" : "4a57f2cd-5b99-4b78-ba31-d994521abd30", - "clientId" : "clouditor-assessment", - "surrogateAuthRequired" : false, - "enabled" : true, - "alwaysDisplayInConsole" : false, - "clientAuthenticatorType" : "client-secret", - "secret" : "4a47f42a-df33-418f-b687-64e7c8ffbbda", - "redirectUris" : [ "https://security-assessment-dev.192.168.56.1.nip.io:8443" ], - "webOrigins" : [ ], - "notBefore" : 0, - "bearerOnly" : false, - "consentRequired" : false, - "standardFlowEnabled" : false, - "implicitFlowEnabled" : false, - "directAccessGrantsEnabled" : false, - "serviceAccountsEnabled" : true, - "publicClient" : false, - "frontchannelLogout" : false, - "protocol" : "openid-connect", - "attributes" : { - "saml.assertion.signature" : "false", - "saml.force.post.binding" : "false", - "saml.multivalued.roles" : "false", - "saml.encrypt" : "false", - "backchannel.logout.revoke.offline.tokens" : "false", - "saml.server.signature" : "false", - "saml.server.signature.keyinfo.ext" : "false", - "exclude.session.state.from.auth.response" : "false", - "backchannel.logout.session.required" : "true", - "client_credentials.use_refresh_token" : "false", - "saml_force_name_id_format" : "false", - "saml.client.signature" : "false", - "tls.client.certificate.bound.access.tokens" : "false", - "saml.authnstatement" : "false", - "display.on.consent.screen" : "false", - "saml.onetimeuse.condition" : "false" - }, - "authenticationFlowBindingOverrides" : { }, - "fullScopeAllowed" : true, - "nodeReRegistrationTimeout" : -1, - "protocolMappers" : [ { - "id" : "caf7c5a7-f72e-44d8-aa9d-37c185e415ca", - "name" : "Client ID", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientId", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientId", - "jsonType.label" : "String" - } - }, { - "id" : "7dde8113-bf11-4cb4-be6b-d342ed64b1b6", - "name" : "Client Host", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientHost", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientHost", - "jsonType.label" : "String" - } - }, { - "id" : "1261d141-6010-4868-b659-2ce26e1680b4", - "name" : "Client IP Address", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientAddress", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientAddress", - "jsonType.label" : "String" - } - } ], - "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], - "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] - }, { - "id" : "69bba521-b088-45a6-9e56-bd29e557cea4", - "clientId" : "clouditor-cli", - "surrogateAuthRequired" : false, - "enabled" : true, - "alwaysDisplayInConsole" : false, - "clientAuthenticatorType" : "client-secret", - "secret" : "c3228efe-8dc3-4c09-bc89-8bdc362ae878", - "redirectUris" : [ "http://localhost:10000/callback" ], - "webOrigins" : [ ], - "notBefore" : 0, - "bearerOnly" : false, - "consentRequired" : false, - "standardFlowEnabled" : true, - "implicitFlowEnabled" : false, - "directAccessGrantsEnabled" : false, - "serviceAccountsEnabled" : false, - "publicClient" : true, - "frontchannelLogout" : false, - "protocol" : "openid-connect", - "attributes" : { - "saml.assertion.signature" : "false", - "saml.force.post.binding" : "false", - "saml.multivalued.roles" : "false", - "saml.encrypt" : "false", - "backchannel.logout.revoke.offline.tokens" : "false", - "saml.server.signature" : "false", - "saml.server.signature.keyinfo.ext" : "false", - "exclude.session.state.from.auth.response" : "false", - "backchannel.logout.session.required" : "true", - "client_credentials.use_refresh_token" : "false", - "saml_force_name_id_format" : "false", - "saml.client.signature" : "false", - "tls.client.certificate.bound.access.tokens" : "false", - "saml.authnstatement" : "false", - "display.on.consent.screen" : "false", - "saml.onetimeuse.condition" : "false" - }, - "authenticationFlowBindingOverrides" : { }, - "fullScopeAllowed" : true, - "nodeReRegistrationTimeout" : -1, - "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], - "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] - }, { - "id" : "8fedfacb-2df9-4342-be33-7d3e18dc316f", - "clientId" : "clouditor-discovery", - "surrogateAuthRequired" : false, - "enabled" : true, - "alwaysDisplayInConsole" : false, - "clientAuthenticatorType" : "client-secret", - "secret" : "2f38b7bd-c3fa-4e7b-af59-5b8d67ddd8c1", - "redirectUris" : [ "https://orchestrator-dev.192.168.56.1.nip.io:8443/" ], - "webOrigins" : [ ], - "notBefore" : 0, - "bearerOnly" : false, - "consentRequired" : false, - "standardFlowEnabled" : false, - "implicitFlowEnabled" : false, - "directAccessGrantsEnabled" : false, - "serviceAccountsEnabled" : true, - "publicClient" : false, - "frontchannelLogout" : false, - "protocol" : "openid-connect", - "attributes" : { - "saml.assertion.signature" : "false", - "saml.force.post.binding" : "false", - "saml.multivalued.roles" : "false", - "saml.encrypt" : "false", - "backchannel.logout.revoke.offline.tokens" : "false", - "saml.server.signature" : "false", - "saml.server.signature.keyinfo.ext" : "false", - "exclude.session.state.from.auth.response" : "false", - "backchannel.logout.session.required" : "true", - "client_credentials.use_refresh_token" : "false", - "saml_force_name_id_format" : "false", - "saml.client.signature" : "false", - "tls.client.certificate.bound.access.tokens" : "false", - "saml.authnstatement" : "false", - "display.on.consent.screen" : "false", - "saml.onetimeuse.condition" : "false" - }, - "authenticationFlowBindingOverrides" : { }, - "fullScopeAllowed" : true, - "nodeReRegistrationTimeout" : -1, - "protocolMappers" : [ { - "id" : "8dfab4e0-512c-4879-8878-c949ba32a641", - "name" : "Client Host", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientHost", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientHost", - "jsonType.label" : "String" - } - }, { - "id" : "9bba24ce-80f6-4a69-844d-7406c39d678b", - "name" : "Client ID", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientId", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientId", - "jsonType.label" : "String" - } - }, { - "id" : "112001f6-9584-4949-9d79-4d8e337bb9eb", - "name" : "Client IP Address", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientAddress", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientAddress", - "jsonType.label" : "String" - } - } ], - "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], - "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] - }, { - "id" : "fcf4c413-07b8-40e1-9ee0-2ffa646dfdf5", - "clientId" : "clouditor-ui", - "rootUrl" : "https://orchestrator-dev.192.168.56.1.nip.io:8443", - "surrogateAuthRequired" : false, - "enabled" : true, - "alwaysDisplayInConsole" : false, - "clientAuthenticatorType" : "client-secret", - "secret" : "7a189e46-8e44-4968-9228-2115e84dbcdd", - "redirectUris" : [ "https://orchestrator-dev.192.168.56.1.nip.io:8443/callback" ], - "webOrigins" : [ "https://orchestrator-dev.192.168.56.1.nip.io:8443" ], - "notBefore" : 0, - "bearerOnly" : false, - "consentRequired" : false, - "standardFlowEnabled" : true, - "implicitFlowEnabled" : false, - "directAccessGrantsEnabled" : false, - "serviceAccountsEnabled" : false, - "publicClient" : true, - "frontchannelLogout" : false, - "protocol" : "openid-connect", - "attributes" : { - "saml.assertion.signature" : "false", - "saml.force.post.binding" : "false", - "saml.multivalued.roles" : "false", - "saml.encrypt" : "false", - "backchannel.logout.revoke.offline.tokens" : "false", - "saml.server.signature" : "false", - "saml.server.signature.keyinfo.ext" : "false", - "exclude.session.state.from.auth.response" : "false", - "backchannel.logout.session.required" : "true", - "client_credentials.use_refresh_token" : "false", - "saml_force_name_id_format" : "false", - "saml.client.signature" : "false", - "tls.client.certificate.bound.access.tokens" : "false", - "saml.authnstatement" : "false", - "display.on.consent.screen" : "false", - "saml.onetimeuse.condition" : "false" - }, - "authenticationFlowBindingOverrides" : { }, - "fullScopeAllowed" : true, - "nodeReRegistrationTimeout" : -1, - "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], - "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] - }, { - "id" : "15a81bd1-4edd-4e2a-87ec-3bbcac30d2a3", - "clientId" : "cnl-editor-frontend", - "rootUrl" : "https://cnl-editor-frontend-dev.192.168.56.1.nip.io:8443", - "adminUrl" : "https://cnl-editor-frontend-dev.192.168.56.1.nip.io:8443", - "surrogateAuthRequired" : false, - "enabled" : true, - "alwaysDisplayInConsole" : false, - "clientAuthenticatorType" : "client-secret", - "secret" : "e6b76254-187d-441b-9061-cb6b03dd51a4", - "redirectUris" : [ "http://cnl-editor-frontend-dev.192.168.56.1.nip.io:8443/*", "https://cnl-editor-frontend-dev.192.168.56.1.nip.io:8443/*" ], - "webOrigins" : [ "https://cnl-editor-frontend-dev.192.168.56.1.nip.io:8443" ], - "notBefore" : 0, - "bearerOnly" : false, - "consentRequired" : false, - "standardFlowEnabled" : true, - "implicitFlowEnabled" : false, - "directAccessGrantsEnabled" : true, - "serviceAccountsEnabled" : false, - "publicClient" : true, - "frontchannelLogout" : false, - "protocol" : "openid-connect", - "attributes" : { - "saml.assertion.signature" : "false", - "saml.force.post.binding" : "false", - "saml.multivalued.roles" : "false", - "saml.encrypt" : "false", - "backchannel.logout.revoke.offline.tokens" : "false", - "saml.server.signature" : "false", - "saml.server.signature.keyinfo.ext" : "false", - "exclude.session.state.from.auth.response" : "false", - "backchannel.logout.session.required" : "true", - "client_credentials.use_refresh_token" : "false", - "saml_force_name_id_format" : "false", - "saml.client.signature" : "false", - "tls.client.certificate.bound.access.tokens" : "false", - "saml.authnstatement" : "false", - "display.on.consent.screen" : "false", - "saml.onetimeuse.condition" : "false" - }, - "authenticationFlowBindingOverrides" : { }, - "fullScopeAllowed" : true, - "nodeReRegistrationTimeout" : -1, - "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], - "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] - }, { - "id" : "01fce0c3-2db7-46dd-af1c-115dc1800053", - "clientId" : "codyze", - "surrogateAuthRequired" : false, - "enabled" : true, - "alwaysDisplayInConsole" : false, - "clientAuthenticatorType" : "client-secret", - "secret" : "7ff65ca2-a54a-4093-84f3-3b5756cc4e5c", - "redirectUris" : [ ], - "webOrigins" : [ ], - "notBefore" : 0, - "bearerOnly" : false, - "consentRequired" : false, - "standardFlowEnabled" : false, - "implicitFlowEnabled" : false, - "directAccessGrantsEnabled" : false, - "serviceAccountsEnabled" : true, - "publicClient" : false, - "frontchannelLogout" : false, - "protocol" : "openid-connect", - "attributes" : { - "saml.assertion.signature" : "false", - "saml.force.post.binding" : "false", - "saml.multivalued.roles" : "false", - "saml.encrypt" : "false", - "backchannel.logout.revoke.offline.tokens" : "false", - "saml.server.signature" : "false", - "saml.server.signature.keyinfo.ext" : "false", - "exclude.session.state.from.auth.response" : "false", - "backchannel.logout.session.required" : "true", - "client_credentials.use_refresh_token" : "false", - "saml_force_name_id_format" : "false", - "saml.client.signature" : "false", - "tls.client.certificate.bound.access.tokens" : "false", - "saml.authnstatement" : "false", - "display.on.consent.screen" : "false", - "saml.onetimeuse.condition" : "false" - }, - "authenticationFlowBindingOverrides" : { }, - "fullScopeAllowed" : true, - "nodeReRegistrationTimeout" : -1, - "protocolMappers" : [ { - "id" : "43fbe8e9-8141-4868-b85c-91220bd5f08f", - "name" : "Client IP Address", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientAddress", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientAddress", - "jsonType.label" : "String" - } - }, { - "id" : "ab5e553c-34e4-4411-b6c2-23235f3d7f84", - "name" : "Client ID", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientId", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientId", - "jsonType.label" : "String" - } - }, { - "id" : "8d070365-134e-4302-b0bd-e6ce82b1c2db", - "name" : "Client Host", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientHost", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientHost", - "jsonType.label" : "String" - } - } ], - "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], - "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] - }, { - "id" : "1150f83f-37bc-4b14-98a0-e179aaee0f6c", - "clientId" : "integrated-ui", - "rootUrl" : "https://integrated-ui-dev.192.168.56.1.nip.io:8443", - "adminUrl" : "https://integrated-ui-dev.192.168.56.1.nip.io:8443", - "surrogateAuthRequired" : false, - "enabled" : true, - "alwaysDisplayInConsole" : false, - "clientAuthenticatorType" : "client-secret", - "secret" : "9049e030-2e66-496e-accf-b7a5037bc0eb", - "redirectUris" : [ "https://integrated-ui-dev.192.168.56.1.nip.io:8443/*" ], - "webOrigins" : [ "https://integrated-ui-dev.192.168.56.1.nip.io:8443" ], - "notBefore" : 0, - "bearerOnly" : false, - "consentRequired" : false, - "standardFlowEnabled" : true, - "implicitFlowEnabled" : false, - "directAccessGrantsEnabled" : true, - "serviceAccountsEnabled" : false, - "publicClient" : true, - "frontchannelLogout" : false, - "protocol" : "openid-connect", - "attributes" : { - "backchannel.logout.session.required" : "true", - "backchannel.logout.revoke.offline.tokens" : "false" - }, - "authenticationFlowBindingOverrides" : { }, - "fullScopeAllowed" : true, - "nodeReRegistrationTimeout" : -1, - "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], - "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] - }, { - "id" : "095fac49-b0b4-4c44-b5b9-fa22bed6d160", - "clientId" : "life-cycle-manager", - "surrogateAuthRequired" : false, - "enabled" : true, - "alwaysDisplayInConsole" : false, - "clientAuthenticatorType" : "client-secret", - "secret" : "0191bfe6-1d93-4d89-b1e4-4b505d348057", - "redirectUris" : [ ], - "webOrigins" : [ ], - "notBefore" : 0, - "bearerOnly" : false, - "consentRequired" : false, - "standardFlowEnabled" : false, - "implicitFlowEnabled" : false, - "directAccessGrantsEnabled" : false, - "serviceAccountsEnabled" : true, - "publicClient" : false, - "frontchannelLogout" : false, - "protocol" : "openid-connect", - "attributes" : { - "saml.assertion.signature" : "false", - "saml.force.post.binding" : "false", - "saml.multivalued.roles" : "false", - "saml.encrypt" : "false", - "backchannel.logout.revoke.offline.tokens" : "false", - "saml.server.signature" : "false", - "saml.server.signature.keyinfo.ext" : "false", - "exclude.session.state.from.auth.response" : "false", - "backchannel.logout.session.required" : "true", - "client_credentials.use_refresh_token" : "false", - "saml_force_name_id_format" : "false", - "saml.client.signature" : "false", - "tls.client.certificate.bound.access.tokens" : "false", - "saml.authnstatement" : "false", - "display.on.consent.screen" : "false", - "saml.onetimeuse.condition" : "false" - }, - "authenticationFlowBindingOverrides" : { }, - "fullScopeAllowed" : true, - "nodeReRegistrationTimeout" : -1, - "protocolMappers" : [ { - "id" : "cdb336c7-b22f-44c6-b30b-9136364b8229", - "name" : "Client IP Address", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientAddress", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientAddress", - "jsonType.label" : "String" - } - }, { - "id" : "3c6e3fe1-37bb-4ef0-a162-720b0d78b3af", - "name" : "Client ID", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientId", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientId", - "jsonType.label" : "String" - } - }, { - "id" : "e39ee5e2-dd4a-4d0e-9fc3-a0a84b200143", - "name" : "Client Host", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientHost", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientHost", - "jsonType.label" : "String" - } - } ], - "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], - "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] - }, { - "id" : "9f7c65f7-9ae9-4c9e-9bd7-971d0cbe146d", - "clientId" : "nl2cnl-translator-client", - "rootUrl" : "https://nl2cnl-translator-dev.192.168.56.1.nip.io:8443/", - "adminUrl" : "https://nl2cnl-translator-dev.192.168.56.1.nip.io:8443/", - "surrogateAuthRequired" : false, - "enabled" : true, - "alwaysDisplayInConsole" : false, - "clientAuthenticatorType" : "client-secret", - "secret" : "b1d1d98d-b5e5-46ac-9b45-30502cfb53ab", - "redirectUris" : [ "https://nl2cnl-translator-dev.192.168.56.1.nip.io:8443/*" ], - "webOrigins" : [ "https://nl2cnl-translator-dev.192.168.56.1.nip.io:8443" ], - "notBefore" : 0, - "bearerOnly" : false, - "consentRequired" : false, - "standardFlowEnabled" : true, - "implicitFlowEnabled" : false, - "directAccessGrantsEnabled" : true, - "serviceAccountsEnabled" : true, - "authorizationServicesEnabled" : true, - "publicClient" : false, - "frontchannelLogout" : false, - "protocol" : "openid-connect", - "attributes" : { - "saml.assertion.signature" : "false", - "saml.force.post.binding" : "false", - "saml.multivalued.roles" : "false", - "saml.encrypt" : "false", - "backchannel.logout.revoke.offline.tokens" : "false", - "saml.server.signature" : "false", - "saml.server.signature.keyinfo.ext" : "false", - "exclude.session.state.from.auth.response" : "false", - "backchannel.logout.session.required" : "true", - "client_credentials.use_refresh_token" : "false", - "saml_force_name_id_format" : "false", - "saml.client.signature" : "false", - "tls.client.certificate.bound.access.tokens" : "false", - "saml.authnstatement" : "false", - "display.on.consent.screen" : "false", - "saml.onetimeuse.condition" : "false" - }, - "authenticationFlowBindingOverrides" : { }, - "fullScopeAllowed" : true, - "nodeReRegistrationTimeout" : -1, - "protocolMappers" : [ { - "id" : "ad2d1f98-62a8-4859-8cce-1ce4034b9920", - "name" : "Client Host", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientHost", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientHost", - "jsonType.label" : "String" - } - }, { - "id" : "480e69e8-ebca-4e89-8d20-24bba626bbce", - "name" : "Client ID", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientId", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientId", - "jsonType.label" : "String" - } - }, { - "id" : "42724a07-f05f-4d65-82cb-b1c2288810d8", - "name" : "Client IP Address", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientAddress", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientAddress", - "jsonType.label" : "String" - } - } ], - "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], - "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ], - "authorizationSettings" : { - "allowRemoteResourceManagement" : true, - "policyEnforcementMode" : "ENFORCING", - "resources" : [ { - "name" : "Default Resource", - "type" : "urn:nl2cnl-translator-client:resources:default", - "ownerManagedAccess" : false, - "attributes" : { }, - "_id" : "cf0de028-f233-4f59-83cb-3d60d34450a3", - "uris" : [ "/*" ] - } ], - "policies" : [ { - "id" : "46935297-5bfb-4a43-b493-b28efe8c863b", - "name" : "Default Policy", - "description" : "A policy that grants access only for users within this realm", - "type" : "js", - "logic" : "POSITIVE", - "decisionStrategy" : "AFFIRMATIVE", - "config" : { - "code" : "// by default, grants any permission associated with this policy\n$evaluation.grant();\n" - } - }, { - "id" : "9cd3da2f-0302-4033-a9ed-36758ffa7730", - "name" : "Default Permission", - "description" : "A permission that applies to the default resource type", - "type" : "resource", - "logic" : "POSITIVE", - "decisionStrategy" : "UNANIMOUS", - "config" : { - "defaultResourceType" : "urn:nl2cnl-translator-client:resources:default", - "applyPolicies" : "[\"Default Policy\"]" - } - } ], - "scopes" : [ ], - "decisionStrategy" : "UNANIMOUS" - } - }, { - "id" : "785a9f77-d06f-4a65-9ba9-341921fda61a", - "clientId" : "raof", - "rootUrl" : "http://risk-assessment-engine-dev.192.168.56.1.nip.io:8443", - "adminUrl" : "http://risk-assessment-engine-dev.192.168.56.1.nip.io:8443", - "surrogateAuthRequired" : false, - "enabled" : true, - "alwaysDisplayInConsole" : false, - "clientAuthenticatorType" : "client-secret", - "secret" : "92d45bca-073b-49e3-8b23-2615f7fcbb3e", - "redirectUris" : [ "http://risk-assessment-engine-dev.192.168.56.1.nip.io:8443/*" ], - "webOrigins" : [ "http://risk-assessment-engine-dev.192.168.56.1.nip.io:8443" ], - "notBefore" : 0, - "bearerOnly" : false, - "consentRequired" : false, - "standardFlowEnabled" : true, - "implicitFlowEnabled" : false, - "directAccessGrantsEnabled" : true, - "serviceAccountsEnabled" : true, - "publicClient" : true, - "frontchannelLogout" : false, - "protocol" : "openid-connect", - "attributes" : { - "saml.assertion.signature" : "false", - "saml.force.post.binding" : "false", - "saml.multivalued.roles" : "false", - "saml.encrypt" : "false", - "backchannel.logout.revoke.offline.tokens" : "false", - "saml.server.signature" : "false", - "saml.server.signature.keyinfo.ext" : "false", - "exclude.session.state.from.auth.response" : "false", - "backchannel.logout.session.required" : "true", - "client_credentials.use_refresh_token" : "false", - "saml_force_name_id_format" : "false", - "saml.client.signature" : "false", - "tls.client.certificate.bound.access.tokens" : "false", - "saml.authnstatement" : "false", - "display.on.consent.screen" : "false", - "saml.onetimeuse.condition" : "false" - }, - "authenticationFlowBindingOverrides" : { }, - "fullScopeAllowed" : true, - "nodeReRegistrationTimeout" : -1, - "protocolMappers" : [ { - "id" : "1fddcb23-2a23-4ce6-acd4-cb48155d9034", - "name" : "Client Host", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientHost", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientHost", - "jsonType.label" : "String" - } - }, { - "id" : "1b88c2af-c338-4cf2-ab8d-69d1a60837a2", - "name" : "Client IP Address", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientAddress", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientAddress", - "jsonType.label" : "String" - } - }, { - "id" : "1c4f9074-9c2a-40bc-b55e-07a4eccfedab", - "name" : "Client ID", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientId", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientId", - "jsonType.label" : "String" - } - } ], - "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], - "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] - }, { - "id" : "b1293ae0-e720-40cb-ae6f-db7fc9b1fe92", - "clientId" : "raof-app", - "rootUrl" : "http://localhost:9000", - "adminUrl" : "http://localhost:9000", - "surrogateAuthRequired" : false, - "enabled" : true, - "alwaysDisplayInConsole" : false, - "clientAuthenticatorType" : "client-secret", - "secret" : "d7ca4514-90bf-40c9-b824-05c78acd9c93", - "redirectUris" : [ "http://localhost:9000/*" ], - "webOrigins" : [ "http://localhost:9000" ], - "notBefore" : 0, - "bearerOnly" : false, - "consentRequired" : false, - "standardFlowEnabled" : true, - "implicitFlowEnabled" : false, - "directAccessGrantsEnabled" : true, - "serviceAccountsEnabled" : true, - "authorizationServicesEnabled" : true, - "publicClient" : false, - "frontchannelLogout" : false, - "protocol" : "openid-connect", - "attributes" : { - "saml.assertion.signature" : "false", - "saml.force.post.binding" : "false", - "saml.multivalued.roles" : "false", - "saml.encrypt" : "false", - "backchannel.logout.revoke.offline.tokens" : "false", - "saml.server.signature" : "false", - "saml.server.signature.keyinfo.ext" : "false", - "exclude.session.state.from.auth.response" : "false", - "backchannel.logout.session.required" : "true", - "client_credentials.use_refresh_token" : "false", - "saml_force_name_id_format" : "false", - "saml.client.signature" : "false", - "tls.client.certificate.bound.access.tokens" : "false", - "saml.authnstatement" : "false", - "display.on.consent.screen" : "false", - "saml.onetimeuse.condition" : "false" - }, - "authenticationFlowBindingOverrides" : { }, - "fullScopeAllowed" : true, - "nodeReRegistrationTimeout" : -1, - "protocolMappers" : [ { - "id" : "76f2834e-94f2-4d8d-9840-d4b363ba7a8b", - "name" : "Client Host", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientHost", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientHost", - "jsonType.label" : "String" - } - }, { - "id" : "8c8a582f-4e95-437f-a9c7-79d6e3f84a78", - "name" : "Client IP Address", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientAddress", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientAddress", - "jsonType.label" : "String" - } - }, { - "id" : "65c739a9-5e22-4825-85bd-0c9b7547a395", - "name" : "Client ID", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientId", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientId", - "jsonType.label" : "String" - } - } ], - "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], - "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ], - "authorizationSettings" : { - "allowRemoteResourceManagement" : true, - "policyEnforcementMode" : "ENFORCING", - "resources" : [ { - "name" : "Default Resource", - "type" : "urn:roaf-app:resources:default", - "ownerManagedAccess" : false, - "attributes" : { }, - "_id" : "83aa363b-796b-4081-b49f-69b88d87f3b2", - "uris" : [ "/*" ] - } ], - "policies" : [ { - "id" : "291bd70b-29f1-4806-9963-ebced36fa800", - "name" : "Default Policy", - "description" : "A policy that grants access only for users within this realm", - "type" : "js", - "logic" : "POSITIVE", - "decisionStrategy" : "AFFIRMATIVE", - "config" : { - "code" : "// by default, grants any permission associated with this policy\n$evaluation.grant();\n" - } - }, { - "id" : "3ba28abc-eeec-48bd-bca9-41b10c38525e", - "name" : "Default Permission", - "description" : "A permission that applies to the default resource type", - "type" : "resource", - "logic" : "POSITIVE", - "decisionStrategy" : "UNANIMOUS", - "config" : { - "defaultResourceType" : "urn:roaf-app:resources:default", - "applyPolicies" : "[\"Default Policy\"]" - } - } ], - "scopes" : [ ], - "decisionStrategy" : "UNANIMOUS" - } - }, { - "id" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", - "clientId" : "realm-management", - "name" : "${client_realm-management}", - "surrogateAuthRequired" : false, - "enabled" : true, - "alwaysDisplayInConsole" : false, - "clientAuthenticatorType" : "client-secret", - "secret" : "eac6413c-b76b-4d1a-b4dc-b217fe77326b", - "redirectUris" : [ ], - "webOrigins" : [ ], - "notBefore" : 0, - "bearerOnly" : true, - "consentRequired" : false, - "standardFlowEnabled" : true, - "implicitFlowEnabled" : false, - "directAccessGrantsEnabled" : false, - "serviceAccountsEnabled" : false, - "publicClient" : false, - "frontchannelLogout" : false, - "protocol" : "openid-connect", - "attributes" : { }, - "authenticationFlowBindingOverrides" : { }, - "fullScopeAllowed" : false, - "nodeReRegistrationTimeout" : 0, - "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], - "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] - }, { - "id" : "7d57284a-3eba-4ceb-8088-b13aeef3df24", - "clientId" : "security-admin-console", - "name" : "${client_security-admin-console}", - "rootUrl" : "${authAdminUrl}", - "baseUrl" : "/admin/medina/console/", - "surrogateAuthRequired" : false, - "enabled" : true, - "alwaysDisplayInConsole" : false, - "clientAuthenticatorType" : "client-secret", - "secret" : "11fb3ec1-97dc-46e4-aee3-7d61493a0184", - "redirectUris" : [ "/admin/medina/console/*" ], - "webOrigins" : [ "+" ], - "notBefore" : 0, - "bearerOnly" : false, - "consentRequired" : false, - "standardFlowEnabled" : true, - "implicitFlowEnabled" : false, - "directAccessGrantsEnabled" : false, - "serviceAccountsEnabled" : false, - "publicClient" : true, - "frontchannelLogout" : false, - "protocol" : "openid-connect", - "attributes" : { - "pkce.code.challenge.method" : "S256" - }, - "authenticationFlowBindingOverrides" : { }, - "fullScopeAllowed" : false, - "nodeReRegistrationTimeout" : 0, - "protocolMappers" : [ { - "id" : "ce06926e-1e52-49b7-86ea-ddfd7665b90b", - "name" : "locale", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usermodel-attribute-mapper", - "consentRequired" : false, - "config" : { - "userinfo.token.claim" : "true", - "user.attribute" : "locale", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "locale", - "jsonType.label" : "String" - } - } ], - "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], - "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] - }, { - "id" : "aa18689d-6d81-4b92-8b9e-291eb4733408", - "clientId" : "wazuh-vat-evidence-collector-dev", - "rootUrl" : "http://wazuh-vat-evidence-collector-dev.192.168.56.1.nip.io:8443/", - "adminUrl" : "http://wazuh-vat-evidence-collector-dev.192.168.56.1.nip.io:8443/", - "surrogateAuthRequired" : false, - "enabled" : true, - "alwaysDisplayInConsole" : false, - "clientAuthenticatorType" : "client-secret", - "secret" : "68dec932-77fc-4322-8089-d64c3a3317bf", - "redirectUris" : [ "http://wazuh-vat-evidence-collector-dev.192.168.56.1.nip.io:8443/*" ], - "webOrigins" : [ "http://wazuh-vat-evidence-collector-dev.192.168.56.1.nip.io:8443" ], - "notBefore" : 0, - "bearerOnly" : false, - "consentRequired" : false, - "standardFlowEnabled" : true, - "implicitFlowEnabled" : false, - "directAccessGrantsEnabled" : true, - "serviceAccountsEnabled" : true, - "authorizationServicesEnabled" : true, - "publicClient" : false, - "frontchannelLogout" : false, - "protocol" : "openid-connect", - "attributes" : { - "saml.assertion.signature" : "false", - "saml.force.post.binding" : "false", - "saml.multivalued.roles" : "false", - "saml.encrypt" : "false", - "backchannel.logout.revoke.offline.tokens" : "false", - "saml.server.signature" : "false", - "saml.server.signature.keyinfo.ext" : "false", - "exclude.session.state.from.auth.response" : "false", - "backchannel.logout.session.required" : "true", - "client_credentials.use_refresh_token" : "false", - "saml_force_name_id_format" : "false", - "saml.client.signature" : "false", - "tls.client.certificate.bound.access.tokens" : "false", - "saml.authnstatement" : "false", - "display.on.consent.screen" : "false", - "saml.onetimeuse.condition" : "false" - }, - "authenticationFlowBindingOverrides" : { }, - "fullScopeAllowed" : true, - "nodeReRegistrationTimeout" : -1, - "protocolMappers" : [ { - "id" : "21e80b89-4ab6-4eb1-b1b1-1a44c133e922", - "name" : "Client IP Address", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientAddress", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientAddress", - "jsonType.label" : "String" - } - }, { - "id" : "f9117947-484b-4486-9299-97a1bac403bc", - "name" : "Client Host", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientHost", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientHost", - "jsonType.label" : "String" - } - }, { - "id" : "a610e8bf-64c2-4c57-ba45-f576d1dbd1b9", - "name" : "Client ID", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientId", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientId", - "jsonType.label" : "String" - } - } ], - "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], - "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ], - "authorizationSettings" : { - "allowRemoteResourceManagement" : true, - "policyEnforcementMode" : "ENFORCING", - "resources" : [ { - "name" : "Default Resource", - "type" : "urn:wazuh-vat-evidence-collector-dev:resources:default", - "ownerManagedAccess" : false, - "attributes" : { }, - "_id" : "9b151dde-64db-48eb-a5c8-1cb76dbda106", - "uris" : [ "/*" ] - } ], - "policies" : [ { - "id" : "ea4d0471-d8e0-4eb3-b978-5e08ed330193", - "name" : "Default Policy", - "description" : "A policy that grants access only for users within this realm", - "type" : "js", - "logic" : "POSITIVE", - "decisionStrategy" : "AFFIRMATIVE", - "config" : { - "code" : "// by default, grants any permission associated with this policy\n$evaluation.grant();\n" - } - }, { - "id" : "d56c4a80-9aea-4527-80b8-fa8736d55cbe", - "name" : "Default Permission", - "description" : "A permission that applies to the default resource type", - "type" : "resource", - "logic" : "POSITIVE", - "decisionStrategy" : "UNANIMOUS", - "config" : { - "defaultResourceType" : "urn:wazuh-vat-evidence-collector-dev:resources:default", - "applyPolicies" : "[\"Default Policy\"]" - } - } ], - "scopes" : [ ], - "decisionStrategy" : "UNANIMOUS" - } - } ], - "clientScopes" : [ { - "id" : "448d9d12-2046-483f-9951-9cfb26270957", - "name" : "address", - "description" : "OpenID Connect built-in scope: address", - "protocol" : "openid-connect", - "attributes" : { - "include.in.token.scope" : "true", - "display.on.consent.screen" : "true", - "consent.screen.text" : "${addressScopeConsentText}" - }, - "protocolMappers" : [ { - "id" : "d9a1907f-8701-4b47-85a8-b7d959c37d52", - "name" : "address", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-address-mapper", - "consentRequired" : false, - "config" : { - "user.attribute.formatted" : "formatted", - "user.attribute.country" : "country", - "user.attribute.postal_code" : "postal_code", - "userinfo.token.claim" : "true", - "user.attribute.street" : "street", - "id.token.claim" : "true", - "user.attribute.region" : "region", - "access.token.claim" : "true", - "user.attribute.locality" : "locality" - } - } ] - }, { - "id" : "275d79c9-b59c-40f6-bea2-ce277f3bb3e0", - "name" : "email", - "description" : "OpenID Connect built-in scope: email", - "protocol" : "openid-connect", - "attributes" : { - "include.in.token.scope" : "true", - "display.on.consent.screen" : "true", - "consent.screen.text" : "${emailScopeConsentText}" - }, - "protocolMappers" : [ { - "id" : "e2e140c5-e12f-4a38-ad55-dbeb73558260", - "name" : "email", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usermodel-property-mapper", - "consentRequired" : false, - "config" : { - "userinfo.token.claim" : "true", - "user.attribute" : "email", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "email", - "jsonType.label" : "String" - } - }, { - "id" : "a22524be-6358-4d93-beaa-38faed65e198", - "name" : "email verified", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usermodel-property-mapper", - "consentRequired" : false, - "config" : { - "userinfo.token.claim" : "true", - "user.attribute" : "emailVerified", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "email_verified", - "jsonType.label" : "boolean" - } - } ] - }, { - "id" : "bbfebad4-3f48-432f-9696-1529017fd411", - "name" : "jhipster", - "description" : "Jhipster specific claims", - "protocol" : "openid-connect", - "attributes" : { - "include.in.token.scope" : "true", - "display.on.consent.screen" : "true" - }, - "protocolMappers" : [ { - "id" : "71c49d92-db9e-4669-b945-a6dd790b8b00", - "name" : "langKey", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usermodel-attribute-mapper", - "consentRequired" : false, - "config" : { - "userinfo.token.claim" : "true", - "user.attribute" : "langKey", - "id.token.claim" : "false", - "access.token.claim" : "false", - "claim.name" : "langKey", - "jsonType.label" : "String" - } - }, { - "id" : "79e9563d-3c27-4cb3-b8c7-cb11bc43ebc9", - "name" : "login", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usermodel-attribute-mapper", - "consentRequired" : false, - "config" : { - "userinfo.token.claim" : "true", - "user.attribute" : "preferred_username", - "id.token.claim" : "false", - "access.token.claim" : "false", - "claim.name" : "login", - "jsonType.label" : "String" - } - }, { - "id" : "d8ce7859-d0c3-4e55-9415-438c81bfdaa2", - "name" : "roles", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usermodel-realm-role-mapper", - "consentRequired" : false, - "config" : { - "multivalued" : "true", - "userinfo.token.claim" : "true", - "id.token.claim" : "false", - "access.token.claim" : "true", - "claim.name" : "roles", - "jsonType.label" : "String" - } - } ] - }, { - "id" : "3dd12f9d-3af5-4757-b89c-4d2a8c448316", - "name" : "microprofile-jwt", - "description" : "Microprofile - JWT built-in scope", - "protocol" : "openid-connect", - "attributes" : { - "include.in.token.scope" : "true", - "display.on.consent.screen" : "false" - }, - "protocolMappers" : [ { - "id" : "995d9d7f-97af-4c01-81d8-8ca11aa34553", - "name" : "groups", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usermodel-realm-role-mapper", - "consentRequired" : false, - "config" : { - "multivalued" : "true", - "user.attribute" : "foo", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "groups", - "jsonType.label" : "String" - } - }, { - "id" : "43df77e9-387b-4f80-bd3e-c2153178ee72", - "name" : "upn", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usermodel-property-mapper", - "consentRequired" : false, - "config" : { - "userinfo.token.claim" : "true", - "user.attribute" : "username", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "upn", - "jsonType.label" : "String" - } - } ] - }, { - "id" : "31c108bb-1587-4373-b46a-7d2f0d7acdba", - "name" : "offline_access", - "description" : "OpenID Connect built-in scope: offline_access", - "protocol" : "openid-connect", - "attributes" : { - "consent.screen.text" : "${offlineAccessScopeConsentText}", - "display.on.consent.screen" : "true" - } - }, { - "id" : "b8b09b9e-6096-46ae-8e90-3cd03d364a0a", - "name" : "phone", - "description" : "OpenID Connect built-in scope: phone", - "protocol" : "openid-connect", - "attributes" : { - "include.in.token.scope" : "true", - "display.on.consent.screen" : "true", - "consent.screen.text" : "${phoneScopeConsentText}" - }, - "protocolMappers" : [ { - "id" : "5464cfbe-e421-4034-8f6a-378e99476bf4", - "name" : "phone number", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usermodel-attribute-mapper", - "consentRequired" : false, - "config" : { - "userinfo.token.claim" : "true", - "user.attribute" : "phoneNumber", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "phone_number", - "jsonType.label" : "String" - } - }, { - "id" : "f8a484ce-7c5f-4562-8d61-ec161e2929f6", - "name" : "phone number verified", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usermodel-attribute-mapper", - "consentRequired" : false, - "config" : { - "userinfo.token.claim" : "true", - "user.attribute" : "phoneNumberVerified", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "phone_number_verified", - "jsonType.label" : "boolean" - } - } ] - }, { - "id" : "b188dc18-eca7-4941-ab04-d3e599e9aa93", - "name" : "profile", - "description" : "OpenID Connect built-in scope: profile", - "protocol" : "openid-connect", - "attributes" : { - "include.in.token.scope" : "true", - "display.on.consent.screen" : "true", - "consent.screen.text" : "${profileScopeConsentText}" - }, - "protocolMappers" : [ { - "id" : "0d52d80c-a7e1-45f9-a16e-1965220474d5", - "name" : "nickname", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usermodel-attribute-mapper", - "consentRequired" : false, - "config" : { - "userinfo.token.claim" : "true", - "user.attribute" : "nickname", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "nickname", - "jsonType.label" : "String" - } - }, { - "id" : "cf0e8f74-1996-4ad1-8bcc-3f331bea4e45", - "name" : "birthdate", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usermodel-attribute-mapper", - "consentRequired" : false, - "config" : { - "userinfo.token.claim" : "true", - "user.attribute" : "birthdate", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "birthdate", - "jsonType.label" : "String" - } - }, { - "id" : "c58346fb-1470-420c-a6cb-c115e833444b", - "name" : "full name", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-full-name-mapper", - "consentRequired" : false, - "config" : { - "id.token.claim" : "true", - "access.token.claim" : "true", - "userinfo.token.claim" : "true" - } - }, { - "id" : "bdfca3bd-1dda-4ebe-993c-ea11c674c919", - "name" : "gender", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usermodel-attribute-mapper", - "consentRequired" : false, - "config" : { - "userinfo.token.claim" : "true", - "user.attribute" : "gender", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "gender", - "jsonType.label" : "String" - } - }, { - "id" : "1299560c-f37d-47d2-96f7-712761cf679a", - "name" : "middle name", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usermodel-attribute-mapper", - "consentRequired" : false, - "config" : { - "userinfo.token.claim" : "true", - "user.attribute" : "middleName", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "middle_name", - "jsonType.label" : "String" - } - }, { - "id" : "c67dab67-c3b4-40c4-91fe-7c9ce61fca5f", - "name" : "zoneinfo", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usermodel-attribute-mapper", - "consentRequired" : false, - "config" : { - "userinfo.token.claim" : "true", - "user.attribute" : "zoneinfo", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "zoneinfo", - "jsonType.label" : "String" - } - }, { - "id" : "8682ba32-def5-4111-b2ab-79cd865844d0", - "name" : "family name", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usermodel-property-mapper", - "consentRequired" : false, - "config" : { - "userinfo.token.claim" : "true", - "user.attribute" : "lastName", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "family_name", - "jsonType.label" : "String" - } - }, { - "id" : "0ee61bf2-d022-420a-aa6d-c7e8bd60e24f", - "name" : "picture", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usermodel-attribute-mapper", - "consentRequired" : false, - "config" : { - "userinfo.token.claim" : "true", - "user.attribute" : "picture", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "picture", - "jsonType.label" : "String" - } - }, { - "id" : "3acdc903-7ceb-40b8-8516-ebbc7874d6e4", - "name" : "given name", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usermodel-property-mapper", - "consentRequired" : false, - "config" : { - "userinfo.token.claim" : "true", - "user.attribute" : "firstName", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "given_name", - "jsonType.label" : "String" - } - }, { - "id" : "d1fe9f83-141c-4c8c-9635-20367c7e5218", - "name" : "locale", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usermodel-attribute-mapper", - "consentRequired" : false, - "config" : { - "userinfo.token.claim" : "true", - "user.attribute" : "locale", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "locale", - "jsonType.label" : "String" - } - }, { - "id" : "502de8c4-4cdf-402b-8453-d407a7b666da", - "name" : "username", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usermodel-property-mapper", - "consentRequired" : false, - "config" : { - "userinfo.token.claim" : "true", - "user.attribute" : "username", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "preferred_username", - "jsonType.label" : "String" - } - }, { - "id" : "1603ac87-6a50-4205-b9b9-4ba4d3224d83", - "name" : "website", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usermodel-attribute-mapper", - "consentRequired" : false, - "config" : { - "userinfo.token.claim" : "true", - "user.attribute" : "website", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "website", - "jsonType.label" : "String" - } - }, { - "id" : "f2c9d6f6-06b7-415a-87b3-c872a26ab921", - "name" : "updated at", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usermodel-attribute-mapper", - "consentRequired" : false, - "config" : { - "userinfo.token.claim" : "true", - "user.attribute" : "updatedAt", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "updated_at", - "jsonType.label" : "String" - } - }, { - "id" : "ee586b78-b33e-4a0b-842f-9bd7059a747a", - "name" : "profile", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usermodel-attribute-mapper", - "consentRequired" : false, - "config" : { - "userinfo.token.claim" : "true", - "user.attribute" : "profile", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "profile", - "jsonType.label" : "String" - } - } ] - }, { - "id" : "83717992-b174-46c3-99f1-1a097b02e99c", - "name" : "role_list", - "description" : "SAML role list", - "protocol" : "saml", - "attributes" : { - "consent.screen.text" : "${samlRoleListScopeConsentText}", - "display.on.consent.screen" : "true" - }, - "protocolMappers" : [ { - "id" : "0c0b8746-2e89-4ede-9ea6-ac76d2c66f33", - "name" : "role list", - "protocol" : "saml", - "protocolMapper" : "saml-role-list-mapper", - "consentRequired" : false, - "config" : { - "single" : "false", - "attribute.nameformat" : "Basic", - "attribute.name" : "Role" - } - } ] - }, { - "id" : "da1df8bb-b502-44fb-94a4-cff04b190a8c", - "name" : "roles", - "description" : "OpenID Connect scope for add user roles to the access token", - "protocol" : "openid-connect", - "attributes" : { - "include.in.token.scope" : "false", - "display.on.consent.screen" : "true", - "consent.screen.text" : "${rolesScopeConsentText}" - }, - "protocolMappers" : [ { - "id" : "cef58889-d64f-4405-a1f9-4978962472aa", - "name" : "realm roles", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usermodel-realm-role-mapper", - "consentRequired" : false, - "config" : { - "user.attribute" : "foo", - "access.token.claim" : "true", - "claim.name" : "realm_access.roles", - "jsonType.label" : "String", - "multivalued" : "true" - } - }, { - "id" : "44e1ccc5-63d0-464f-a88c-535864dba161", - "name" : "audience resolve", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-audience-resolve-mapper", - "consentRequired" : false, - "config" : { } - }, { - "id" : "fc7ab48f-7268-4f85-874c-8b35d00d5fb1", - "name" : "client roles", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usermodel-client-role-mapper", - "consentRequired" : false, - "config" : { - "user.attribute" : "foo", - "access.token.claim" : "true", - "claim.name" : "resource_access.${client_id}.roles", - "jsonType.label" : "String", - "multivalued" : "true" - } - } ] - }, { - "id" : "cab2790d-6362-4d1a-96cb-427e906ea1d0", - "name" : "web-origins", - "description" : "OpenID Connect scope for add allowed web origins to the access token", - "protocol" : "openid-connect", - "attributes" : { - "include.in.token.scope" : "false", - "display.on.consent.screen" : "false", - "consent.screen.text" : "" - }, - "protocolMappers" : [ { - "id" : "e8c45111-ab73-4a68-a793-fdcc71c4f2ad", - "name" : "allowed web origins", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-allowed-origins-mapper", - "consentRequired" : false, - "config" : { } - } ] - } ], - "defaultDefaultClientScopes" : [ "role_list", "profile", "email", "roles", "web-origins" ], - "defaultOptionalClientScopes" : [ "offline_access", "address", "phone", "microprofile-jwt" ], - "browserSecurityHeaders" : { - "contentSecurityPolicyReportOnly" : "", - "xContentTypeOptions" : "nosniff", - "xRobotsTag" : "none", - "xFrameOptions" : "ALLOW-FROM https://integrated-ui-dev.192.168.56.1.nip.io:8443", - "contentSecurityPolicy" : "frame-src 'self' https://integrated-ui-dev.192.168.56.1.nip.io:8443; frame-ancestors 'self' https://integrated-ui-dev.192.168.56.1.nip.io:8443; object-src https://integrated-ui-dev.192.168.56.1.nip.io:8443 http://integrated-ui-dev.192.168.56.1.nip.io:8443;", - "xXSSProtection" : "1; mode=block", - "strictTransportSecurity" : "max-age=31536000; includeSubDomains" - }, - "smtpServer" : { - "password" : "medinaPassword", - "starttls" : "", - "auth" : "true", - "host" : "smtp.gmail.com", - "from" : "medinatestuser@gmail.com", - "ssl" : "true", - "user" : "medinatestuser@gmail.com" - }, - "eventsEnabled" : false, - "eventsListeners" : [ "jboss-logging" ], - "enabledEventTypes" : [ ], - "adminEventsEnabled" : false, - "adminEventsDetailsEnabled" : false, - "identityProviders" : [ { - "alias" : "oidc", - "displayName" : "Bosch Login", - "internalId" : "0a60d4b9-c19c-4df7-9d55-f27547b90af0", - "providerId" : "oidc", - "enabled" : true, - "updateProfileFirstLoginMode" : "on", - "trustEmail" : false, - "storeToken" : false, - "addReadTokenRoleOnCreate" : false, - "authenticateByDefault" : false, - "linkOnly" : false, - "firstBrokerLoginFlowAlias" : "first broker login", - "config" : { - "userInfoUrl" : "https://stfs.test-bosch.com/adfs/userinfo", - "validateSignature" : "true", - "clientId" : "acfbc2ab-64e4-4b64-ad0e-204ec212cbbf", - "tokenUrl" : "https://stfs.test-bosch.com/adfs/oauth2/token/", - "jwksUrl" : "https://stfs.test-bosch.com/adfs/discovery/keys", - "issuer" : "https://stfs.test-bosch.com/adfs", - "useJwksUrl" : "true", - "authorizationUrl" : "https://stfs.test-bosch.com/adfs/oauth2/authorize/", - "clientAuthMethod" : "client_secret_post", - "disableUserInfo" : "true", - "logoutUrl" : "https://stfs.test-bosch.com/adfs/oauth2/logout", - "syncMode" : "IMPORT", - "clientSecret" : "Iog6MCAS2DoU0tLURqTVOME5p_Fq-LY_eewuOye4" - } - } ], - "identityProviderMappers" : [ { - "id" : "eac64953-04e3-4720-bb21-c09750b6a42a", - "name" : "Default Compliance Manager mapper", - "identityProviderAlias" : "oidc", - "identityProviderMapper" : "oidc-hardcoded-role-idp-mapper", - "config" : { - "syncMode" : "INHERIT", - "role" : "Compliance Manager" - } - } ], - "components" : { - "org.keycloak.services.clientregistration.policy.ClientRegistrationPolicy" : [ { - "id" : "fbccf871-d01e-4d47-99d0-3bdce3bfa12c", - "name" : "Allowed Client Scopes", - "providerId" : "allowed-client-templates", - "subType" : "anonymous", - "subComponents" : { }, - "config" : { - "allow-default-scopes" : [ "true" ] - } - }, { - "id" : "611a0a79-84c4-4d2d-9d11-01eb58141a46", - "name" : "Trusted Hosts", - "providerId" : "trusted-hosts", - "subType" : "anonymous", - "subComponents" : { }, - "config" : { - "host-sending-registration-request-must-match" : [ "true" ], - "client-uris-must-match" : [ "true" ] - } - }, { - "id" : "2124ff56-7c6f-4095-ba92-ae335222f88c", - "name" : "Full Scope Disabled", - "providerId" : "scope", - "subType" : "anonymous", - "subComponents" : { }, - "config" : { } - }, { - "id" : "b8f02611-098d-402f-90a6-a1f09afcdb22", - "name" : "Allowed Protocol Mapper Types", - "providerId" : "allowed-protocol-mappers", - "subType" : "anonymous", - "subComponents" : { }, - "config" : { - "allowed-protocol-mapper-types" : [ "oidc-sha256-pairwise-sub-mapper", "saml-role-list-mapper", "saml-user-property-mapper", "saml-user-attribute-mapper", "oidc-usermodel-property-mapper", "oidc-address-mapper", "oidc-usermodel-attribute-mapper", "oidc-full-name-mapper" ] - } - }, { - "id" : "cca940dd-d866-44db-a211-0ed1bc682ae7", - "name" : "Allowed Protocol Mapper Types", - "providerId" : "allowed-protocol-mappers", - "subType" : "authenticated", - "subComponents" : { }, - "config" : { - "allowed-protocol-mapper-types" : [ "oidc-full-name-mapper", "oidc-usermodel-property-mapper", "saml-role-list-mapper", "oidc-address-mapper", "saml-user-property-mapper", "saml-user-attribute-mapper", "oidc-sha256-pairwise-sub-mapper", "oidc-usermodel-attribute-mapper" ] - } - }, { - "id" : "dfb48f4f-8760-419e-9337-15eb81a41fdb", - "name" : "Max Clients Limit", - "providerId" : "max-clients", - "subType" : "anonymous", - "subComponents" : { }, - "config" : { - "max-clients" : [ "200" ] - } - }, { - "id" : "dfbcfdd0-4628-4a27-927a-4a476017ca56", - "name" : "Allowed Client Scopes", - "providerId" : "allowed-client-templates", - "subType" : "authenticated", - "subComponents" : { }, - "config" : { - "allow-default-scopes" : [ "true" ] - } - }, { - "id" : "cb8bff43-35e8-4fbc-9758-02da2892008d", - "name" : "Consent Required", - "providerId" : "consent-required", - "subType" : "anonymous", - "subComponents" : { }, - "config" : { } - } ], - "org.keycloak.keys.KeyProvider" : [ { - "id" : "4fcc8a9a-8dac-4051-8c34-748bf12d011d", - "name" : "rsa-generated", - "providerId" : "rsa-generated", - "subComponents" : { }, - "config" : { - "privateKey" : [ "MIIEpAIBAAKCAQEAqpMWsm7G85cM6j1jJCxmM6UAssq+oVsfdFUNEXJPpjy4FGRo4cIzaSPjqLAHn1xrBY4wWoPQU+4h2RRurXw0ELLhCIy+LIfUU0djB/5v0s5vqzaj/v8nSKQuKT2NY04b1oNTSeUuL1/sopo8ZcvtOdD2gTlVE2qDQJvJuKxIK9D4r2h2E7Kh7GwI0VIuywi0Ehdbwm21LTZlcrrmNu1pzN8oodjz0uYRIQ/p+AJCa0b+RhFQWN40XTmW1hmERE/J21ZK8sMcmO0vKcg5v2yzDOMQUcTMVVA1MHER8Q08yTYWmyQNP6E3xobVhqwCeClzcNCw1SdNfOVTuqCiZOWQWQIDAQABAoIBAEhcYbKMYAYSPD5akGZWF30tMGCotboJyAw30HVoQvXIqGauOfgbxGeD/B4hnvox4IzYxxZ++K/CQ8Wtb05VdFjpKaHQ4xRNAvvZOt+3RoTtYl4FrgiNAYNFcve3zvUju5eC2qBsgu1CCkbom1qr6hUu2oPzaG32L3wHGsom++7p4YE7FAzfqrEhntlVouMf9oW2477823gcr4LtX3tz2uIw8ZtSGsAxPGWfunxtX9qTgEVzXUFYou94fn7u6vRbRKSqq/udjQcSRaPzdrdto98oH6Y+3rm0PKj5sTkJf8SJHJFCPTgIgnG/7VZm8ZVJAoGLLUGzNC6pgEFdYjDmhSkCgYEA+mQYOKF6f8c5axsrUXtHHoWKYjZCXnWCH+P+DJQAHFSvdPAZgLJ6odKS8tFhujh8murE5WGsVkXxqZOHwXqBHrWrpJhfO8otHPEklhjn2MAhrxWxHEVokdUJjfUzoK0S6RVni/4hZIFkj3322lW7KXdSoeM5dfe9hFKxYM8G+jMCgYEArmVGSJtOzrIAzRZCmMwXwW/rV9Hi8QQOJRy8IM5zLvQutZa3RbqGPjOnq8XjsT98L6w4tM6WsTXWmGxOKDFzPhtg3pxz0ghFC895WaDqz1EL3Wjzp0p1a0mqo8zA+vOh9h+0YQs649eOPHkdr5AvMqenpxIwhu7nG0WOK+OKl0MCgYEAzcYiza+PP6GXg3kxkWYRnXi7sFjNFFnX1aOF7gpXSPEjvKNxIf4LoB+w2lLO0L6JULstkyFBAym6H9V5lLy7jmRYqgz6/uT5TDa1DZFsQAot5HicNBKqjGaa0oo3oo155AnOLhNsl+9qmC46B1a7WKmSRC6700IFAtD+qwOYxVcCgYB1892ToietOUu9ar7kZbXziWUd4sGhzeJbS5Iahkf1jAZDn4qZyMyfKYTQc2nLKmsuO0enUsstVIKuWSKLoNaXPSFJr3vOpPU+RbeH3YSzb9eciy2xCnVceVjGrOghU8NJmqv/rv7Ht7VmRWzEn7qsgiSspWrY+KCrG2JLYP0NzQKBgQDtcbX43N7aGMs/wP2Y/PDoTPeIB6f0+D7rdoHBmK6nUxQ9V70uAyYC4WtJudrKkVKUKAK8oOgbD2Qne2t02pbYKxQQDyBGQObuyC28fA5DHl9F8j6jx2u+He1s23V9HZhxj36TOVIjdjctRCDGTg32RMLGZlli0St2hK9EWSrUvQ==" ], - "certificate" : [ "MIICmzCCAYMCBgF/LGg1XzANBgkqhkiG9w0BAQsFADARMQ8wDQYDVQQDDAZtZWRpbmEwHhcNMjIwMjI0MTU0MzIxWhcNMzIwMjI0MTU0NTAxWjARMQ8wDQYDVQQDDAZtZWRpbmEwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCqkxaybsbzlwzqPWMkLGYzpQCyyr6hWx90VQ0Rck+mPLgUZGjhwjNpI+OosAefXGsFjjBag9BT7iHZFG6tfDQQsuEIjL4sh9RTR2MH/m/Szm+rNqP+/ydIpC4pPY1jThvWg1NJ5S4vX+yimjxly+050PaBOVUTaoNAm8m4rEgr0PivaHYTsqHsbAjRUi7LCLQSF1vCbbUtNmVyuuY27WnM3yih2PPS5hEhD+n4AkJrRv5GEVBY3jRdOZbWGYRET8nbVkrywxyY7S8pyDm/bLMM4xBRxMxVUDUwcRHxDTzJNhabJA0/oTfGhtWGrAJ4KXNw0LDVJ0185VO6oKJk5ZBZAgMBAAEwDQYJKoZIhvcNAQELBQADggEBAD7yJ2HegJ3/LzAmn/JIDXH1qfZ2DgGyfFQk82tWmFnsxVaLrv0sehS7Ufza5JRsudmzL6I8LHTgYuS1zyDZ1kmEB4gIpmw+ZI4M+isIpuzGRz8B3t2y3jOnEKjykjTWWYQrINYQiqPKU8LSFwe+Uqtcqga0TqgZ2fO8tkeP74a7JVk1hd4JD50shuPIInPx5PfqN7xAUebyPeJk91RQVC4tSpIIlFyd13MFQOzocj9uB685SE6DT3vjguYod6tv7JIUme0+JZIhd67hBlZS71ebL2B0gcX7+9jKZi3oeGFX+2k5CWCHZUf7KBvY3WaxxZTlFCtRcNbWKkMUmVTjRJ8=" ], - "priority" : [ "100" ] - } - }, { - "id" : "025383fb-ebfe-4e5d-b82e-ada254fff0fc", - "name" : "hmac-generated", - "providerId" : "hmac-generated", - "subComponents" : { }, - "config" : { - "kid" : [ "672cf3de-8a6e-43a9-bbb3-3b4cda7477a5" ], - "secret" : [ "lxJLgn2fZb9sMr0OZOzv98PC9GZWRJRGrNP86lb99Ded4XqqVXPU5HGxdn6RCxXdJxZyydNbrCnzDhZSpYLJDw" ], - "priority" : [ "100" ], - "algorithm" : [ "HS256" ] - } - }, { - "id" : "9e25e190-e32d-4bc8-9c9d-f5683ba8d2c3", - "name" : "aes-generated", - "providerId" : "aes-generated", - "subComponents" : { }, - "config" : { - "kid" : [ "5fe1d9fe-f688-4e7b-8871-176b5cf97cd4" ], - "secret" : [ "o_z-vBEGNLSgbqxfgun_sg" ], - "priority" : [ "100" ] - } - } ] - }, - "internationalizationEnabled" : false, - "supportedLocales" : [ ], - "authenticationFlows" : [ { - "id" : "354f002d-8a77-4e21-bd29-5c1fc8685a0f", - "alias" : "Account verification options", - "description" : "Method with which to verity the existing account", - "providerId" : "basic-flow", - "topLevel" : false, - "builtIn" : true, - "authenticationExecutions" : [ { - "authenticator" : "idp-email-verification", - "requirement" : "ALTERNATIVE", - "priority" : 10, - "userSetupAllowed" : false, - "autheticatorFlow" : false - }, { - "requirement" : "ALTERNATIVE", - "priority" : 20, - "flowAlias" : "Verify Existing Account by Re-authentication", - "userSetupAllowed" : false, - "autheticatorFlow" : true - } ] - }, { - "id" : "9882e4d3-d9cd-4af1-bfe8-a8f73a1fa086", - "alias" : "Authentication Options", - "description" : "Authentication options.", - "providerId" : "basic-flow", - "topLevel" : false, - "builtIn" : true, - "authenticationExecutions" : [ { - "authenticator" : "basic-auth", - "requirement" : "REQUIRED", - "priority" : 10, - "userSetupAllowed" : false, - "autheticatorFlow" : false - }, { - "authenticator" : "basic-auth-otp", - "requirement" : "DISABLED", - "priority" : 20, - "userSetupAllowed" : false, - "autheticatorFlow" : false - }, { - "authenticator" : "auth-spnego", - "requirement" : "DISABLED", - "priority" : 30, - "userSetupAllowed" : false, - "autheticatorFlow" : false - } ] - }, { - "id" : "8e0d8a31-5418-47ab-befb-afeb7abf9322", - "alias" : "Browser - Conditional OTP", - "description" : "Flow to determine if the OTP is required for the authentication", - "providerId" : "basic-flow", - "topLevel" : false, - "builtIn" : true, - "authenticationExecutions" : [ { - "authenticator" : "conditional-user-configured", - "requirement" : "REQUIRED", - "priority" : 10, - "userSetupAllowed" : false, - "autheticatorFlow" : false - }, { - "authenticator" : "auth-otp-form", - "requirement" : "REQUIRED", - "priority" : 20, - "userSetupAllowed" : false, - "autheticatorFlow" : false - } ] - }, { - "id" : "676fcbe9-45bb-4455-9f12-0593ff40176f", - "alias" : "Direct Grant - Conditional OTP", - "description" : "Flow to determine if the OTP is required for the authentication", - "providerId" : "basic-flow", - "topLevel" : false, - "builtIn" : true, - "authenticationExecutions" : [ { - "authenticator" : "conditional-user-configured", - "requirement" : "REQUIRED", - "priority" : 10, - "userSetupAllowed" : false, - "autheticatorFlow" : false - }, { - "authenticator" : "direct-grant-validate-otp", - "requirement" : "REQUIRED", - "priority" : 20, - "userSetupAllowed" : false, - "autheticatorFlow" : false - } ] - }, { - "id" : "c1bca04e-0854-4c03-8386-3877bb028606", - "alias" : "First broker login - Conditional OTP", - "description" : "Flow to determine if the OTP is required for the authentication", - "providerId" : "basic-flow", - "topLevel" : false, - "builtIn" : true, - "authenticationExecutions" : [ { - "authenticator" : "conditional-user-configured", - "requirement" : "REQUIRED", - "priority" : 10, - "userSetupAllowed" : false, - "autheticatorFlow" : false - }, { - "authenticator" : "auth-otp-form", - "requirement" : "REQUIRED", - "priority" : 20, - "userSetupAllowed" : false, - "autheticatorFlow" : false - } ] - }, { - "id" : "4b63e991-30c5-4679-973a-0ee570dd9638", - "alias" : "Handle Existing Account", - "description" : "Handle what to do if there is existing account with same email/username like authenticated identity provider", - "providerId" : "basic-flow", - "topLevel" : false, - "builtIn" : true, - "authenticationExecutions" : [ { - "authenticator" : "idp-confirm-link", - "requirement" : "REQUIRED", - "priority" : 10, - "userSetupAllowed" : false, - "autheticatorFlow" : false - }, { - "requirement" : "REQUIRED", - "priority" : 20, - "flowAlias" : "Account verification options", - "userSetupAllowed" : false, - "autheticatorFlow" : true - } ] - }, { - "id" : "a106d5a7-3b1e-4325-a1a6-2f2a0eeedd62", - "alias" : "Reset - Conditional OTP", - "description" : "Flow to determine if the OTP should be reset or not. Set to REQUIRED to force.", - "providerId" : "basic-flow", - "topLevel" : false, - "builtIn" : true, - "authenticationExecutions" : [ { - "authenticator" : "conditional-user-configured", - "requirement" : "REQUIRED", - "priority" : 10, - "userSetupAllowed" : false, - "autheticatorFlow" : false - }, { - "authenticator" : "reset-otp", - "requirement" : "REQUIRED", - "priority" : 20, - "userSetupAllowed" : false, - "autheticatorFlow" : false - } ] - }, { - "id" : "d47a6e57-0348-4266-a214-89d44297aead", - "alias" : "User creation or linking", - "description" : "Flow for the existing/non-existing user alternatives", - "providerId" : "basic-flow", - "topLevel" : false, - "builtIn" : true, - "authenticationExecutions" : [ { - "authenticatorConfig" : "create unique user config", - "authenticator" : "idp-create-user-if-unique", - "requirement" : "ALTERNATIVE", - "priority" : 10, - "userSetupAllowed" : false, - "autheticatorFlow" : false - }, { - "requirement" : "ALTERNATIVE", - "priority" : 20, - "flowAlias" : "Handle Existing Account", - "userSetupAllowed" : false, - "autheticatorFlow" : true - } ] - }, { - "id" : "245da857-b7af-437c-88d4-7398b3d2d45a", - "alias" : "Verify Existing Account by Re-authentication", - "description" : "Reauthentication of existing account", - "providerId" : "basic-flow", - "topLevel" : false, - "builtIn" : true, - "authenticationExecutions" : [ { - "authenticator" : "idp-username-password-form", - "requirement" : "REQUIRED", - "priority" : 10, - "userSetupAllowed" : false, - "autheticatorFlow" : false - }, { - "requirement" : "CONDITIONAL", - "priority" : 20, - "flowAlias" : "First broker login - Conditional OTP", - "userSetupAllowed" : false, - "autheticatorFlow" : true - } ] - }, { - "id" : "de6e0cd8-a95c-4023-9e6c-c77fe186db35", - "alias" : "browser", - "description" : "browser based authentication", - "providerId" : "basic-flow", - "topLevel" : true, - "builtIn" : true, - "authenticationExecutions" : [ { - "authenticator" : "auth-cookie", - "requirement" : "ALTERNATIVE", - "priority" : 10, - "userSetupAllowed" : false, - "autheticatorFlow" : false - }, { - "authenticator" : "auth-spnego", - "requirement" : "DISABLED", - "priority" : 20, - "userSetupAllowed" : false, - "autheticatorFlow" : false - }, { - "authenticator" : "identity-provider-redirector", - "requirement" : "ALTERNATIVE", - "priority" : 25, - "userSetupAllowed" : false, - "autheticatorFlow" : false - }, { - "requirement" : "ALTERNATIVE", - "priority" : 30, - "flowAlias" : "forms", - "userSetupAllowed" : false, - "autheticatorFlow" : true - } ] - }, { - "id" : "f6c25350-2637-4086-b681-60e5151ac98d", - "alias" : "clients", - "description" : "Base authentication for clients", - "providerId" : "client-flow", - "topLevel" : true, - "builtIn" : true, - "authenticationExecutions" : [ { - "authenticator" : "client-secret", - "requirement" : "ALTERNATIVE", - "priority" : 10, - "userSetupAllowed" : false, - "autheticatorFlow" : false - }, { - "authenticator" : "client-jwt", - "requirement" : "ALTERNATIVE", - "priority" : 20, - "userSetupAllowed" : false, - "autheticatorFlow" : false - }, { - "authenticator" : "client-secret-jwt", - "requirement" : "ALTERNATIVE", - "priority" : 30, - "userSetupAllowed" : false, - "autheticatorFlow" : false - }, { - "authenticator" : "client-x509", - "requirement" : "ALTERNATIVE", - "priority" : 40, - "userSetupAllowed" : false, - "autheticatorFlow" : false - } ] - }, { - "id" : "aed0a710-7542-4431-8d52-0bb12b3a2df5", - "alias" : "direct grant", - "description" : "OpenID Connect Resource Owner Grant", - "providerId" : "basic-flow", - "topLevel" : true, - "builtIn" : true, - "authenticationExecutions" : [ { - "authenticator" : "direct-grant-validate-username", - "requirement" : "REQUIRED", - "priority" : 10, - "userSetupAllowed" : false, - "autheticatorFlow" : false - }, { - "authenticator" : "direct-grant-validate-password", - "requirement" : "REQUIRED", - "priority" : 20, - "userSetupAllowed" : false, - "autheticatorFlow" : false - }, { - "requirement" : "CONDITIONAL", - "priority" : 30, - "flowAlias" : "Direct Grant - Conditional OTP", - "userSetupAllowed" : false, - "autheticatorFlow" : true - } ] - }, { - "id" : "9d5ea5e5-6e65-47bc-b105-9a1a1bebac11", - "alias" : "docker auth", - "description" : "Used by Docker clients to authenticate against the IDP", - "providerId" : "basic-flow", - "topLevel" : true, - "builtIn" : true, - "authenticationExecutions" : [ { - "authenticator" : "docker-http-basic-authenticator", - "requirement" : "REQUIRED", - "priority" : 10, - "userSetupAllowed" : false, - "autheticatorFlow" : false - } ] - }, { - "id" : "8660561d-943b-4b20-9c6a-7ac9e4ca00e5", - "alias" : "first broker login", - "description" : "Actions taken after first broker login with identity provider account, which is not yet linked to any Keycloak account", - "providerId" : "basic-flow", - "topLevel" : true, - "builtIn" : true, - "authenticationExecutions" : [ { - "authenticatorConfig" : "review profile config", - "authenticator" : "idp-review-profile", - "requirement" : "REQUIRED", - "priority" : 10, - "userSetupAllowed" : false, - "autheticatorFlow" : false - }, { - "requirement" : "REQUIRED", - "priority" : 20, - "flowAlias" : "User creation or linking", - "userSetupAllowed" : false, - "autheticatorFlow" : true - } ] - }, { - "id" : "75c3dc38-54e0-4421-8ab2-0c590437d0c5", - "alias" : "forms", - "description" : "Username, password, otp and other auth forms.", - "providerId" : "basic-flow", - "topLevel" : false, - "builtIn" : true, - "authenticationExecutions" : [ { - "authenticator" : "auth-username-password-form", - "requirement" : "REQUIRED", - "priority" : 10, - "userSetupAllowed" : false, - "autheticatorFlow" : false - }, { - "requirement" : "CONDITIONAL", - "priority" : 20, - "flowAlias" : "Browser - Conditional OTP", - "userSetupAllowed" : false, - "autheticatorFlow" : true - } ] - }, { - "id" : "4c848397-5bfd-4a05-9ce1-b3ee4c655d52", - "alias" : "http challenge", - "description" : "An authentication flow based on challenge-response HTTP Authentication Schemes", - "providerId" : "basic-flow", - "topLevel" : true, - "builtIn" : true, - "authenticationExecutions" : [ { - "authenticator" : "no-cookie-redirect", - "requirement" : "REQUIRED", - "priority" : 10, - "userSetupAllowed" : false, - "autheticatorFlow" : false - }, { - "requirement" : "REQUIRED", - "priority" : 20, - "flowAlias" : "Authentication Options", - "userSetupAllowed" : false, - "autheticatorFlow" : true - } ] - }, { - "id" : "9e6bae92-80ac-4714-ab65-708dc1c08d4e", - "alias" : "registration", - "description" : "registration flow", - "providerId" : "basic-flow", - "topLevel" : true, - "builtIn" : true, - "authenticationExecutions" : [ { - "authenticator" : "registration-page-form", - "requirement" : "REQUIRED", - "priority" : 10, - "flowAlias" : "registration form", - "userSetupAllowed" : false, - "autheticatorFlow" : true - } ] - }, { - "id" : "7ca21b11-88fc-44a6-915a-6690086d51fa", - "alias" : "registration form", - "description" : "registration form", - "providerId" : "form-flow", - "topLevel" : false, - "builtIn" : true, - "authenticationExecutions" : [ { - "authenticator" : "registration-user-creation", - "requirement" : "REQUIRED", - "priority" : 20, - "userSetupAllowed" : false, - "autheticatorFlow" : false - }, { - "authenticator" : "registration-profile-action", - "requirement" : "REQUIRED", - "priority" : 40, - "userSetupAllowed" : false, - "autheticatorFlow" : false - }, { - "authenticator" : "registration-password-action", - "requirement" : "REQUIRED", - "priority" : 50, - "userSetupAllowed" : false, - "autheticatorFlow" : false - }, { - "authenticator" : "registration-recaptcha-action", - "requirement" : "DISABLED", - "priority" : 60, - "userSetupAllowed" : false, - "autheticatorFlow" : false - } ] - }, { - "id" : "91b8df64-8790-4cc7-916a-549144cd1cb1", - "alias" : "reset credentials", - "description" : "Reset credentials for a user if they forgot their password or something", - "providerId" : "basic-flow", - "topLevel" : true, - "builtIn" : true, - "authenticationExecutions" : [ { - "authenticator" : "reset-credentials-choose-user", - "requirement" : "REQUIRED", - "priority" : 10, - "userSetupAllowed" : false, - "autheticatorFlow" : false - }, { - "authenticator" : "reset-credential-email", - "requirement" : "REQUIRED", - "priority" : 20, - "userSetupAllowed" : false, - "autheticatorFlow" : false - }, { - "authenticator" : "reset-password", - "requirement" : "REQUIRED", - "priority" : 30, - "userSetupAllowed" : false, - "autheticatorFlow" : false - }, { - "requirement" : "CONDITIONAL", - "priority" : 40, - "flowAlias" : "Reset - Conditional OTP", - "userSetupAllowed" : false, - "autheticatorFlow" : true - } ] - }, { - "id" : "15dce0c8-895b-4e06-a405-707be49326b5", - "alias" : "saml ecp", - "description" : "SAML ECP Profile Authentication Flow", - "providerId" : "basic-flow", - "topLevel" : true, - "builtIn" : true, - "authenticationExecutions" : [ { - "authenticator" : "http-basic-authenticator", - "requirement" : "REQUIRED", - "priority" : 10, - "userSetupAllowed" : false, - "autheticatorFlow" : false - } ] - } ], - "authenticatorConfig" : [ { - "id" : "a538254e-ef65-4316-b432-2b9f37b842a0", - "alias" : "create unique user config", - "config" : { - "require.password.update.after.registration" : "false" - } - }, { - "id" : "218ba7cc-4f94-4782-802c-819ee6054f56", - "alias" : "review profile config", - "config" : { - "update.profile.on.first.login" : "missing" - } - } ], - "requiredActions" : [ { - "alias" : "CONFIGURE_TOTP", - "name" : "Configure OTP", - "providerId" : "CONFIGURE_TOTP", - "enabled" : true, - "defaultAction" : false, - "priority" : 10, - "config" : { } - }, { - "alias" : "terms_and_conditions", - "name" : "Terms and Conditions", - "providerId" : "terms_and_conditions", - "enabled" : false, - "defaultAction" : false, - "priority" : 20, - "config" : { } - }, { - "alias" : "UPDATE_PASSWORD", - "name" : "Update Password", - "providerId" : "UPDATE_PASSWORD", - "enabled" : true, - "defaultAction" : false, - "priority" : 30, - "config" : { } - }, { - "alias" : "UPDATE_PROFILE", - "name" : "Update Profile", - "providerId" : "UPDATE_PROFILE", - "enabled" : true, - "defaultAction" : false, - "priority" : 40, - "config" : { } - }, { - "alias" : "VERIFY_EMAIL", - "name" : "Verify Email", - "providerId" : "VERIFY_EMAIL", - "enabled" : true, - "defaultAction" : false, - "priority" : 50, - "config" : { } - }, { - "alias" : "delete_account", - "name" : "Delete Account", - "providerId" : "delete_account", - "enabled" : false, - "defaultAction" : false, - "priority" : 60, - "config" : { } - }, { - "alias" : "update_user_locale", - "name" : "Update User Locale", - "providerId" : "update_user_locale", - "enabled" : true, - "defaultAction" : false, - "priority" : 1000, - "config" : { } - } ], - "browserFlow" : "browser", - "registrationFlow" : "registration", - "directGrantFlow" : "direct grant", - "resetCredentialsFlow" : "reset credentials", - "clientAuthenticationFlow" : "clients", - "dockerAuthenticationFlow" : "docker auth", - "attributes" : { - "clientOfflineSessionMaxLifespan" : "0", - "clientSessionIdleTimeout" : "0", - "clientSessionMaxLifespan" : "0", - "frontendUrl" : "", - "clientOfflineSessionIdleTimeout" : "0" - }, - "keycloakVersion" : "12.0.4", - "userManagedAccessAllowed" : false +{ + "id" : "medina", + "realm" : "medina", + "displayName" : "", + "notBefore" : 1674222044, + "revokeRefreshToken" : false, + "refreshTokenMaxReuse" : 0, + "accessTokenLifespan" : 300, + "accessTokenLifespanForImplicitFlow" : 900, + "ssoSessionIdleTimeout" : 7200, + "ssoSessionMaxLifespan" : 36000, + "ssoSessionIdleTimeoutRememberMe" : 0, + "ssoSessionMaxLifespanRememberMe" : 0, + "offlineSessionIdleTimeout" : 2592000, + "offlineSessionMaxLifespanEnabled" : false, + "offlineSessionMaxLifespan" : 5184000, + "clientSessionIdleTimeout" : 0, + "clientSessionMaxLifespan" : 0, + "clientOfflineSessionIdleTimeout" : 0, + "clientOfflineSessionMaxLifespan" : 0, + "accessCodeLifespan" : 60, + "accessCodeLifespanUserAction" : 300, + "accessCodeLifespanLogin" : 1800, + "actionTokenGeneratedByAdminLifespan" : 43200, + "actionTokenGeneratedByUserLifespan" : 300, + "enabled" : true, + "sslRequired" : "external", + "registrationAllowed" : false, + "registrationEmailAsUsername" : false, + "rememberMe" : false, + "verifyEmail" : false, + "loginWithEmailAllowed" : true, + "duplicateEmailsAllowed" : false, + "resetPasswordAllowed" : false, + "editUsernameAllowed" : false, + "bruteForceProtected" : false, + "permanentLockout" : false, + "maxFailureWaitSeconds" : 900, + "minimumQuickLoginWaitSeconds" : 60, + "waitIncrementSeconds" : 60, + "quickLoginCheckMilliSeconds" : 1000, + "maxDeltaTimeSeconds" : 43200, + "failureFactor" : 30, + "roles" : { + "realm" : [ { + "id" : "2f6015a8-ddee-42f9-99c5-4760bd5fb5c7", + "name" : "ROLE_USER", + "description" : "temporary role for catalogue jhipster", + "composite" : false, + "clientRole" : false, + "containerId" : "medina", + "attributes" : { } + }, { + "id" : "9d96522b-ff58-498d-ad7f-11a747bd924e", + "name" : "offline_access", + "description" : "${role_offline-access}", + "composite" : false, + "clientRole" : false, + "containerId" : "medina", + "attributes" : { } + }, { + "id" : "417a650d-7309-41d2-aecd-cd179c656c65", + "name" : "Auditor", + "description" : "The Conformity Assessment Body (CAB) is a body that performs conformity assessment services with the goal of demonstrating that specified requirements are fulfilled.", + "composite" : true, + "composites" : { + "client" : { + "clouditor-orchestrator" : [ "Create", "Delete", "Update", "Read" ], + "api-swagger" : [ "user", "test-fake-role" ], + "integrated-ui" : [ "showCCE", "user", "showUser", "showOrchestrator", "admin" ] + } + }, + "clientRole" : false, + "containerId" : "medina", + "attributes" : { } + }, { + "id" : "aba5b760-352b-493c-8c2b-86657d5852aa", + "name" : "SecurityGovernance", + "description" : "IT Security Governance (UC1) - Its main objective is the protection of Bosch business models, products, services, and data.", + "composite" : true, + "composites" : { + "client" : { + "integrated-ui" : [ "showSATRA", "showCCE", "showAMOE", "showUser", "showCNL", "showCatalogue", "showOrchestrator", "admin" ] + } + }, + "clientRole" : false, + "containerId" : "medina", + "attributes" : { } + }, { + "id" : "9d2b69b9-28c2-4c79-bc75-316100a7027e", + "name" : "SecurityAnalyst", + "description" : "Security Analyst (UC1) - Responsible for ensuring that the Bosch Group’s digital assets and sensitive information are protected as well as evaluating and reporting on the efficiency of the security policies in place.", + "composite" : false, + "clientRole" : false, + "containerId" : "medina", + "attributes" : { } + }, { + "id" : "dca59f95-5177-4721-92b4-b817c7c5d423", + "name" : "ProductOwner", + "description" : "Product and Service Owner (UC1) - The Product & Service Owner is the central point of contact for all questions concerning a specific Bosch IT product or service.", + "composite" : true, + "composites" : { + "client" : { + "integrated-ui" : [ "showSATRA", "showCCE", "user", "showAMOE", "showUser", "showCNL", "showCatalogue", "showOrchestrator", "admin" ] + } + }, + "clientRole" : false, + "containerId" : "medina", + "attributes" : { } + }, { + "id" : "0f08df2b-4b64-487c-9e51-2580a02ae0ef", + "name" : "Customer", + "description" : "The customer is either a company consuming cloud products or services (B2B, business-to-business context), or an individual (B2C, business-to-customer context).", + "composite" : false, + "clientRole" : false, + "containerId" : "medina", + "attributes" : { } + }, { + "id" : "dac0890c-0957-40ed-b72f-37ca91a59d6e", + "name" : "Company", + "description" : "Most of the defined roles are employed by the company. Products of company are being audited", + "composite" : true, + "composites" : { + "client" : { + "integrated-ui" : [ "showSATRA", "showCCE", "user", "showAMOE", "showUser", "showCNL", "showCatalogue", "showOrchestrator" ] + } + }, + "clientRole" : false, + "containerId" : "medina", + "attributes" : { } + }, { + "id" : "f4c52c7f-c34d-4101-8c11-523dbc526d72", + "name" : "ICO", + "description" : "Internal Control Owner - Responsible for creating internal controls. Executing the internal controls.", + "composite" : false, + "clientRole" : false, + "containerId" : "medina", + "attributes" : { } + }, { + "id" : "a73d220e-2c6b-4451-a80d-7689f6722884", + "name" : "ProductSecurityEng", + "description" : "Product (Security) Engineer (UC1) - Oversees the build, deploy, and run of a product and its system components.", + "composite" : true, + "composites" : { + "client" : { + "integrated-ui" : [ "showSATRA", "showCCE", "user", "showAMOE", "showUser", "showCNL", "showCatalogue", "showOrchestrator", "admin" ] + } + }, + "clientRole" : false, + "containerId" : "medina", + "attributes" : { } + }, { + "id" : "ec325a48-83c2-4b16-96be-305dc4767132", + "name" : "uma_authorization", + "description" : "${role_uma_authorization}", + "composite" : false, + "clientRole" : false, + "containerId" : "medina", + "attributes" : { } + }, { + "id" : "a45d5e5d-b5a5-4a2d-8026-a2371ad84577", + "name" : "DomainGovernance", + "description" : "Domain Governance (UC1) - Acts as the core competence holder and responsible topic owner for product security", + "composite" : true, + "composites" : { + "client" : { + "integrated-ui" : [ "showSATRA", "showCCE", "user", "showAMOE", "showUser", "showCNL", "showCatalogue", "showOrchestrator", "admin" ] + } + }, + "clientRole" : false, + "containerId" : "medina", + "attributes" : { } + }, { + "id" : "64dbcf9f-4231-4163-828a-5fa4fe9db278", + "name" : "CISO", + "description" : "Chief Information Security Officer - Responsible for security in the company, chooses what security controls should be implemented", + "composite" : true, + "composites" : { + "client" : { + "integrated-ui" : [ "showSATRA", "showCCE", "user", "showAMOE", "showUser", "showCNL", "showCatalogue", "showOrchestrator" ] + } + }, + "clientRole" : false, + "containerId" : "medina", + "attributes" : { } + }, { + "id" : "acdc368d-14d9-4478-b102-b67cfadebf49", + "name" : "test-role-1", + "composite" : false, + "clientRole" : false, + "containerId" : "medina", + "attributes" : { } + }, { + "id" : "e7c3caa6-1e16-4cf6-9484-b0af649117df", + "name" : "Compliance Manager", + "description" : "Responsible for the implementation of security control frameworks.\nResponsible for the correct implementation of the internal controls.\nResponsible for incident management.\nResponsible for performing internal audits.", + "composite" : true, + "composites" : { + "realm" : [ "ROLE_USER", "ROLE_ADMIN" ], + "client" : { + "raof" : [ "engine", "uma_protection" ], + "cnl-editor-frontend" : [ "user" ], + "integrated-ui" : [ "user", "showSATRA", "showCCE", "showAMOE", "showUser", "showCNL", "showCatalogue", "showOrchestrator", "admin", "showSSI" ], + "nl2cnl-translator-client" : [ "user" ] + } + }, + "clientRole" : false, + "containerId" : "medina", + "attributes" : { } + }, { + "id" : "fd93daa9-1357-4ba3-989d-7bf4b7ba2a07", + "name" : "ROLE_ADMIN", + "description" : "temporary role for catalogue jhipster", + "composite" : false, + "clientRole" : false, + "containerId" : "medina", + "attributes" : { } + } ], + "client" : { + "catalogue-backend" : [ ], + "raof-app" : [ { + "id" : "e08ef386-bb91-4ce8-8a02-8f65755d0612", + "name" : "uma_protection", + "composite" : false, + "clientRole" : true, + "containerId" : "1c198016-f44c-4620-b2f6-821173bc2e54", + "attributes" : { } + } ], + "security-admin-console" : [ ], + "wazuh-vat-evidence-collector-dev" : [ { + "id" : "3c40a84f-dc61-43d1-a607-e3fad0df3766", + "name" : "uma_protection", + "composite" : false, + "clientRole" : true, + "containerId" : "aa18689d-6d81-4b92-8b9e-291eb4733408", + "attributes" : { } + } ], + "clouditor-assessment" : [ ], + "account-console" : [ ], + "ssi-frontend" : [ ], + "amoe-client" : [ ], + "dsl-mapper-client" : [ { + "id" : "16f2a92a-594f-420a-92c7-e39fbee9901a", + "name" : "user", + "composite" : false, + "clientRole" : true, + "containerId" : "4cb90bba-1483-48f8-85c3-af800943c740", + "attributes" : { } + }, { + "id" : "e2b8af2e-38b0-4018-9a79-794fb47acd59", + "name" : "uma_protection", + "composite" : false, + "clientRole" : true, + "containerId" : "4cb90bba-1483-48f8-85c3-af800943c740", + "attributes" : { } + } ], + "cce-dev" : [ { + "id" : "aa5844fb-a4f8-4cfa-8514-1f4033e8bd9c", + "name" : "uma_protection", + "composite" : false, + "clientRole" : true, + "containerId" : "dc64b28b-a696-4b0c-8e24-2aeae138c3e5", + "attributes" : { } + } ], + "clouditor-cli" : [ ], + "codyze" : [ ], + "admin-cli" : [ ], + "catalogue-jhipster-control-center" : [ ], + "catalogue-registry" : [ ], + "clouditor-orchestrator" : [ { + "id" : "d0e4fbcd-ae45-48c3-89d5-29b1b5f35107", + "name" : "Create", + "composite" : false, + "clientRole" : true, + "containerId" : "fb2b3d0e-e2d7-4cb2-819d-bab9043f0d11", + "attributes" : { } + }, { + "id" : "22de6b01-a691-4b28-8f1d-95050048ade7", + "name" : "Delete", + "composite" : false, + "clientRole" : true, + "containerId" : "fb2b3d0e-e2d7-4cb2-819d-bab9043f0d11", + "attributes" : { } + }, { + "id" : "49d1cb98-55b9-48b3-a21c-4c7e8638cc19", + "name" : "Read", + "composite" : false, + "clientRole" : true, + "containerId" : "fb2b3d0e-e2d7-4cb2-819d-bab9043f0d11", + "attributes" : { } + }, { + "id" : "11bd1875-8f19-4216-8a2c-6dd2a5895c00", + "name" : "Update", + "composite" : false, + "clientRole" : true, + "containerId" : "fb2b3d0e-e2d7-4cb2-819d-bab9043f0d11", + "attributes" : { } + } ], + "realm-management" : [ { + "id" : "e02ce89a-c0b9-43b5-b6be-5c515624927a", + "name" : "manage-clients", + "description" : "${role_manage-clients}", + "composite" : false, + "clientRole" : true, + "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", + "attributes" : { } + }, { + "id" : "5bc05c8b-6d6a-45a1-92f7-cc33f4fe57bd", + "name" : "view-authorization", + "description" : "${role_view-authorization}", + "composite" : false, + "clientRole" : true, + "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", + "attributes" : { } + }, { + "id" : "0ee5608f-ab3a-4a8e-889b-e0d230a2fc86", + "name" : "view-clients", + "description" : "${role_view-clients}", + "composite" : true, + "composites" : { + "client" : { + "realm-management" : [ "query-clients" ] + } + }, + "clientRole" : true, + "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", + "attributes" : { } + }, { + "id" : "c2bd9190-451c-45d7-9588-412e1c40d5fd", + "name" : "manage-authorization", + "description" : "${role_manage-authorization}", + "composite" : false, + "clientRole" : true, + "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", + "attributes" : { } + }, { + "id" : "83e3e683-50b5-4050-b88b-2178342a13f8", + "name" : "manage-events", + "description" : "${role_manage-events}", + "composite" : false, + "clientRole" : true, + "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", + "attributes" : { } + }, { + "id" : "4e9c2113-f0d3-4691-bb66-49e3ca218d63", + "name" : "query-clients", + "description" : "${role_query-clients}", + "composite" : false, + "clientRole" : true, + "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", + "attributes" : { } + }, { + "id" : "cdca2718-5853-4969-9b63-2186e0382085", + "name" : "query-realms", + "description" : "${role_query-realms}", + "composite" : false, + "clientRole" : true, + "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", + "attributes" : { } + }, { + "id" : "33eb311b-fdbc-4ccf-b367-ae2b1c8c2e55", + "name" : "view-users", + "description" : "${role_view-users}", + "composite" : true, + "composites" : { + "client" : { + "realm-management" : [ "query-users", "query-groups" ] + } + }, + "clientRole" : true, + "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", + "attributes" : { } + }, { + "id" : "56382323-69f8-4eca-b433-aa14ccc83be3", + "name" : "manage-identity-providers", + "description" : "${role_manage-identity-providers}", + "composite" : false, + "clientRole" : true, + "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", + "attributes" : { } + }, { + "id" : "2db34bf8-3fac-4fb8-8ed4-b7f44cadcb2e", + "name" : "create-client", + "description" : "${role_create-client}", + "composite" : false, + "clientRole" : true, + "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", + "attributes" : { } + }, { + "id" : "ae7b03e5-747f-4341-8add-1c872658bec4", + "name" : "view-events", + "description" : "${role_view-events}", + "composite" : false, + "clientRole" : true, + "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", + "attributes" : { } + }, { + "id" : "a607a195-5e2c-4701-855d-d202ba52a313", + "name" : "manage-users", + "description" : "${role_manage-users}", + "composite" : false, + "clientRole" : true, + "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", + "attributes" : { } + }, { + "id" : "3f2bf59d-4b3f-425a-a75f-e6b8c6d27af0", + "name" : "view-realm", + "description" : "${role_view-realm}", + "composite" : false, + "clientRole" : true, + "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", + "attributes" : { } + }, { + "id" : "d23239ef-028a-4409-b965-e20ea6ac8795", + "name" : "impersonation", + "description" : "${role_impersonation}", + "composite" : false, + "clientRole" : true, + "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", + "attributes" : { } + }, { + "id" : "f724e1e9-a878-4ae3-9bc8-995767add1a3", + "name" : "manage-realm", + "description" : "${role_manage-realm}", + "composite" : false, + "clientRole" : true, + "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", + "attributes" : { } + }, { + "id" : "e6b7421d-7d5c-4f1c-bb48-0a873c9870c4", + "name" : "query-users", + "description" : "${role_query-users}", + "composite" : false, + "clientRole" : true, + "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", + "attributes" : { } + }, { + "id" : "7a81ec99-e710-409d-bd34-ae3642a1912d", + "name" : "view-identity-providers", + "description" : "${role_view-identity-providers}", + "composite" : false, + "clientRole" : true, + "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", + "attributes" : { } + }, { + "id" : "fbeca797-27ee-44a0-8566-bec5666e6bcc", + "name" : "query-groups", + "description" : "${role_query-groups}", + "composite" : false, + "clientRole" : true, + "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", + "attributes" : { } + }, { + "id" : "f9ea5c84-0690-47f4-b887-a3351ca800de", + "name" : "realm-admin", + "description" : "${role_realm-admin}", + "composite" : true, + "composites" : { + "client" : { + "realm-management" : [ "view-authorization", "manage-clients", "view-clients", "manage-authorization", "query-clients", "manage-events", "view-users", "query-realms", "manage-identity-providers", "create-client", "view-events", "view-realm", "manage-users", "impersonation", "manage-realm", "query-users", "view-identity-providers", "query-groups" ] + } + }, + "clientRole" : true, + "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", + "attributes" : { } + } ], + "api-swagger" : [ { + "id" : "a7aa8c9f-7cc5-4c91-8657-31b74ba02a1a", + "name" : "uma_protection", + "composite" : false, + "clientRole" : true, + "containerId" : "a08fc1fe-7c85-4c1c-9d04-604c6e35faa8", + "attributes" : { } + }, { + "id" : "88fa7113-8fd5-4dd4-940d-e0e2e06471d4", + "name" : "user", + "composite" : false, + "clientRole" : true, + "containerId" : "a08fc1fe-7c85-4c1c-9d04-604c6e35faa8", + "attributes" : { } + }, { + "id" : "08979d05-5713-4826-a036-39a25cbbcba6", + "name" : "test-fake-role", + "description" : "this is a fake role, for testing purpose", + "composite" : false, + "clientRole" : true, + "containerId" : "a08fc1fe-7c85-4c1c-9d04-604c6e35faa8", + "attributes" : { } + } ], + "cnl-editor-frontend" : [ { + "id" : "910ffe29-95b3-4b82-a734-b24bff7cfa8d", + "name" : "user", + "composite" : false, + "clientRole" : true, + "containerId" : "15a81bd1-4edd-4e2a-87ec-3bbcac30d2a3", + "attributes" : { } + } ], + "life-cycle-manager" : [ ], + "integrated-ui" : [ { + "id" : "644bda67-3674-4a93-968d-8a7bb9679e50", + "name" : "showSATRA", + "composite" : false, + "clientRole" : true, + "containerId" : "1150f83f-37bc-4b14-98a0-e179aaee0f6c", + "attributes" : { } + }, { + "id" : "58b0ddb9-373c-47d1-889a-9adacc414bf0", + "name" : "showCCE", + "composite" : false, + "clientRole" : true, + "containerId" : "1150f83f-37bc-4b14-98a0-e179aaee0f6c", + "attributes" : { } + }, { + "id" : "eb0a3413-b986-4cb6-a49c-9148d89df25a", + "name" : "showAMOE", + "composite" : false, + "clientRole" : true, + "containerId" : "1150f83f-37bc-4b14-98a0-e179aaee0f6c", + "attributes" : { } + }, { + "id" : "258c00de-d88c-4239-908b-be79f895c3b0", + "name" : "user", + "composite" : false, + "clientRole" : true, + "containerId" : "1150f83f-37bc-4b14-98a0-e179aaee0f6c", + "attributes" : { } + }, { + "id" : "8309ecee-a10c-440b-909c-5c36d12c6e2e", + "name" : "showUser", + "composite" : false, + "clientRole" : true, + "containerId" : "1150f83f-37bc-4b14-98a0-e179aaee0f6c", + "attributes" : { } + }, { + "id" : "77ecaa02-0d8e-4544-8235-21c07c48d251", + "name" : "showCNL", + "composite" : false, + "clientRole" : true, + "containerId" : "1150f83f-37bc-4b14-98a0-e179aaee0f6c", + "attributes" : { } + }, { + "id" : "a4309640-7f2f-45b5-a0ed-bb9977d6b2e7", + "name" : "showCatalogue", + "composite" : false, + "clientRole" : true, + "containerId" : "1150f83f-37bc-4b14-98a0-e179aaee0f6c", + "attributes" : { } + }, { + "id" : "ceae1740-d2ed-414f-b316-651d192adef3", + "name" : "showOrchestrator", + "composite" : false, + "clientRole" : true, + "containerId" : "1150f83f-37bc-4b14-98a0-e179aaee0f6c", + "attributes" : { } + }, { + "id" : "ae424f76-ac11-4a9b-939d-67ab55a0fc5a", + "name" : "admin", + "composite" : false, + "clientRole" : true, + "containerId" : "1150f83f-37bc-4b14-98a0-e179aaee0f6c", + "attributes" : { } + }, { + "id" : "e779ba09-8cc8-4b87-8289-f96a6de40d24", + "name" : "showSSI", + "composite" : false, + "clientRole" : true, + "containerId" : "1150f83f-37bc-4b14-98a0-e179aaee0f6c", + "attributes" : { } + } ], + "ccd-client" : [ ], + "broker" : [ { + "id" : "381e01c5-2dce-4da6-854b-334d015e7224", + "name" : "read-token", + "description" : "${role_read-token}", + "composite" : false, + "clientRole" : true, + "containerId" : "8d1a867d-537c-433e-8234-b3582127cc54", + "attributes" : { } + } ], + "clouditor-ui" : [ ], + "raof" : [ { + "id" : "6de07826-dc41-4208-bc5e-8d64d38cfec2", + "name" : "engine", + "composite" : false, + "clientRole" : true, + "containerId" : "785a9f77-d06f-4a65-9ba9-341921fda61a", + "attributes" : { } + }, { + "id" : "9ecb4267-a5d3-421e-9aad-9b329fe4701d", + "name" : "uma_protection", + "composite" : false, + "clientRole" : true, + "containerId" : "785a9f77-d06f-4a65-9ba9-341921fda61a", + "attributes" : { } + } ], + "nl2cnl-translator-client" : [ { + "id" : "8fdf06d3-6c44-4aa3-bb0a-80dc589ced1c", + "name" : "uma_protection", + "composite" : false, + "clientRole" : true, + "containerId" : "9f7c65f7-9ae9-4c9e-9bd7-971d0cbe146d", + "attributes" : { } + }, { + "id" : "4486610d-0195-463c-bf2f-cf4cd10001c8", + "name" : "user", + "composite" : false, + "clientRole" : true, + "containerId" : "9f7c65f7-9ae9-4c9e-9bd7-971d0cbe146d", + "attributes" : { } + } ], + "catalogue-gateway" : [ ], + "clouditor-discovery" : [ ], + "account" : [ { + "id" : "ad76fbd3-fd48-4820-8454-c9e6e8b21da5", + "name" : "manage-consent", + "description" : "${role_manage-consent}", + "composite" : true, + "composites" : { + "client" : { + "account" : [ "view-consent" ] + } + }, + "clientRole" : true, + "containerId" : "8bd89baf-08f6-4e4b-8394-6b4dd6050ed2", + "attributes" : { } + }, { + "id" : "3cf9ad63-38af-430f-86da-bf7455dfb668", + "name" : "view-applications", + "description" : "${role_view-applications}", + "composite" : false, + "clientRole" : true, + "containerId" : "8bd89baf-08f6-4e4b-8394-6b4dd6050ed2", + "attributes" : { } + }, { + "id" : "a47fd133-6ba5-4870-af1b-9a17b76be404", + "name" : "view-consent", + "description" : "${role_view-consent}", + "composite" : false, + "clientRole" : true, + "containerId" : "8bd89baf-08f6-4e4b-8394-6b4dd6050ed2", + "attributes" : { } + }, { + "id" : "36ac4d35-7384-40c3-a877-7a2934bc9250", + "name" : "manage-account-links", + "description" : "${role_manage-account-links}", + "composite" : false, + "clientRole" : true, + "containerId" : "8bd89baf-08f6-4e4b-8394-6b4dd6050ed2", + "attributes" : { } + }, { + "id" : "3e5612a2-7c5c-4026-a6ac-7a332e266aab", + "name" : "manage-account", + "description" : "${role_manage-account}", + "composite" : true, + "composites" : { + "client" : { + "account" : [ "manage-account-links" ] + } + }, + "clientRole" : true, + "containerId" : "8bd89baf-08f6-4e4b-8394-6b4dd6050ed2", + "attributes" : { } + }, { + "id" : "1062c184-cad0-462d-ad3a-d51d5208536c", + "name" : "delete-account", + "description" : "${role_delete-account}", + "composite" : false, + "clientRole" : true, + "containerId" : "8bd89baf-08f6-4e4b-8394-6b4dd6050ed2", + "attributes" : { } + }, { + "id" : "d1a2381b-d165-43fb-a79d-8c614c46b96e", + "name" : "view-profile", + "description" : "${role_view-profile}", + "composite" : false, + "clientRole" : true, + "containerId" : "8bd89baf-08f6-4e4b-8394-6b4dd6050ed2", + "attributes" : { } + } ] + } + }, + "groups" : [ { + "id" : "ed9dd061-e96c-47e0-95bd-fcc39e359c0c", + "name" : "CloudServiceProvidersGroup", + "path" : "/CloudServiceProvidersGroup", + "attributes" : { }, + "realmRoles" : [ ], + "clientRoles" : { }, + "subGroups" : [ { + "id" : "8e2617d0-5711-44d1-a93e-d05d4423a63b", + "name" : "Fabasoft Cloud Service Provider", + "path" : "/CloudServiceProvidersGroup/Fabasoft Cloud Service Provider", + "attributes" : { + "cloudserviceproviderid" : [ "Fabasoft" ] + }, + "realmRoles" : [ ], + "clientRoles" : { }, + "subGroups" : [ ] + }, { + "id" : "a9cae5cc-8824-47fc-9564-d3976b6ae0ff", + "name" : "CloudServiceProviderTest1", + "path" : "/CloudServiceProvidersGroup/CloudServiceProviderTest1", + "attributes" : { + "cloudserviceproviderid" : [ "CloudServiceProviderTest1ID" ] + }, + "realmRoles" : [ ], + "clientRoles" : { }, + "subGroups" : [ ] + }, { + "id" : "372d7fb2-acfd-4338-aa9a-c04c1fe139e7", + "name" : "Bosch Cloud Service Provider", + "path" : "/CloudServiceProvidersGroup/Bosch Cloud Service Provider", + "attributes" : { + "cloudserviceproviderid" : [ "Bosch" ] + }, + "realmRoles" : [ ], + "clientRoles" : { }, + "subGroups" : [ ] + } ] + }, { + "id" : "b8508c0d-57db-4136-a469-b70e1f6332cc", + "name" : "CloudServicesGroup", + "path" : "/CloudServicesGroup", + "attributes" : { }, + "realmRoles" : [ ], + "clientRoles" : { }, + "subGroups" : [ { + "id" : "b6421285-efcf-4a4e-9a71-432cf325e2e4", + "name" : "CloudServiceTest2", + "path" : "/CloudServicesGroup/CloudServiceTest2", + "attributes" : { + "cloudserviceid" : [ "CloudServiceTest2ID" ] + }, + "realmRoles" : [ ], + "clientRoles" : { }, + "subGroups" : [ ] + }, { + "id" : "6ff013fa-c765-43e0-b7d6-a0ab1cac5000", + "name" : "TestCCDCloudService", + "path" : "/CloudServicesGroup/TestCCDCloudService", + "attributes" : { + "cloudserviceid" : [ "73633f38-9509-4820-a867-68d49622c5f7" ] + }, + "realmRoles" : [ ], + "clientRoles" : { }, + "subGroups" : [ ] + }, { + "id" : "23bd87c3-c46f-47fa-9925-d26e7e8b3045", + "name" : "MichelaCS1", + "path" : "/CloudServicesGroup/MichelaCS1", + "attributes" : { + "cloudserviceid" : [ "pippoplutopaperina" ] + }, + "realmRoles" : [ ], + "clientRoles" : { }, + "subGroups" : [ ] + }, { + "id" : "610a288f-b93b-4da2-ab58-a5e61b38dbc7", + "name" : "Fabasoft", + "path" : "/CloudServicesGroup/Fabasoft", + "attributes" : { + "cloudserviceid" : [ "27ec470e-952b-40e7-9167-a7c3e58bd53d" ] + }, + "realmRoles" : [ ], + "clientRoles" : { }, + "subGroups" : [ ] + }, { + "id" : "9dccce11-775b-4e2c-a471-90d91cc40dcf", + "name" : "Bosch", + "path" : "/CloudServicesGroup/Bosch", + "attributes" : { + "cloudserviceid" : [ "f712b8bc-5bd0-4df7-9e34-9e1fb2719763" ] + }, + "realmRoles" : [ ], + "clientRoles" : { }, + "subGroups" : [ ] + }, { + "id" : "c23dc3e7-334b-403f-a327-3f4761a8508a", + "name" : "Bosch_PaaS", + "path" : "/CloudServicesGroup/Bosch_PaaS", + "attributes" : { + "cloudserviceid" : [ "5a69a810-b523-4cb7-8f46-600098a9754f" ] + }, + "realmRoles" : [ ], + "clientRoles" : { }, + "subGroups" : [ ] + }, { + "id" : "fd59fb08-937f-4e3a-b9fd-cd3443781cad", + "name" : "DefaultCloudService", + "path" : "/CloudServicesGroup/DefaultCloudService", + "attributes" : { + "cloudserviceid" : [ "00000000-0000-0000-0000-000000000000" ] + }, + "realmRoles" : [ ], + "clientRoles" : { }, + "subGroups" : [ ] + }, { + "id" : "c7e191c6-ef16-4d6c-bc62-1cac4dbd8dc7", + "name" : "CloudServiceWithValidUUID", + "path" : "/CloudServicesGroup/CloudServiceWithValidUUID", + "attributes" : { + "cloudserviceid" : [ "813d82df-2d31-4ee1-9ca6-f38137bd1f14" ] + }, + "realmRoles" : [ ], + "clientRoles" : { }, + "subGroups" : [ ] + }, { + "id" : "3ae94354-6142-4999-a964-1c7fe5193657", + "name" : "Bosch_IaaS", + "path" : "/CloudServicesGroup/Bosch_IaaS", + "attributes" : { + "cloudserviceid" : [ "945d9c38-b2ad-4db5-9d33-cd10b7d5d840" ] + }, + "realmRoles" : [ ], + "clientRoles" : { }, + "subGroups" : [ ] + }, { + "id" : "f9da1040-2a1d-4dbb-b387-e68f159dd1b2", + "name" : "CloudServiceTest1", + "path" : "/CloudServicesGroup/CloudServiceTest1", + "attributes" : { + "cloudserviceid" : [ "CloudServiceTest1ID" ] + }, + "realmRoles" : [ ], + "clientRoles" : { }, + "subGroups" : [ ] + }, { + "id" : "f7822dbb-1b40-4992-903a-3102e83df6dc", + "name" : "hpe-csid1", + "path" : "/CloudServicesGroup/hpe-csid1", + "attributes" : { + "cloudserviceid" : [ "0000001-b2ad-4db5-9d33-cd10b7d5d840" ] + }, + "realmRoles" : [ ], + "clientRoles" : { }, + "subGroups" : [ ] + }, { + "id" : "7c09aad4-b0e8-4f00-8b40-05c8451de518", + "name" : "Bosch_SaaS", + "path" : "/CloudServicesGroup/Bosch_SaaS", + "attributes" : { + "cloudserviceid" : [ "35586422-bd0d-4a01-a467-7ced9c388748" ] + }, + "realmRoles" : [ ], + "clientRoles" : { }, + "subGroups" : [ ] + }, { + "id" : "d2fb3390-c515-41f9-9475-6abab61ae4d7", + "name" : "hpe-csid2", + "path" : "/CloudServicesGroup/hpe-csid2", + "attributes" : { + "cloudserviceid" : [ "00000002-b2ad-4db5-9d33-cd10b7d5d840" ] + }, + "realmRoles" : [ ], + "clientRoles" : { }, + "subGroups" : [ ] + } ] + }, { + "id" : "515497a3-59d5-4020-ab57-d07d4bde9c74", + "name" : "OldDefaultCS", + "path" : "/OldDefaultCS", + "attributes" : { + "cloudserviceid" : [ "00000000-0000-0000-000000000000" ] + }, + "realmRoles" : [ ], + "clientRoles" : { }, + "subGroups" : [ ] + } ], + "defaultRoles" : [ "offline_access", "uma_authorization" ], + "requiredCredentials" : [ "password" ], + "otpPolicyType" : "totp", + "otpPolicyAlgorithm" : "HmacSHA1", + "otpPolicyInitialCounter" : 0, + "otpPolicyDigits" : 6, + "otpPolicyLookAheadWindow" : 1, + "otpPolicyPeriod" : 30, + "otpSupportedApplications" : [ "FreeOTP", "Google Authenticator" ], + "webAuthnPolicyRpEntityName" : "keycloak", + "webAuthnPolicySignatureAlgorithms" : [ "ES256" ], + "webAuthnPolicyRpId" : "", + "webAuthnPolicyAttestationConveyancePreference" : "not specified", + "webAuthnPolicyAuthenticatorAttachment" : "not specified", + "webAuthnPolicyRequireResidentKey" : "not specified", + "webAuthnPolicyUserVerificationRequirement" : "not specified", + "webAuthnPolicyCreateTimeout" : 0, + "webAuthnPolicyAvoidSameAuthenticatorRegister" : false, + "webAuthnPolicyAcceptableAaguids" : [ ], + "webAuthnPolicyPasswordlessRpEntityName" : "keycloak", + "webAuthnPolicyPasswordlessSignatureAlgorithms" : [ "ES256" ], + "webAuthnPolicyPasswordlessRpId" : "", + "webAuthnPolicyPasswordlessAttestationConveyancePreference" : "not specified", + "webAuthnPolicyPasswordlessAuthenticatorAttachment" : "not specified", + "webAuthnPolicyPasswordlessRequireResidentKey" : "not specified", + "webAuthnPolicyPasswordlessUserVerificationRequirement" : "not specified", + "webAuthnPolicyPasswordlessCreateTimeout" : 0, + "webAuthnPolicyPasswordlessAvoidSameAuthenticatorRegister" : false, + "webAuthnPolicyPasswordlessAcceptableAaguids" : [ ], + "users" : [ { + "id" : "bb6244c3-35ec-4908-b4e0-73b159cc7a04", + "createdTimestamp" : 1646126460390, + "username" : "admin", + "enabled" : true, + "totp" : false, + "emailVerified" : true, + "firstName" : "admin", + "email" : "admin@localhost", + "credentials" : [ { + "id" : "4525a467-f0db-47e7-9f5a-edae4109844a", + "type" : "password", + "createdDate" : 1646126469027, + "secretData" : "{\"value\":\"BaRnqXmvxOYEu8fmlMYD+tpEIhbvW6m4KR9lzAl4f02Lt2WBUK2v7S/QobMoYEXqGWQxLpJnpsUcKlY9YGSiMw==\",\"salt\":\"rjK2JqIKXPdb1A03p8VcQw==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "ROLE_USER", "offline_access", "Auditor", "uma_authorization", "ROLE_ADMIN", "Compliance Manager" ], + "clientRoles" : { + "raof" : [ "engine", "uma_protection" ], + "integrated-ui" : [ "user" ], + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ "/CloudServicesGroup/Bosch", "/CloudServiceProvidersGroup/Bosch Cloud Service Provider", "/CloudServiceProvidersGroup/CloudServiceProviderTest1", "/CloudServicesGroup/CloudServiceTest1", "/CloudServicesGroup/CloudServiceTest2", "/CloudServicesGroup/CloudServiceWithValidUUID", "/CloudServicesGroup/DefaultCloudService", "/CloudServicesGroup/Fabasoft", "/CloudServiceProvidersGroup/Fabasoft Cloud Service Provider", "/OldDefaultCS", "/CloudServicesGroup/TestCCDCloudService" ] + }, { + "id" : "08fbe789-4ada-4b3a-bcf1-dc20b469911b", + "createdTimestamp" : 1646739467160, + "username" : "amoe_test", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "firstName" : "First name of amoe_test", + "lastName" : "Last name of amoe_test", + "credentials" : [ { + "id" : "da7be389-1b6a-42fa-8eb6-95fc83dc1cfa", + "type" : "password", + "createdDate" : 1659086998243, + "secretData" : "{\"value\":\"t0KyuUWeAlO6kD1pr6T65d9XGn1dGPDLYHPlVWO2PLp8bdyfEw83swDl2DZxjLueSA2Ko9Oj9YjdkAzHGIFL0g==\",\"salt\":\"gMuE/1NUTwSHg5Wad0GfwA==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "ICO", "uma_authorization" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ "/CloudServicesGroup/DefaultCloudService", "/CloudServicesGroup/Fabasoft" ] + }, { + "id" : "3c4f61ad-d73f-4f7e-9765-1423cdabab50", + "createdTimestamp" : 1652112647746, + "username" : "auditor", + "enabled" : true, + "totp" : false, + "emailVerified" : true, + "firstName" : "John", + "lastName" : "Doe", + "credentials" : [ { + "id" : "2f4b54a6-1156-4b45-a15a-9f82dc71f56b", + "type" : "password", + "createdDate" : 1652112667799, + "secretData" : "{\"value\":\"2d0Gsuw7tv/hqVqpyPgYvgZBhTFFjG4PzOvOPXyUjrQe51ObcPGrUQZnlcHv/eNAKGuIVpETuoDizmNtY0Q56A==\",\"salt\":\"0lLn1LPVUYiOqJvA4eUmBg==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "Auditor", "uma_authorization" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ "/CloudServiceProvidersGroup/CloudServiceProviderTest1", "/CloudServicesGroup/DefaultCloudService" ] + }, { + "id" : "02e668be-9d34-4eb5-ae44-a139de6f8f22", + "createdTimestamp" : 1652187672848, + "username" : "auditor_test", + "enabled" : true, + "totp" : false, + "emailVerified" : true, + "firstName" : "Test", + "lastName" : "Auditor", + "email" : "test@auditor.com", + "credentials" : [ { + "id" : "19bb6976-fb3c-4faa-909b-0391c123945c", + "type" : "password", + "createdDate" : 1652187687565, + "secretData" : "{\"value\":\"8id0z74ft3S127JZmjrj17SMlQFA5oRS50/JpzOSt5ivYc8d2XFcJEi/LgNQUPMc+OrBKzwGkqUOJAINGCgQ9w==\",\"salt\":\"jqiKjTRDRPABNeU1HRvUxw==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "Auditor", "uma_authorization" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "745cb22f-555b-4d93-8a77-f566494f1c12", + "createdTimestamp" : 1653297176816, + "username" : "bosch_test", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "email" : "michela.fazzolari@iit.cnr.it", + "credentials" : [ { + "id" : "b831343a-7f00-431b-b75f-852335d84347", + "type" : "password", + "createdDate" : 1653297431168, + "secretData" : "{\"value\":\"RY74rikcZ2dTQxWiMdtizGiTRHjH3uLjqrZR6o9NhQ3c3TMyl4u/BCKVwO3CGa1Y5BSBlUUb3u7PwgxkhCgwdw==\",\"salt\":\"fjV8yJwb94Raye/qg600vw==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "ROLE_USER", "offline_access", "Auditor", "uma_authorization", "Compliance Manager", "ROLE_ADMIN" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ "/CloudServicesGroup/Bosch", "/CloudServiceProvidersGroup/Bosch Cloud Service Provider" ] + }, { + "id" : "778ce3aa-e840-4fec-9b7a-52dde6a2f878", + "createdTimestamp" : 1671615249436, + "username" : "ccd_admin", + "enabled" : true, + "totp" : false, + "emailVerified" : true, + "firstName" : "CCD", + "lastName" : "Testuser", + "email" : "bernhard.cermak@fabasoft.com", + "credentials" : [ { + "id" : "b1f67032-d7da-4595-96fc-4d6f8073ba4d", + "type" : "password", + "userLabel" : "", + "createdDate" : 1671615440296, + "secretData" : "{\"value\":\"K+vbtk9rqKFZaD/Rs1p8t8uG+sz9xyyLs2KU89cXyWB7hFvdjsDD3VHz0/jzAWwAeN9Q6MOzCG3PtMCJJIlcsA==\",\"salt\":\"yUSxM8Vetd331zl/tfR+IQ==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "ROLE_USER", "offline_access", "Auditor", "uma_authorization", "CISO", "ROLE_ADMIN", "Compliance Manager" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ "/CloudServicesGroup/DefaultCloudService", "/CloudServicesGroup/Fabasoft", "/CloudServiceProvidersGroup/Fabasoft Cloud Service Provider" ] + }, { + "id" : "beac8e83-64e4-4b47-8140-8a85fa36fd12", + "createdTimestamp" : 1668692868046, + "username" : "ciso", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "firstName" : "amoe read only", + "credentials" : [ { + "id" : "9b7d688c-f9e0-4210-9727-fe4313882715", + "type" : "password", + "createdDate" : 1668692879318, + "secretData" : "{\"value\":\"HmPYkMZRirfATQ1fCAI85xw/qm+/9Vkkjp6xSId7w8yCLQgBEPwruhRxbJ0GDou0xzoHGesKf9JMRLXbLsCVKg==\",\"salt\":\"FnMudEOWxeN+No1LB2wpXQ==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "ROLE_USER", "offline_access", "uma_authorization", "CISO" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ "/CloudServiceProvidersGroup/CloudServiceProviderTest1", "/CloudServicesGroup/DefaultCloudService" ] + }, { + "id" : "67bb2090-c670-4ce9-ac41-c48d8390a82d", + "createdTimestamp" : 1668528487642, + "username" : "cnledito-test", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "firstName" : "cnleditortest", + "lastName" : "test", + "email" : "cnleditortest@editor.com", + "credentials" : [ { + "id" : "5c044583-cf1e-4fad-92eb-9a1fa9f2c219", + "type" : "password", + "createdDate" : 1668528520774, + "secretData" : "{\"value\":\"u+/Bx8qHcKSTfJxsydwyihI4opGHi0eX7V2161D3xZy0XdtcLQj+wFLBZlRFRpvca7EJcr8d5XCkXQ1SVOvhSA==\",\"salt\":\"Ch9289q4Ljsl08F0qIGRPA==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization", "Compliance Manager" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "5b083c04-bbda-48be-8441-fbe16968902b", + "createdTimestamp" : 1650710929018, + "username" : "cnr-user", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "firstName" : "Stefano", + "lastName" : "Fagnano", + "email" : "stefano.fagnano@me.com", + "credentials" : [ { + "id" : "fe14429e-56cf-4810-8ca2-7fab0ea81a80", + "type" : "password", + "createdDate" : 1650710973177, + "secretData" : "{\"value\":\"t+/Zdw3TRlptIsNjJh22t1t2rJmNsanwsZkqfgI0++tKxhnq8pMZCHmX8RTLuotokLNPjzC+oWTxpOjdQwJ5vg==\",\"salt\":\"7NvfqfUVIqeY9uVBwG5+kw==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization" ], + "clientRoles" : { + "raof" : [ "engine" ], + "raof-app" : [ "uma_protection" ], + "integrated-ui" : [ "user", "showSATRA", "showCCE", "showAMOE", "showUser", "showCNL", "showCatalogue", "showOrchestrator" ], + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 1660315722, + "groups" : [ ] + }, { + "id" : "efa7b51d-1c6a-4eb6-87ed-6e7afd3f5901", + "createdTimestamp" : 1651657436115, + "username" : "csp_test", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "credentials" : [ { + "id" : "02d21c6e-093f-4631-98fb-09a9315c8ee3", + "type" : "password", + "createdDate" : 1651657542422, + "secretData" : "{\"value\":\"PUExIha4Quy9RzbBQtRpXx5F5itYQrp3+fd5FcQuy3A4JjsRZ7DgZQ5abEvytgAKrI+vFUY9NvGeHR2vWijwoQ==\",\"salt\":\"EhGr0tjHnNSuKZp2hvNLHA==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization", "Compliance Manager" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "1247915b-d17c-4b5b-aad6-889c24225420", + "createdTimestamp" : 1646842473867, + "username" : "fabasoftpe", + "enabled" : true, + "totp" : false, + "emailVerified" : true, + "firstName" : "fabasoftpe", + "credentials" : [ { + "id" : "99ea9dc6-b4b3-4e0b-8aa9-2ecf58daa670", + "type" : "password", + "createdDate" : 1646842549296, + "secretData" : "{\"value\":\"rjCSXoy+G2SbrGgLqP8Qtx9eJYGheRLzVaZ2W7tZ7SO14I9K7W0GZFK7gg/wwZe7fNCT4c+kTWuuK42cR7JAiA==\",\"salt\":\"ViuDtUVx++5GGlqT+Kajvg==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "ROLE_USER", "offline_access", "Auditor", "uma_authorization", "Compliance Manager", "ROLE_ADMIN" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ "/CloudServicesGroup/Fabasoft", "/CloudServiceProvidersGroup/Fabasoft Cloud Service Provider" ] + }, { + "id" : "0f52f8dd-8347-4666-be72-2d44debec2d6", + "createdTimestamp" : 1675771346677, + "username" : "hpe-user1", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "credentials" : [ { + "id" : "cc5b9aa2-0fbb-44c6-a63d-4397bb117d7d", + "type" : "password", + "createdDate" : 1675771371499, + "secretData" : "{\"value\":\"BnLcEhRNKkj0UXexTGO0Jk7HvQp/uPP2P5M17MS9yHV/qGmrPnCX8bC7tU+bjnWfmS2lhtSXDTZIf8qZLtncWw==\",\"salt\":\"D9Ce0ExGm95QZ9jDZyO6hA==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "ROLE_USER", "offline_access", "uma_authorization", "Compliance Manager" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ "/CloudServicesGroup/hpe-csid1" ] + }, { + "id" : "3a3d32c9-6543-4ba7-b900-7dcabcf8457d", + "createdTimestamp" : 1675771545834, + "username" : "hpe-user2", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "credentials" : [ { + "id" : "9e9f5bf9-7378-4d2d-97cd-5904d72c83d2", + "type" : "password", + "createdDate" : 1675771558717, + "secretData" : "{\"value\":\"/dzDuLuAitMA1rzNf3+xUWI6/vrnkgS27tSyTLHQl8Ayn/8wSVwpEOU8dzeBPaNdYpyLs86v0Y0vVF0E0+KiEQ==\",\"salt\":\"VConj0TiO36bBTmmBTQUgg==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "ROLE_USER", "offline_access", "uma_authorization", "Compliance Manager" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ "/CloudServicesGroup/hpe-csid1", "/CloudServicesGroup/hpe-csid2" ] + }, { + "id" : "5cd36ec2-65fd-4373-aa16-9114d76d43da", + "createdTimestamp" : 1653465308946, + "username" : "jlunagar", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "firstName" : "Jesus", + "lastName" : "Luna", + "email" : "jesus.lunagarcia@de.bosch.com", + "credentials" : [ ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "federatedIdentities" : [ { + "identityProvider" : "oidc", + "userId" : "GKn0JglY4EuL/COIDpC4xtWS8XbWmlQcWNN1lxaxTMw=", + "userName" : "gkn0jgly4eul/coidpc4xtws8xbwmlqcwnn1lxaxtmw=" + } ], + "realmRoles" : [ "ROLE_USER", "offline_access", "uma_authorization", "Compliance Manager", "ROLE_ADMIN" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ "/CloudServicesGroup/Bosch", "/CloudServiceProvidersGroup/Bosch Cloud Service Provider" ] + }, { + "id" : "dbdb2c43-a90d-4bd8-a29a-c23d00e8a5fc", + "createdTimestamp" : 1646842573862, + "username" : "lawexpert", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "credentials" : [ { + "id" : "47c67cc2-9fec-471f-aee3-b93cb8fb50d4", + "type" : "password", + "createdDate" : 1646842584938, + "secretData" : "{\"value\":\"4u0v3JqYQ/m7qYSuG8gcxfdMveQyTLkOK1t9YTXsdH9b6XWmcmx+eemKvvZzlhGLrZ2JoyRv3Emr7E3gacWvbw==\",\"salt\":\"hKwIjTGtDpDCPw0r7xFMyA==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization", "Compliance Manager" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "c4eaac8d-860d-4f35-add0-00b52277deab", + "createdTimestamp" : 1668089005936, + "username" : "levilübbe", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "firstName" : "Levi", + "lastName" : "Lübbe", + "email" : "fixed-term.levi.luebbe@de.bosch.com", + "credentials" : [ ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "federatedIdentities" : [ { + "identityProvider" : "oidc", + "userId" : "n/s6GK+IJlhIlRsPzqrQtbn5RmwurgRTzMuZh/9IFGg=", + "userName" : "n/s6gk+ijlhilrspzqrqtbn5rmwurgrtzmuzh/9ifgg=" + } ], + "realmRoles" : [ "offline_access", "uma_authorization", "Compliance Manager" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "1a127e64-49ea-47ae-bc94-e65d60cc044f", + "createdTimestamp" : 1656060420821, + "username" : "luca", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "email" : "lucapetrillo0@gmail.com", + "credentials" : [ { + "id" : "89606e04-593a-462c-b105-49291a314f46", + "type" : "password", + "createdDate" : 1657004701136, + "secretData" : "{\"value\":\"AGZxDoD8TnZQWbjQ8C10czzhedMZbhik22BZwizM1NOWf1G1Bgk9jhSo3FG8Y8dSznlkHhqkux6pto3pFeAinA==\",\"salt\":\"t1l9/JcGqu80EmyPCHVJrA==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ "UPDATE_PASSWORD" ], + "realmRoles" : [ "offline_access", "uma_authorization" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "5459884f-0e81-4541-b0f7-039143074658", + "createdTimestamp" : 1647939833771, + "username" : "nl2cnl_test", + "enabled" : true, + "totp" : false, + "emailVerified" : true, + "firstName" : "", + "email" : "m.fazzolari@iit.cnr.it", + "credentials" : [ { + "id" : "0950817c-a5b2-4b9b-b0cf-8b7ae79526c2", + "type" : "password", + "createdDate" : 1651654675240, + "secretData" : "{\"value\":\"H5hcwQTSDwABIRHvMOOywIvJFEEDhn5GXyGttQVDJpqnY7uQaRD7KxfbXIb5nE9m495A4kpG5L0/AFCwdgL+ZQ==\",\"salt\":\"1Z6UllkkiwS6jf7FKA312Q==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "ROLE_USER", "offline_access", "Auditor", "uma_authorization", "ROLE_ADMIN", "Compliance Manager" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ "/CloudServicesGroup/MichelaCS1", "/OldDefaultCS", "/CloudServicesGroup/hpe-csid1" ] + }, { + "id" : "870ee3ee-7640-4ef3-8f37-c99306d7b02f", + "createdTimestamp" : 1668755928215, + "username" : "noroles", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "firstName" : "I have no", + "lastName" : "roles", + "credentials" : [ { + "id" : "d73fd5de-b5ec-4196-90eb-376cca300001", + "type" : "password", + "createdDate" : 1668755939191, + "secretData" : "{\"value\":\"j3HO2+EYY6HVOtKrdktKCRv+xf29S3ic14aU2e0+BG33E3AJGwbQ26u8QePXtaQvcnLjB9tgX3fzhiD8o2uXnw==\",\"salt\":\"pR9RdzE892uBElC3UbV0ng==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "78161698-ec9d-4fdc-ae05-d1b0b1dc0d97", + "createdTimestamp" : 1652873527037, + "username" : "patrick.weiss3@de.bosch.com", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "firstName" : "Patrick", + "lastName" : "Weiss", + "email" : "patrick.weiss3@de.bosch.com", + "credentials" : [ ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "federatedIdentities" : [ { + "identityProvider" : "oidc", + "userId" : "TQQySlVjXN8OaaXkrKUKJEMCx3dfuu4MuIuKiRgXgF8=", + "userName" : "tqqyslvjxn8oaaxkrkukjemcx3dfuu4muiukirgxgf8=" + } ], + "realmRoles" : [ "offline_access", "uma_authorization", "Compliance Manager" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "bb6d0c7f-e4ea-4f42-9375-f741b1ebac97", + "createdTimestamp" : 1646841881112, + "username" : "policyexpert", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "credentials" : [ { + "id" : "f9c4ca91-072f-418e-8bfb-0ef499620490", + "type" : "password", + "createdDate" : 1646841889121, + "secretData" : "{\"value\":\"6OlHWWs4Bad2qqMXi7PdiCAsNLjQTmbhgssnGuFAlTeMJeI/k48B8ahGyrJ2RYO4WcM29yBCEBZoZOWx7QUXEQ==\",\"salt\":\"FUl+Hwy2OqSWb+po3PvAGQ==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization", "Compliance Manager" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ "/CloudServiceProvidersGroup/CloudServiceProviderTest1", "/CloudServicesGroup/CloudServiceTest1", "/CloudServicesGroup/CloudServiceTest2" ] + }, { + "id" : "7fcfeba8-2512-4c10-b1e8-fac6d623a83e", + "createdTimestamp" : 1647940816157, + "username" : "service-account-admin-cli", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "serviceAccountClientId" : "admin-cli", + "credentials" : [ ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "465eb553-71ea-47bb-8557-3753e1679b0b", + "createdTimestamp" : 1648629087836, + "username" : "service-account-api-swagger", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "serviceAccountClientId" : "api-swagger", + "credentials" : [ ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization" ], + "clientRoles" : { + "api-swagger" : [ "uma_protection" ], + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "4ccb51e5-5911-4052-914b-41120086c8ef", + "createdTimestamp" : 1648043982626, + "username" : "service-account-catalogue-backend", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "serviceAccountClientId" : "catalogue-backend", + "credentials" : [ ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "72b2d795-8d27-4aa7-a935-4c1ce274f27d", + "createdTimestamp" : 1650355454172, + "username" : "service-account-cce-dev", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "serviceAccountClientId" : "cce-dev", + "credentials" : [ ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization" ], + "clientRoles" : { + "cce-dev" : [ "uma_protection" ], + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "4aafc668-9855-44b2-a079-a271a3c4a515", + "createdTimestamp" : 1646860326928, + "username" : "service-account-clouditor-assessment", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "serviceAccountClientId" : "clouditor-assessment", + "credentials" : [ ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "89145876-b402-435f-bcfc-1a5da1f948ac", + "createdTimestamp" : 1646860316152, + "username" : "service-account-clouditor-discovery", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "serviceAccountClientId" : "clouditor-discovery", + "credentials" : [ ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "7a3be6fa-aa06-4d47-92fe-0c7dbdcf081e", + "createdTimestamp" : 1652269527099, + "username" : "service-account-clouditor-orchestrator", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "serviceAccountClientId" : "clouditor-orchestrator", + "credentials" : [ ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "a5916f7c-3494-4b8b-a899-d6424762a7e8", + "createdTimestamp" : 1646917353062, + "username" : "service-account-codyze", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "serviceAccountClientId" : "codyze", + "credentials" : [ ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "b5130ada-9590-42ef-a690-ba7ff12f35bd", + "createdTimestamp" : 1657201467930, + "username" : "service-account-dsl-mapper-client", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "serviceAccountClientId" : "dsl-mapper-client", + "credentials" : [ ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ], + "dsl-mapper-client" : [ "uma_protection" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "6e8ff208-0ede-436c-b1ee-b853d33c3d81", + "createdTimestamp" : 1646998107929, + "username" : "service-account-life-cycle-manager", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "serviceAccountClientId" : "life-cycle-manager", + "credentials" : [ ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "7cdaece4-9f13-4a89-9e46-f56a3cee862e", + "createdTimestamp" : 1647940729928, + "username" : "service-account-nl2cnl-translator-client", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "serviceAccountClientId" : "nl2cnl-translator-client", + "credentials" : [ ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization" ], + "clientRoles" : { + "nl2cnl-translator-client" : [ "uma_protection" ], + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "20913f11-a80b-4b95-9e9c-3b7318275a9f", + "createdTimestamp" : 1650445410351, + "username" : "service-account-raof", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "serviceAccountClientId" : "raof", + "credentials" : [ ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization" ], + "clientRoles" : { + "raof" : [ "uma_protection" ], + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "42584464-92a0-40b9-a9ff-0a43a6358956", + "createdTimestamp" : 1651501788820, + "username" : "service-account-raof-app", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "serviceAccountClientId" : "raof-app", + "credentials" : [ ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization" ], + "clientRoles" : { + "raof-app" : [ "uma_protection" ], + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "d12a0ea0-d7d4-4194-b8f7-6e1190bbfcff", + "createdTimestamp" : 1650377634668, + "username" : "service-account-wazuh-vat-evidence-collector-dev", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "serviceAccountClientId" : "wazuh-vat-evidence-collector-dev", + "credentials" : [ ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization" ], + "clientRoles" : { + "wazuh-vat-evidence-collector-dev" : [ "uma_protection" ], + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "9c57f6db-6643-48b4-8fc8-cb48c627e6df", + "createdTimestamp" : 1674719353111, + "username" : "ssi-user", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "firstName" : "Aitor", + "lastName" : "GG", + "email" : "aitor.gomez@tecnalia.com", + "credentials" : [ { + "id" : "40582145-880c-4421-991f-8deaa243ffc4", + "type" : "password", + "createdDate" : 1674719424557, + "secretData" : "{\"value\":\"cDkRTyBio4JGyNnbmeJxuoXU3XA07VJ/A1jsrfZX93HXWqM2rfQdWDFl5wlqvyvaHLH+m5UICNPzPMhUg2qhfQ==\",\"salt\":\"ZM/7ntKfebO0NJ3/aOeZDg==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "ROLE_USER", "offline_access", "Auditor", "uma_authorization", "Compliance Manager" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "77bce8b9-706d-4249-a4cc-cacfa5a5b91b", + "createdTimestamp" : 1671626314628, + "username" : "t2", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "credentials" : [ { + "id" : "cbb382dd-a160-4202-a8c0-861afb87cf02", + "type" : "password", + "createdDate" : 1671626348428, + "secretData" : "{\"value\":\"dHUuLiejLrygJr6HaIwDqrwxu/ssA9/VIj9m51hSxnauSOp9hpmIGRmCYCZic0zvta/3mw1N2XUVfCW5KWR/Sw==\",\"salt\":\"bYGVI+Zooj2/GvXZ2MEStQ==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "ROLE_USER", "offline_access", "uma_authorization", "ROLE_ADMIN", "Compliance Manager" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "2ea72f64-2701-4b3b-ba1d-532149d37202", + "createdTimestamp" : 1652186093284, + "username" : "test_compliance_manager", + "enabled" : true, + "totp" : true, + "emailVerified" : true, + "firstName" : "Test", + "lastName" : "Manager", + "email" : "test@manager.com", + "credentials" : [ { + "id" : "70348399-c811-4b3e-96a3-991579b32bb7", + "type" : "password", + "createdDate" : 1652186110401, + "secretData" : "{\"value\":\"7bYUhg72bGCJCY+PRnuL0yO496Miksy+Psc+YGGWPtD0OJdzIvhGW0B6wnj6YInAQEfh8TN/h/FqLDkQMIYWcg==\",\"salt\":\"TGfGXtzLm0dPGXjuT2dCnw==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + }, { + "id" : "1d57e74b-6017-4d55-bb0d-25d434748402", + "type" : "otp", + "userLabel" : "Mobile Phone", + "createdDate" : 1652186263250, + "secretData" : "{\"value\":\"Dgk5BqB0qJ1k9Afll5mj\"}", + "credentialData" : "{\"subType\":\"totp\",\"digits\":6,\"counter\":0,\"period\":30,\"algorithm\":\"HmacSHA1\"}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization", "Compliance Manager" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "e19545f8-3579-483f-9004-790d578dddfa", + "createdTimestamp" : 1674145886816, + "username" : "uc1_auditor", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "credentials" : [ { + "id" : "70d94477-ceec-4932-9935-4ee984d14389", + "type" : "password", + "createdDate" : 1674145904588, + "secretData" : "{\"value\":\"ksIULvCzo+bvULy0jirrF8rtvbbWAfyzSy/eMfuqF5mnziIGqxWyIC+KwAQTqhys8l7rTaGZLNzdyn17r1/K0Q==\",\"salt\":\"RvlSLO78qi1K8lGMxOhNHg==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "Auditor", "uma_authorization" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ "/CloudServicesGroup/Bosch_IaaS", "/CloudServicesGroup/Bosch_PaaS" ] + }, { + "id" : "6d6d63b1-e1fd-461e-9427-d2891934f2c8", + "createdTimestamp" : 1674145751069, + "username" : "uc1_ciso", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "credentials" : [ { + "id" : "fb3515d2-cb63-4755-9891-a59bfe03de91", + "type" : "password", + "createdDate" : 1674145765210, + "secretData" : "{\"value\":\"YpfIVnyCtPFS0eIw6hOvrR6IN5KtejRLRaS+uOvp1MTUTXqzBSi7eeJyBFs2f/LEuwW2M2+1MocaJDmT+AOZCg==\",\"salt\":\"cTW2gbBBk6chX9YZcQZNEg==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization", "CISO" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ "/CloudServicesGroup/Bosch_IaaS", "/CloudServicesGroup/Bosch_PaaS", "/CloudServicesGroup/Bosch_SaaS" ] + }, { + "id" : "a297bee2-1e9e-4c2b-aee8-9895816ab47c", + "createdTimestamp" : 1674145341569, + "username" : "uc1_domgov", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "credentials" : [ { + "id" : "5b4aad96-5016-42df-afec-f9893e280c4d", + "type" : "password", + "createdDate" : 1674145359184, + "secretData" : "{\"value\":\"N6w0KcmWLsMENdat9eaMRoM34QZAxPjEiT55YVvnmEF6v2j6RNqHVv17hXWyXsEkNalyRi7jaERxOF3IQGF0kA==\",\"salt\":\"8jkW8WDLldHOJ1h5F7oGKg==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "SecurityGovernance", "uma_authorization" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ "/CloudServicesGroup/Bosch_IaaS", "/CloudServicesGroup/Bosch_PaaS" ] + }, { + "id" : "d7b43b52-b048-4fea-a90b-ce6388b18831", + "createdTimestamp" : 1674145455906, + "username" : "uc1_prodown", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "credentials" : [ { + "id" : "0544042d-3b6d-4995-a680-30c8f398e688", + "type" : "password", + "createdDate" : 1674145475221, + "secretData" : "{\"value\":\"RwVqLSQax/flyOgNk1cHoYoAmA0+uhE4K7jrn+hgTZ2k/CPuuhWcXTh8C/QjO0TmiSKj9tew1SiWDjY+vdr8AQ==\",\"salt\":\"MRKS4kOhNIhivhjPFgVxVA==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization", "ProductOwner" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ "/CloudServicesGroup/Bosch_IaaS" ] + }, { + "id" : "027b55fb-dec7-4ae2-a9e6-eaf6a3cd0f50", + "createdTimestamp" : 1674145592731, + "username" : "uc1_prodsec", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "credentials" : [ { + "id" : "e8bb2853-4cdc-4392-bde3-03549222999f", + "type" : "password", + "createdDate" : 1674145608293, + "secretData" : "{\"value\":\"tQcf31ARRsR2FMO9NsadvUG+TVtVrL3krEebP0C2aX3HfyT3yKc9WWK9vB7jg5eyEsj8cJ2bVyo0jXkw5xnfrg==\",\"salt\":\"qYccy+Nsyj9+uJ56Jf9NmQ==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "ProductSecurityEng", "uma_authorization" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ "/CloudServicesGroup/Bosch_IaaS" ] + }, { + "id" : "8cd26e6b-af60-4192-9962-489ac1a586c2", + "createdTimestamp" : 1674144766118, + "username" : "uc1_secanalyst", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "credentials" : [ { + "id" : "201521cd-677e-4a0b-91f4-be2a240747c4", + "type" : "password", + "createdDate" : 1674144783147, + "secretData" : "{\"value\":\"5Akf4Tyfbenem77IjCv2enXE90qzVCTcRVZq+2FguHTbaY3TTlwDjKmzHMXaia8h2rmOc3x9F0Eo+E9DMWFczQ==\",\"salt\":\"rWV6q1kzfej5oTOOEVlHyQ==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "SecurityAnalyst", "uma_authorization" ], + "clientRoles" : { + "integrated-ui" : [ "user", "showSATRA", "showCCE", "showAMOE", "showUser", "showCNL", "showCatalogue", "showOrchestrator", "admin" ], + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ "/CloudServicesGroup/Bosch_IaaS", "/CloudServicesGroup/Bosch_PaaS", "/CloudServicesGroup/Bosch_SaaS" ] + }, { + "id" : "20a895c6-4cb9-4707-a06c-804d5328b67c", + "createdTimestamp" : 1674144525022, + "username" : "uc1_secgov", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "credentials" : [ { + "id" : "6f2db9a7-2879-43cc-9581-6bd8682052c0", + "type" : "password", + "createdDate" : 1674144659301, + "secretData" : "{\"value\":\"b1RipaQ+5wTvV3auTm1y7E8JqqY7XyWjOk3PFcQcKtVvHX0I9mEsem05nd2qImgX2M4d25Udshsv2WkY9v3yfw==\",\"salt\":\"if6yR8YUa7oV2UYXB8gBDg==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "SecurityGovernance", "uma_authorization" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ "/CloudServicesGroup/Bosch_IaaS", "/CloudServicesGroup/Bosch_PaaS", "/CloudServicesGroup/Bosch_SaaS" ] + }, { + "id" : "a2d9c454-960f-47e9-860e-e1876cdd81e7", + "createdTimestamp" : 1648054983093, + "username" : "user", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "firstName" : "U.", + "lastName" : "Ser", + "email" : "user@localhost", + "credentials" : [ { + "id" : "b6a60d24-da76-47f4-a07b-885bac646b7a", + "type" : "password", + "createdDate" : 1650406346090, + "secretData" : "{\"value\":\"NTNpm0k7ky3gLf9pcYTklGY8qn0LPwCrhUYu94nhHVUl1vp5IHb5eSjgFJjpFaKKObNDcz7qJFWjyJ/mWCtwGA==\",\"salt\":\"fQAJhWFTktzewkFQ5ypbRQ==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "ROLE_USER", "offline_access", "Auditor", "uma_authorization" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "228eed5c-845a-42b6-a60d-27bfe62167c3", + "createdTimestamp" : 1659009856941, + "username" : "usertest", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "credentials" : [ { + "id" : "5909c50c-2225-4403-8995-3132b851b1c0", + "type" : "password", + "createdDate" : 1659009866614, + "secretData" : "{\"value\":\"PNVxA2+Kv2nyJfQjLcDvYagzfE/loAyrsJ1QEUkhL/bVWDku+VJu/QkCKXU1Dr4rTnTGBaOxl2ASFoRm6oP3Cg==\",\"salt\":\"T0N9Ed98G4wz5iBwyo2tRQ==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization", "Compliance Manager" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ "/CloudServiceProvidersGroup/CloudServiceProviderTest1", "/CloudServicesGroup/CloudServiceTest1" ] + }, { + "id" : "a3f3653e-d47e-4d21-bae4-40265bf90318", + "createdTimestamp" : 1667576437610, + "username" : "xlab", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "credentials" : [ { + "id" : "9238dc63-0ef0-47a9-8c53-2bce6f4f35b2", + "type" : "password", + "createdDate" : 1667576457684, + "secretData" : "{\"value\":\"jw9KOFdG6tGZBMY7NdX2FNtvCBXfq4igmlEOCZ67jPRaWpPASPlnYD5EVqNfcmVBvGmnjV73PMUgo4L/Zg/9pw==\",\"salt\":\"DRbV1mX842qUu+Zifrm4Gg==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "Customer", "ROLE_USER", "offline_access", "Auditor", "Company", "ICO", "uma_authorization", "CISO", "test-role-1", "Compliance Manager" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + } ], + "scopeMappings" : [ { + "clientScope" : "offline_access", + "roles" : [ "offline_access" ] + } ], + "clientScopeMappings" : { + "account" : [ { + "client" : "account-console", + "roles" : [ "manage-account" ] + } ] + }, + "clients" : [ { + "id" : "8bd89baf-08f6-4e4b-8394-6b4dd6050ed2", + "clientId" : "account", + "name" : "${client_account}", + "rootUrl" : "${authBaseUrl}", + "baseUrl" : "/realms/medina/account/", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "533f8bfc-73ca-4950-a17e-29510052e70a", + "defaultRoles" : [ "manage-account", "view-profile" ], + "redirectUris" : [ "/realms/medina/account/*" ], + "webOrigins" : [ ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : false, + "serviceAccountsEnabled" : false, + "publicClient" : false, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : false, + "nodeReRegistrationTimeout" : 0, + "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "8f7fee7a-d32e-4c08-85fd-0a92ace43970", + "clientId" : "account-console", + "name" : "${client_account-console}", + "rootUrl" : "${authBaseUrl}", + "baseUrl" : "/realms/medina/account/", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "0ffbdc8a-e2b4-4693-abc0-cf08d0a3127e", + "redirectUris" : [ "/realms/medina/account/*" ], + "webOrigins" : [ ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : false, + "serviceAccountsEnabled" : false, + "publicClient" : true, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "pkce.code.challenge.method" : "S256" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : false, + "nodeReRegistrationTimeout" : 0, + "protocolMappers" : [ { + "id" : "edc42cad-bd34-4811-8354-0adaee774340", + "name" : "audience resolve", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-audience-resolve-mapper", + "consentRequired" : false, + "config" : { } + } ], + "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "24244b46-4845-4734-a061-bcb8ec91b84c", + "clientId" : "admin-cli", + "name" : "${client_admin-cli}", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "c29d2164-1f3d-476b-951c-c5eea7518fd6", + "redirectUris" : [ ], + "webOrigins" : [ ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : false, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : true, + "serviceAccountsEnabled" : true, + "publicClient" : false, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "false", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : 0, + "protocolMappers" : [ { + "id" : "8b8f8749-0adc-492d-a73d-3029413881be", + "name" : "Client ID", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientId", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientId", + "jsonType.label" : "String" + } + }, { + "id" : "6117fb7e-ecbe-4f0f-90da-d5a5c805e5d7", + "name" : "Client IP Address", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientAddress", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientAddress", + "jsonType.label" : "String" + } + }, { + "id" : "786a08b5-a459-43d0-b0d4-1d45a084a14a", + "name" : "Client Host", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientHost", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientHost", + "jsonType.label" : "String" + } + } ], + "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "a25b15fc-202b-4dc6-9340-fcc94f491a24", + "clientId" : "amoe-client", + "rootUrl" : "https://amoe-dev.192.168.56.1.nip.io/", + "adminUrl" : "https://amoe-dev.192.168.56.1.nip.io/", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "54d58c5f-dfd7-4902-819c-5b316ca13770", + "redirectUris" : [ "*" ], + "webOrigins" : [ "*" ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : true, + "serviceAccountsEnabled" : false, + "publicClient" : false, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "backchannel.logout.url" : "https://amoe-dev.192.168.56.1.nip.io/openid/logout_request", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "protocolMappers" : [ { + "id" : "7adfc5e5-5248-4737-8b84-78567a897980", + "name" : "Client Host", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientHost", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientHost", + "jsonType.label" : "String" + } + }, { + "id" : "f96e6e25-77e4-4ffe-a4ca-5081f6dd3488", + "name" : "Client ID", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientId", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientId", + "jsonType.label" : "String" + } + }, { + "id" : "0078d78f-a368-41c5-9c41-16ba08b0dd64", + "name" : "Client IP Address", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientAddress", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientAddress", + "jsonType.label" : "String" + } + } ], + "defaultClientScopes" : [ "web-origins", "role_list", "cloudservice", "profile", "roles", "offline_access", "email" ], + "optionalClientScopes" : [ "address", "phone", "microprofile-jwt" ] + }, { + "id" : "a08fc1fe-7c85-4c1c-9d04-604c6e35faa8", + "clientId" : "api-swagger", + "rootUrl" : "https://api-swagger-dev.192.168.56.1.nip.io", + "adminUrl" : "https://api-swagger-dev.192.168.56.1.nip.io", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "c29a5cf2-52c0-4fa2-89fc-8951fa80ce84", + "redirectUris" : [ "https://api-swagger-dev.192.168.56.1.nip.io/*" ], + "webOrigins" : [ "https://api-swagger-dev.192.168.56.1.nip.io" ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : true, + "serviceAccountsEnabled" : true, + "authorizationServicesEnabled" : true, + "publicClient" : false, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "protocolMappers" : [ { + "id" : "a1b33188-ca81-44c0-ba56-772581a94038", + "name" : "Client IP Address", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientAddress", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientAddress", + "jsonType.label" : "String" + } + }, { + "id" : "7455b7e4-2b73-4a6d-b7e6-8434370a7a85", + "name" : "Client Host", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientHost", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientHost", + "jsonType.label" : "String" + } + }, { + "id" : "d9167dc9-6937-4bea-bc20-6e885857ccd0", + "name" : "Client ID", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientId", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientId", + "jsonType.label" : "String" + } + } ], + "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ], + "authorizationSettings" : { + "allowRemoteResourceManagement" : true, + "policyEnforcementMode" : "ENFORCING", + "resources" : [ { + "name" : "Default Resource", + "type" : "urn:api-swagger:resources:default", + "ownerManagedAccess" : false, + "attributes" : { }, + "_id" : "b8d55282-f977-4e89-9e8e-2b3e8ef07200", + "uris" : [ "/*" ] + } ], + "policies" : [ { + "id" : "9dc0a736-90a6-4428-be5a-0695b9153f93", + "name" : "Default Policy", + "description" : "A policy that grants access only for users within this realm", + "type" : "js", + "logic" : "POSITIVE", + "decisionStrategy" : "AFFIRMATIVE", + "config" : { + "code" : "// by default, grants any permission associated with this policy\n$evaluation.grant();\n" + } + }, { + "id" : "4058b893-6396-4351-ae9c-e4ecf5329d18", + "name" : "Default Permission", + "description" : "A permission that applies to the default resource type", + "type" : "resource", + "logic" : "POSITIVE", + "decisionStrategy" : "UNANIMOUS", + "config" : { + "defaultResourceType" : "urn:api-swagger:resources:default", + "applyPolicies" : "[\"Default Policy\"]" + } + } ], + "scopes" : [ ], + "decisionStrategy" : "UNANIMOUS" + } + }, { + "id" : "8d1a867d-537c-433e-8234-b3582127cc54", + "clientId" : "broker", + "name" : "${client_broker}", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "4293f846-3a76-4628-a9a4-810bebcdc51b", + "redirectUris" : [ ], + "webOrigins" : [ ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : false, + "serviceAccountsEnabled" : false, + "publicClient" : false, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : false, + "nodeReRegistrationTimeout" : 0, + "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "df274002-83dd-4c7f-b64b-8cf7b90d9a97", + "clientId" : "catalogue-backend", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "47b59168-f965-4a6f-941c-ae7ee1ba463c", + "redirectUris" : [ ], + "webOrigins" : [ ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : false, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : false, + "serviceAccountsEnabled" : true, + "publicClient" : false, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "protocolMappers" : [ { + "id" : "6ea5df11-551c-44e4-a4e7-74e787bea43e", + "name" : "Client Host", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientHost", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientHost", + "jsonType.label" : "String" + } + }, { + "id" : "0544b98a-f678-4395-b3cf-bdb0529a5661", + "name" : "Client IP Address", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientAddress", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientAddress", + "jsonType.label" : "String" + } + }, { + "id" : "adace2ba-512e-4856-a187-75031220377d", + "name" : "Client ID", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientId", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientId", + "jsonType.label" : "String" + } + } ], + "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "fa074dc3-e8de-4f34-9437-dc5d93f60f9a", + "clientId" : "catalogue-gateway", + "rootUrl" : "https://192.168.56.1.nip.io", + "adminUrl" : "https://192.168.56.1.nip.io", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "1895c8be-10f2-4243-a7da-8443aa1a2851", + "redirectUris" : [ "*" ], + "webOrigins" : [ "*" ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : true, + "directAccessGrantsEnabled" : false, + "serviceAccountsEnabled" : false, + "publicClient" : true, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "defaultClientScopes" : [ "web-origins", "jhipster", "role_list", "cloudservice", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "b7769853-8605-4a36-9352-7633d3be0f22", + "clientId" : "catalogue-jhipster-control-center", + "rootUrl" : "http://localhost:7419", + "adminUrl" : "http://localhost:7419", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "a77e5efc-e542-4ed2-b8a2-535fe4c4fb34", + "redirectUris" : [ "dev.localhost.ionic:*", "http://127.0.0.1:*", "http://localhost:*", "https://127.0.0.1:*", "https://localhost:*" ], + "webOrigins" : [ "*" ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : true, + "directAccessGrantsEnabled" : false, + "serviceAccountsEnabled" : false, + "publicClient" : true, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "645cf799-be24-42fd-a169-f9d5fc39be31", + "clientId" : "catalogue-registry", + "rootUrl" : "https://registry.192.168.56.1.nip.io", + "adminUrl" : "https://registry.192.168.56.1.nip.io", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "ff31a06d-d850-48d2-8355-6723e856c1b6", + "redirectUris" : [ "*" ], + "webOrigins" : [ "*" ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : true, + "serviceAccountsEnabled" : false, + "publicClient" : true, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "defaultClientScopes" : [ "web-origins", "jhipster", "role_list", "roles", "profile", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "12d63192-94cd-4692-b557-ab76a331eaa6", + "clientId" : "ccd-client", + "name" : "Company compliance dashboard", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "cc728558-1c40-48ae-8be4-e48b582a727a", + "redirectUris" : [ "http://localhost:8080/" ], + "webOrigins" : [ ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : true, + "serviceAccountsEnabled" : false, + "publicClient" : false, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "defaultClientScopes" : [ "web-origins", "role_list", "cloudservice", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "dc64b28b-a696-4b0c-8e24-2aeae138c3e5", + "clientId" : "cce-dev", + "rootUrl" : "http://cce-api-dev.192.168.56.1.nip.io/", + "adminUrl" : "http://cce-api-dev.192.168.56.1.nip.io/", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "efe3acb8-b4c1-43f0-a3a2-b75402e76afc", + "redirectUris" : [ "http://localhost:8080/*", "https://cce-api-dev.192.168.56.1.nip.io/*" ], + "webOrigins" : [ "http://cce-api-dev.192.168.56.1.nip.io" ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : true, + "serviceAccountsEnabled" : true, + "authorizationServicesEnabled" : true, + "publicClient" : false, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "protocolMappers" : [ { + "id" : "12f94f61-bb5e-41dc-ae0b-20206ff6173c", + "name" : "Client IP Address", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientAddress", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientAddress", + "jsonType.label" : "String" + } + }, { + "id" : "3920d8ac-45ea-4bf5-a203-1c831cb845ab", + "name" : "Client Host", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientHost", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientHost", + "jsonType.label" : "String" + } + }, { + "id" : "5f427941-d12d-432c-b883-ac39fe209705", + "name" : "Client ID", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientId", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientId", + "jsonType.label" : "String" + } + } ], + "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ], + "authorizationSettings" : { + "allowRemoteResourceManagement" : true, + "policyEnforcementMode" : "ENFORCING", + "resources" : [ { + "name" : "Default Resource", + "type" : "urn:cce-dev:resources:default", + "ownerManagedAccess" : false, + "attributes" : { }, + "_id" : "ef475897-65aa-4813-a810-340268090336", + "uris" : [ "/*" ] + } ], + "policies" : [ { + "id" : "ff85e02d-5048-473c-8bd0-fa22b6574852", + "name" : "Default Policy", + "description" : "A policy that grants access only for users within this realm", + "type" : "js", + "logic" : "POSITIVE", + "decisionStrategy" : "AFFIRMATIVE", + "config" : { + "code" : "// by default, grants any permission associated with this policy\n$evaluation.grant();\n" + } + }, { + "id" : "043cee90-99a8-4f2b-9ad2-3f37ce518483", + "name" : "Default Permission", + "description" : "A permission that applies to the default resource type", + "type" : "resource", + "logic" : "POSITIVE", + "decisionStrategy" : "UNANIMOUS", + "config" : { + "defaultResourceType" : "urn:cce-dev:resources:default", + "applyPolicies" : "[\"Default Policy\"]" + } + } ], + "scopes" : [ ], + "decisionStrategy" : "UNANIMOUS" + } + }, { + "id" : "4a57f2cd-5b99-4b78-ba31-d994521abd30", + "clientId" : "clouditor-assessment", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "4a47f42a-df33-418f-b687-64e7c8ffbbda", + "redirectUris" : [ "https://security-assessment-dev.192.168.56.1.nip.io" ], + "webOrigins" : [ ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : false, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : false, + "serviceAccountsEnabled" : true, + "publicClient" : false, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "protocolMappers" : [ { + "id" : "caf7c5a7-f72e-44d8-aa9d-37c185e415ca", + "name" : "Client ID", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientId", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientId", + "jsonType.label" : "String" + } + }, { + "id" : "7dde8113-bf11-4cb4-be6b-d342ed64b1b6", + "name" : "Client Host", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientHost", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientHost", + "jsonType.label" : "String" + } + }, { + "id" : "1261d141-6010-4868-b659-2ce26e1680b4", + "name" : "Client IP Address", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientAddress", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientAddress", + "jsonType.label" : "String" + } + } ], + "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "69bba521-b088-45a6-9e56-bd29e557cea4", + "clientId" : "clouditor-cli", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "c3228efe-8dc3-4c09-bc89-8bdc362ae878", + "redirectUris" : [ "http://localhost:10000/callback" ], + "webOrigins" : [ ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : false, + "serviceAccountsEnabled" : false, + "publicClient" : true, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "8fedfacb-2df9-4342-be33-7d3e18dc316f", + "clientId" : "clouditor-discovery", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "2f38b7bd-c3fa-4e7b-af59-5b8d67ddd8c1", + "redirectUris" : [ "https://orchestrator-dev.192.168.56.1.nip.io/" ], + "webOrigins" : [ ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : false, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : false, + "serviceAccountsEnabled" : true, + "publicClient" : false, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "protocolMappers" : [ { + "id" : "8dfab4e0-512c-4879-8878-c949ba32a641", + "name" : "Client Host", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientHost", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientHost", + "jsonType.label" : "String" + } + }, { + "id" : "9bba24ce-80f6-4a69-844d-7406c39d678b", + "name" : "Client ID", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientId", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientId", + "jsonType.label" : "String" + } + }, { + "id" : "112001f6-9584-4949-9d79-4d8e337bb9eb", + "name" : "Client IP Address", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientAddress", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientAddress", + "jsonType.label" : "String" + } + } ], + "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "fb2b3d0e-e2d7-4cb2-819d-bab9043f0d11", + "clientId" : "clouditor-orchestrator", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "eb100a60-92f7-4321-b9a6-55e8f82bc3a7", + "redirectUris" : [ ], + "webOrigins" : [ ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : false, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : false, + "serviceAccountsEnabled" : true, + "publicClient" : false, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "protocolMappers" : [ { + "id" : "1cefc460-e6b3-4077-a9f1-dab69ca3e2ba", + "name" : "Client ID", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientId", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientId", + "jsonType.label" : "String" + } + }, { + "id" : "34f93a44-5113-4638-bff8-4c89544a512e", + "name" : "Client Host", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientHost", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientHost", + "jsonType.label" : "String" + } + }, { + "id" : "cced5616-8012-473d-9cfb-95cf88efad11", + "name" : "Client IP Address", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientAddress", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientAddress", + "jsonType.label" : "String" + } + } ], + "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "fcf4c413-07b8-40e1-9ee0-2ffa646dfdf5", + "clientId" : "clouditor-ui", + "rootUrl" : "https://orchestrator-dev.192.168.56.1.nip.io", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "7a189e46-8e44-4968-9228-2115e84dbcdd", + "redirectUris" : [ "https://orchestrator-dev.192.168.56.1.nip.io/callback" ], + "webOrigins" : [ "https://orchestrator-dev.192.168.56.1.nip.io" ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : false, + "serviceAccountsEnabled" : false, + "publicClient" : true, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "defaultClientScopes" : [ "web-origins", "role_list", "cloudservice", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "15a81bd1-4edd-4e2a-87ec-3bbcac30d2a3", + "clientId" : "cnl-editor-frontend", + "rootUrl" : "https://cnl-editor-frontend-dev.192.168.56.1.nip.io", + "adminUrl" : "https://cnl-editor-frontend-dev.192.168.56.1.nip.io", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "e6b76254-187d-441b-9061-cb6b03dd51a4", + "redirectUris" : [ "http://cnl-editor-frontend-dev.192.168.56.1.nip.io/*", "https://cnl-editor-frontend-dev.192.168.56.1.nip.io/*" ], + "webOrigins" : [ "https://cnl-editor-frontend-dev.192.168.56.1.nip.io" ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : true, + "serviceAccountsEnabled" : false, + "publicClient" : true, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "defaultClientScopes" : [ "web-origins", "role_list", "cloudservice", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "01fce0c3-2db7-46dd-af1c-115dc1800053", + "clientId" : "codyze", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "7ff65ca2-a54a-4093-84f3-3b5756cc4e5c", + "redirectUris" : [ ], + "webOrigins" : [ ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : false, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : false, + "serviceAccountsEnabled" : true, + "publicClient" : false, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "protocolMappers" : [ { + "id" : "43fbe8e9-8141-4868-b85c-91220bd5f08f", + "name" : "Client IP Address", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientAddress", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientAddress", + "jsonType.label" : "String" + } + }, { + "id" : "ab5e553c-34e4-4411-b6c2-23235f3d7f84", + "name" : "Client ID", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientId", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientId", + "jsonType.label" : "String" + } + }, { + "id" : "8d070365-134e-4302-b0bd-e6ce82b1c2db", + "name" : "Client Host", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientHost", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientHost", + "jsonType.label" : "String" + } + } ], + "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "4cb90bba-1483-48f8-85c3-af800943c740", + "clientId" : "dsl-mapper-client", + "rootUrl" : "https://dsl-mapper-dev.192.168.56.1.nip.io/", + "adminUrl" : "https://dsl-mapper-dev.192.168.56.1.nip.io/", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "0fa48e19-90a5-4e6c-addd-446691dbf8eb", + "redirectUris" : [ "https://dsl-mapper-dev.192.168.56.1.nip.io/*" ], + "webOrigins" : [ "https://dsl-mapper-dev.192.168.56.1.nip.io" ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : true, + "serviceAccountsEnabled" : true, + "authorizationServicesEnabled" : true, + "publicClient" : false, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "protocolMappers" : [ { + "id" : "987c2d9a-ef46-4d60-881d-72d495260d07", + "name" : "Client Host", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientHost", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientHost", + "jsonType.label" : "String" + } + }, { + "id" : "7c8815a1-7820-46ed-93d8-45398092f0ff", + "name" : "Client IP Address", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientAddress", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientAddress", + "jsonType.label" : "String" + } + }, { + "id" : "c5b8af61-2816-47e9-aa22-743172954c8c", + "name" : "Client ID", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientId", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientId", + "jsonType.label" : "String" + } + } ], + "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ], + "authorizationSettings" : { + "allowRemoteResourceManagement" : true, + "policyEnforcementMode" : "ENFORCING", + "resources" : [ { + "name" : "Default Resource", + "type" : "urn:dsl-mapper-client:resources:default", + "ownerManagedAccess" : false, + "attributes" : { }, + "_id" : "09ef8b92-846c-4f44-af8a-73138006111b", + "uris" : [ "/*" ] + } ], + "policies" : [ { + "id" : "586e6b4a-0614-4102-b48d-cd633f918809", + "name" : "Default Policy", + "description" : "A policy that grants access only for users within this realm", + "type" : "js", + "logic" : "POSITIVE", + "decisionStrategy" : "AFFIRMATIVE", + "config" : { + "code" : "// by default, grants any permission associated with this policy\n$evaluation.grant();\n" + } + }, { + "id" : "43e2f264-68dc-44a6-9db2-f2f31dcb67ad", + "name" : "Default Permission", + "description" : "A permission that applies to the default resource type", + "type" : "resource", + "logic" : "POSITIVE", + "decisionStrategy" : "UNANIMOUS", + "config" : { + "defaultResourceType" : "urn:dsl-mapper-client:resources:default", + "applyPolicies" : "[\"Default Policy\"]" + } + } ], + "scopes" : [ ], + "decisionStrategy" : "UNANIMOUS" + } + }, { + "id" : "1150f83f-37bc-4b14-98a0-e179aaee0f6c", + "clientId" : "integrated-ui", + "rootUrl" : "https://integrated-ui-dev.192.168.56.1.nip.io", + "adminUrl" : "https://integrated-ui-dev.192.168.56.1.nip.io", + "baseUrl" : "https://integrated-ui-dev.192.168.56.1.nip.io", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "9049e030-2e66-496e-accf-b7a5037bc0eb", + "redirectUris" : [ "", "https://integrated-ui-dev.192.168.56.1.nip.io/*" ], + "webOrigins" : [ "https://integrated-ui-dev.192.168.56.1.nip.io" ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : true, + "serviceAccountsEnabled" : false, + "publicClient" : true, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "defaultClientScopes" : [ "web-origins", "role_list", "cloudservice", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "095fac49-b0b4-4c44-b5b9-fa22bed6d160", + "clientId" : "life-cycle-manager", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "0191bfe6-1d93-4d89-b1e4-4b505d348057", + "redirectUris" : [ ], + "webOrigins" : [ ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : false, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : false, + "serviceAccountsEnabled" : true, + "publicClient" : false, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "protocolMappers" : [ { + "id" : "cdb336c7-b22f-44c6-b30b-9136364b8229", + "name" : "Client IP Address", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientAddress", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientAddress", + "jsonType.label" : "String" + } + }, { + "id" : "3c6e3fe1-37bb-4ef0-a162-720b0d78b3af", + "name" : "Client ID", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientId", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientId", + "jsonType.label" : "String" + } + }, { + "id" : "e39ee5e2-dd4a-4d0e-9fc3-a0a84b200143", + "name" : "Client Host", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientHost", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientHost", + "jsonType.label" : "String" + } + } ], + "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "9f7c65f7-9ae9-4c9e-9bd7-971d0cbe146d", + "clientId" : "nl2cnl-translator-client", + "rootUrl" : "https://nl2cnl-translator-dev.192.168.56.1.nip.io/", + "adminUrl" : "https://nl2cnl-translator-dev.192.168.56.1.nip.io/", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "b1d1d98d-b5e5-46ac-9b45-30502cfb53ab", + "redirectUris" : [ "https://nl2cnl-translator-dev.192.168.56.1.nip.io/*" ], + "webOrigins" : [ "https://nl2cnl-translator-dev.192.168.56.1.nip.io" ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : true, + "serviceAccountsEnabled" : true, + "authorizationServicesEnabled" : true, + "publicClient" : false, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "protocolMappers" : [ { + "id" : "ad2d1f98-62a8-4859-8cce-1ce4034b9920", + "name" : "Client Host", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientHost", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientHost", + "jsonType.label" : "String" + } + }, { + "id" : "480e69e8-ebca-4e89-8d20-24bba626bbce", + "name" : "Client ID", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientId", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientId", + "jsonType.label" : "String" + } + }, { + "id" : "42724a07-f05f-4d65-82cb-b1c2288810d8", + "name" : "Client IP Address", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientAddress", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientAddress", + "jsonType.label" : "String" + } + } ], + "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ], + "authorizationSettings" : { + "allowRemoteResourceManagement" : true, + "policyEnforcementMode" : "ENFORCING", + "resources" : [ { + "name" : "Default Resource", + "type" : "urn:nl2cnl-translator-client:resources:default", + "ownerManagedAccess" : false, + "attributes" : { }, + "_id" : "cf0de028-f233-4f59-83cb-3d60d34450a3", + "uris" : [ "/*" ] + } ], + "policies" : [ { + "id" : "46935297-5bfb-4a43-b493-b28efe8c863b", + "name" : "Default Policy", + "description" : "A policy that grants access only for users within this realm", + "type" : "js", + "logic" : "POSITIVE", + "decisionStrategy" : "AFFIRMATIVE", + "config" : { + "code" : "// by default, grants any permission associated with this policy\n$evaluation.grant();\n" + } + }, { + "id" : "9cd3da2f-0302-4033-a9ed-36758ffa7730", + "name" : "Default Permission", + "description" : "A permission that applies to the default resource type", + "type" : "resource", + "logic" : "POSITIVE", + "decisionStrategy" : "UNANIMOUS", + "config" : { + "defaultResourceType" : "urn:nl2cnl-translator-client:resources:default", + "applyPolicies" : "[\"Default Policy\"]" + } + } ], + "scopes" : [ ], + "decisionStrategy" : "UNANIMOUS" + } + }, { + "id" : "785a9f77-d06f-4a65-9ba9-341921fda61a", + "clientId" : "raof", + "rootUrl" : "http://risk-assessment-engine-dev.192.168.56.1.nip.io", + "adminUrl" : "http://risk-assessment-engine-dev.192.168.56.1.nip.io", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "92d45bca-073b-49e3-8b23-2615f7fcbb3e", + "redirectUris" : [ "http://risk-assessment-engine-dev.192.168.56.1.nip.io/*" ], + "webOrigins" : [ "http://risk-assessment-engine-dev.192.168.56.1.nip.io" ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : true, + "serviceAccountsEnabled" : true, + "publicClient" : true, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "protocolMappers" : [ { + "id" : "1fddcb23-2a23-4ce6-acd4-cb48155d9034", + "name" : "Client Host", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientHost", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientHost", + "jsonType.label" : "String" + } + }, { + "id" : "1b88c2af-c338-4cf2-ab8d-69d1a60837a2", + "name" : "Client IP Address", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientAddress", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientAddress", + "jsonType.label" : "String" + } + }, { + "id" : "1c4f9074-9c2a-40bc-b55e-07a4eccfedab", + "name" : "Client ID", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientId", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientId", + "jsonType.label" : "String" + } + } ], + "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "1c198016-f44c-4620-b2f6-821173bc2e54", + "clientId" : "raof-app", + "rootUrl" : "https://risk-assessment-app-dev.192.168.56.1.nip.io", + "adminUrl" : "https://risk-assessment-app-dev.192.168.56.1.nip.io", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "5f3391fb-e3da-4d24-bf49-a110ce86e5de", + "redirectUris" : [ "https://risk-assessment-app-dev.192.168.56.1.nip.io/*" ], + "webOrigins" : [ "https://risk-assessment-app-dev.192.168.56.1.nip.io" ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : true, + "serviceAccountsEnabled" : true, + "authorizationServicesEnabled" : true, + "publicClient" : false, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "protocolMappers" : [ { + "id" : "84cd6938-b5aa-4003-b0ee-0090073e2a88", + "name" : "Client IP Address", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientAddress", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientAddress", + "jsonType.label" : "String" + } + }, { + "id" : "9f22b311-05a4-4575-b7a5-ee07f2a38c08", + "name" : "Client ID", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientId", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientId", + "jsonType.label" : "String" + } + }, { + "id" : "f5e2cf3e-2f89-449b-bd1d-3cac7224b576", + "name" : "Client Host", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientHost", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientHost", + "jsonType.label" : "String" + } + } ], + "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ], + "authorizationSettings" : { + "allowRemoteResourceManagement" : true, + "policyEnforcementMode" : "ENFORCING", + "resources" : [ { + "name" : "Default Resource", + "type" : "urn:raof-app:resources:default", + "ownerManagedAccess" : false, + "attributes" : { }, + "_id" : "c9d1728e-3f6a-4003-8362-d6f5f960515c", + "uris" : [ "/*" ] + } ], + "policies" : [ { + "id" : "73bfec51-aca5-4ac8-b537-51a78d5de521", + "name" : "Default Policy", + "description" : "A policy that grants access only for users within this realm", + "type" : "js", + "logic" : "POSITIVE", + "decisionStrategy" : "AFFIRMATIVE", + "config" : { + "code" : "// by default, grants any permission associated with this policy\n$evaluation.grant();\n" + } + }, { + "id" : "67de5082-2eb9-4f99-b13e-a269a911952f", + "name" : "Default Permission", + "description" : "A permission that applies to the default resource type", + "type" : "resource", + "logic" : "POSITIVE", + "decisionStrategy" : "UNANIMOUS", + "config" : { + "defaultResourceType" : "urn:raof-app:resources:default", + "applyPolicies" : "[\"Default Policy\"]" + } + } ], + "scopes" : [ ], + "decisionStrategy" : "UNANIMOUS" + } + }, { + "id" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", + "clientId" : "realm-management", + "name" : "${client_realm-management}", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "eac6413c-b76b-4d1a-b4dc-b217fe77326b", + "redirectUris" : [ ], + "webOrigins" : [ ], + "notBefore" : 0, + "bearerOnly" : true, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : false, + "serviceAccountsEnabled" : false, + "publicClient" : false, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : false, + "nodeReRegistrationTimeout" : 0, + "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "7d57284a-3eba-4ceb-8088-b13aeef3df24", + "clientId" : "security-admin-console", + "name" : "${client_security-admin-console}", + "rootUrl" : "${authAdminUrl}", + "baseUrl" : "/admin/medina/console/", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "11fb3ec1-97dc-46e4-aee3-7d61493a0184", + "redirectUris" : [ "/admin/medina/console/*" ], + "webOrigins" : [ "+" ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : false, + "serviceAccountsEnabled" : false, + "publicClient" : true, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "pkce.code.challenge.method" : "S256" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : false, + "nodeReRegistrationTimeout" : 0, + "protocolMappers" : [ { + "id" : "ce06926e-1e52-49b7-86ea-ddfd7665b90b", + "name" : "locale", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-attribute-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "locale", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "locale", + "jsonType.label" : "String" + } + } ], + "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "52938086-6278-49af-b311-48ec89d2c3dc", + "clientId" : "ssi-frontend", + "rootUrl" : "http://localhost:3000", + "adminUrl" : "http://localhost:3000", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "7f73d06a-5f9e-4b0f-88f7-40b43b62e58f", + "redirectUris" : [ "https://ssi-framework-ui-dev.192.168.56.1.nip.io/*", "http://localhost:3000/*", "https://static.cybersec.digital.tecnalia.dev/*" ], + "webOrigins" : [ "https://ssi-framework-ui-dev.192.168.56.1.nip.io", "https://static.cybersec.digital.tecnalia.dev", "http://localhost:3000" ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : true, + "serviceAccountsEnabled" : false, + "publicClient" : true, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "access.token.lifespan" : "3600", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "pkce.code.challenge.method" : "S256", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "defaultClientScopes" : [ "web-origins", "role_list", "cloudservice", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "aa18689d-6d81-4b92-8b9e-291eb4733408", + "clientId" : "wazuh-vat-evidence-collector-dev", + "rootUrl" : "http://wazuh-vat-evidence-collector-dev.192.168.56.1.nip.io/", + "adminUrl" : "http://wazuh-vat-evidence-collector-dev.192.168.56.1.nip.io/", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "68dec932-77fc-4322-8089-d64c3a3317bf", + "redirectUris" : [ "http://wazuh-vat-evidence-collector-dev.192.168.56.1.nip.io/*" ], + "webOrigins" : [ "http://wazuh-vat-evidence-collector-dev.192.168.56.1.nip.io" ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : true, + "serviceAccountsEnabled" : true, + "authorizationServicesEnabled" : true, + "publicClient" : false, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "protocolMappers" : [ { + "id" : "21e80b89-4ab6-4eb1-b1b1-1a44c133e922", + "name" : "Client IP Address", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientAddress", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientAddress", + "jsonType.label" : "String" + } + }, { + "id" : "f9117947-484b-4486-9299-97a1bac403bc", + "name" : "Client Host", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientHost", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientHost", + "jsonType.label" : "String" + } + }, { + "id" : "a610e8bf-64c2-4c57-ba45-f576d1dbd1b9", + "name" : "Client ID", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientId", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientId", + "jsonType.label" : "String" + } + } ], + "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ], + "authorizationSettings" : { + "allowRemoteResourceManagement" : true, + "policyEnforcementMode" : "ENFORCING", + "resources" : [ { + "name" : "Default Resource", + "type" : "urn:wazuh-vat-evidence-collector-dev:resources:default", + "ownerManagedAccess" : false, + "attributes" : { }, + "_id" : "9b151dde-64db-48eb-a5c8-1cb76dbda106", + "uris" : [ "/*" ] + } ], + "policies" : [ { + "id" : "ea4d0471-d8e0-4eb3-b978-5e08ed330193", + "name" : "Default Policy", + "description" : "A policy that grants access only for users within this realm", + "type" : "js", + "logic" : "POSITIVE", + "decisionStrategy" : "AFFIRMATIVE", + "config" : { + "code" : "// by default, grants any permission associated with this policy\n$evaluation.grant();\n" + } + }, { + "id" : "d56c4a80-9aea-4527-80b8-fa8736d55cbe", + "name" : "Default Permission", + "description" : "A permission that applies to the default resource type", + "type" : "resource", + "logic" : "POSITIVE", + "decisionStrategy" : "UNANIMOUS", + "config" : { + "defaultResourceType" : "urn:wazuh-vat-evidence-collector-dev:resources:default", + "applyPolicies" : "[\"Default Policy\"]" + } + } ], + "scopes" : [ ], + "decisionStrategy" : "UNANIMOUS" + } + } ], + "clientScopes" : [ { + "id" : "448d9d12-2046-483f-9951-9cfb26270957", + "name" : "address", + "description" : "OpenID Connect built-in scope: address", + "protocol" : "openid-connect", + "attributes" : { + "include.in.token.scope" : "true", + "display.on.consent.screen" : "true", + "consent.screen.text" : "${addressScopeConsentText}" + }, + "protocolMappers" : [ { + "id" : "d9a1907f-8701-4b47-85a8-b7d959c37d52", + "name" : "address", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-address-mapper", + "consentRequired" : false, + "config" : { + "user.attribute.formatted" : "formatted", + "user.attribute.country" : "country", + "user.attribute.postal_code" : "postal_code", + "userinfo.token.claim" : "true", + "user.attribute.street" : "street", + "id.token.claim" : "true", + "user.attribute.region" : "region", + "access.token.claim" : "true", + "user.attribute.locality" : "locality" + } + } ] + }, { + "id" : "f5b5d781-271d-4d03-9fc9-6e56c0349f32", + "name" : "cloudservice", + "protocol" : "openid-connect", + "attributes" : { + "include.in.token.scope" : "true", + "display.on.consent.screen" : "true" + }, + "protocolMappers" : [ { + "id" : "bb0a28a6-e1c5-4a1c-9eb9-404b6158b71b", + "name" : "cloudserviceid", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-attribute-mapper", + "consentRequired" : false, + "config" : { + "aggregate.attrs" : "true", + "multivalued" : "true", + "userinfo.token.claim" : "true", + "user.attribute" : "cloudserviceid", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "cloudserviceid", + "jsonType.label" : "String" + } + }, { + "id" : "99f13ac5-3ddd-4183-af53-d352b32616a5", + "name" : "cloudserviceproviderid", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-attribute-mapper", + "consentRequired" : false, + "config" : { + "aggregate.attrs" : "true", + "multivalued" : "true", + "userinfo.token.claim" : "true", + "user.attribute" : "cloudserviceproviderid", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "cloudserviceproviderid", + "jsonType.label" : "String" + } + } ] + }, { + "id" : "275d79c9-b59c-40f6-bea2-ce277f3bb3e0", + "name" : "email", + "description" : "OpenID Connect built-in scope: email", + "protocol" : "openid-connect", + "attributes" : { + "include.in.token.scope" : "true", + "display.on.consent.screen" : "true", + "consent.screen.text" : "${emailScopeConsentText}" + }, + "protocolMappers" : [ { + "id" : "e2e140c5-e12f-4a38-ad55-dbeb73558260", + "name" : "email", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-property-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "email", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "email", + "jsonType.label" : "String" + } + }, { + "id" : "a22524be-6358-4d93-beaa-38faed65e198", + "name" : "email verified", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-property-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "emailVerified", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "email_verified", + "jsonType.label" : "boolean" + } + } ] + }, { + "id" : "bbfebad4-3f48-432f-9696-1529017fd411", + "name" : "jhipster", + "description" : "Jhipster specific claims", + "protocol" : "openid-connect", + "attributes" : { + "include.in.token.scope" : "true", + "display.on.consent.screen" : "true" + }, + "protocolMappers" : [ { + "id" : "71c49d92-db9e-4669-b945-a6dd790b8b00", + "name" : "langKey", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-attribute-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "langKey", + "id.token.claim" : "false", + "access.token.claim" : "false", + "claim.name" : "langKey", + "jsonType.label" : "String" + } + }, { + "id" : "79e9563d-3c27-4cb3-b8c7-cb11bc43ebc9", + "name" : "login", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-attribute-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "preferred_username", + "id.token.claim" : "false", + "access.token.claim" : "false", + "claim.name" : "login", + "jsonType.label" : "String" + } + }, { + "id" : "d8ce7859-d0c3-4e55-9415-438c81bfdaa2", + "name" : "roles", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-realm-role-mapper", + "consentRequired" : false, + "config" : { + "multivalued" : "true", + "userinfo.token.claim" : "true", + "id.token.claim" : "false", + "access.token.claim" : "true", + "claim.name" : "roles", + "jsonType.label" : "String" + } + } ] + }, { + "id" : "3dd12f9d-3af5-4757-b89c-4d2a8c448316", + "name" : "microprofile-jwt", + "description" : "Microprofile - JWT built-in scope", + "protocol" : "openid-connect", + "attributes" : { + "include.in.token.scope" : "true", + "display.on.consent.screen" : "false" + }, + "protocolMappers" : [ { + "id" : "995d9d7f-97af-4c01-81d8-8ca11aa34553", + "name" : "groups", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-realm-role-mapper", + "consentRequired" : false, + "config" : { + "multivalued" : "true", + "user.attribute" : "foo", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "groups", + "jsonType.label" : "String" + } + }, { + "id" : "43df77e9-387b-4f80-bd3e-c2153178ee72", + "name" : "upn", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-property-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "username", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "upn", + "jsonType.label" : "String" + } + } ] + }, { + "id" : "31c108bb-1587-4373-b46a-7d2f0d7acdba", + "name" : "offline_access", + "description" : "OpenID Connect built-in scope: offline_access", + "protocol" : "openid-connect", + "attributes" : { + "consent.screen.text" : "${offlineAccessScopeConsentText}", + "display.on.consent.screen" : "true" + } + }, { + "id" : "b8b09b9e-6096-46ae-8e90-3cd03d364a0a", + "name" : "phone", + "description" : "OpenID Connect built-in scope: phone", + "protocol" : "openid-connect", + "attributes" : { + "include.in.token.scope" : "true", + "display.on.consent.screen" : "true", + "consent.screen.text" : "${phoneScopeConsentText}" + }, + "protocolMappers" : [ { + "id" : "5464cfbe-e421-4034-8f6a-378e99476bf4", + "name" : "phone number", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-attribute-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "phoneNumber", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "phone_number", + "jsonType.label" : "String" + } + }, { + "id" : "f8a484ce-7c5f-4562-8d61-ec161e2929f6", + "name" : "phone number verified", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-attribute-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "phoneNumberVerified", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "phone_number_verified", + "jsonType.label" : "boolean" + } + } ] + }, { + "id" : "b188dc18-eca7-4941-ab04-d3e599e9aa93", + "name" : "profile", + "description" : "OpenID Connect built-in scope: profile", + "protocol" : "openid-connect", + "attributes" : { + "include.in.token.scope" : "true", + "display.on.consent.screen" : "true", + "consent.screen.text" : "${profileScopeConsentText}" + }, + "protocolMappers" : [ { + "id" : "0d52d80c-a7e1-45f9-a16e-1965220474d5", + "name" : "nickname", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-attribute-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "nickname", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "nickname", + "jsonType.label" : "String" + } + }, { + "id" : "cf0e8f74-1996-4ad1-8bcc-3f331bea4e45", + "name" : "birthdate", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-attribute-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "birthdate", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "birthdate", + "jsonType.label" : "String" + } + }, { + "id" : "c58346fb-1470-420c-a6cb-c115e833444b", + "name" : "full name", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-full-name-mapper", + "consentRequired" : false, + "config" : { + "id.token.claim" : "true", + "access.token.claim" : "true", + "userinfo.token.claim" : "true" + } + }, { + "id" : "bdfca3bd-1dda-4ebe-993c-ea11c674c919", + "name" : "gender", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-attribute-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "gender", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "gender", + "jsonType.label" : "String" + } + }, { + "id" : "1299560c-f37d-47d2-96f7-712761cf679a", + "name" : "middle name", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-attribute-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "middleName", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "middle_name", + "jsonType.label" : "String" + } + }, { + "id" : "c67dab67-c3b4-40c4-91fe-7c9ce61fca5f", + "name" : "zoneinfo", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-attribute-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "zoneinfo", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "zoneinfo", + "jsonType.label" : "String" + } + }, { + "id" : "8682ba32-def5-4111-b2ab-79cd865844d0", + "name" : "family name", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-property-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "lastName", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "family_name", + "jsonType.label" : "String" + } + }, { + "id" : "0ee61bf2-d022-420a-aa6d-c7e8bd60e24f", + "name" : "picture", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-attribute-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "picture", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "picture", + "jsonType.label" : "String" + } + }, { + "id" : "3acdc903-7ceb-40b8-8516-ebbc7874d6e4", + "name" : "given name", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-property-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "firstName", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "given_name", + "jsonType.label" : "String" + } + }, { + "id" : "d1fe9f83-141c-4c8c-9635-20367c7e5218", + "name" : "locale", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-attribute-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "locale", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "locale", + "jsonType.label" : "String" + } + }, { + "id" : "502de8c4-4cdf-402b-8453-d407a7b666da", + "name" : "username", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-property-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "username", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "preferred_username", + "jsonType.label" : "String" + } + }, { + "id" : "1603ac87-6a50-4205-b9b9-4ba4d3224d83", + "name" : "website", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-attribute-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "website", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "website", + "jsonType.label" : "String" + } + }, { + "id" : "f2c9d6f6-06b7-415a-87b3-c872a26ab921", + "name" : "updated at", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-attribute-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "updatedAt", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "updated_at", + "jsonType.label" : "String" + } + }, { + "id" : "ee586b78-b33e-4a0b-842f-9bd7059a747a", + "name" : "profile", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-attribute-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "profile", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "profile", + "jsonType.label" : "String" + } + } ] + }, { + "id" : "83717992-b174-46c3-99f1-1a097b02e99c", + "name" : "role_list", + "description" : "SAML role list", + "protocol" : "saml", + "attributes" : { + "consent.screen.text" : "${samlRoleListScopeConsentText}", + "display.on.consent.screen" : "true" + }, + "protocolMappers" : [ { + "id" : "0c0b8746-2e89-4ede-9ea6-ac76d2c66f33", + "name" : "role list", + "protocol" : "saml", + "protocolMapper" : "saml-role-list-mapper", + "consentRequired" : false, + "config" : { + "single" : "false", + "attribute.nameformat" : "Basic", + "attribute.name" : "Role" + } + } ] + }, { + "id" : "da1df8bb-b502-44fb-94a4-cff04b190a8c", + "name" : "roles", + "description" : "OpenID Connect scope for add user roles to the access token", + "protocol" : "openid-connect", + "attributes" : { + "include.in.token.scope" : "false", + "display.on.consent.screen" : "true", + "consent.screen.text" : "${rolesScopeConsentText}" + }, + "protocolMappers" : [ { + "id" : "cef58889-d64f-4405-a1f9-4978962472aa", + "name" : "realm roles", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-realm-role-mapper", + "consentRequired" : false, + "config" : { + "user.attribute" : "foo", + "access.token.claim" : "true", + "claim.name" : "realm_access.roles", + "jsonType.label" : "String", + "multivalued" : "true" + } + }, { + "id" : "44e1ccc5-63d0-464f-a88c-535864dba161", + "name" : "audience resolve", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-audience-resolve-mapper", + "consentRequired" : false, + "config" : { } + }, { + "id" : "fc7ab48f-7268-4f85-874c-8b35d00d5fb1", + "name" : "client roles", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-client-role-mapper", + "consentRequired" : false, + "config" : { + "user.attribute" : "foo", + "access.token.claim" : "true", + "claim.name" : "resource_access.${client_id}.roles", + "jsonType.label" : "String", + "multivalued" : "true" + } + } ] + }, { + "id" : "cab2790d-6362-4d1a-96cb-427e906ea1d0", + "name" : "web-origins", + "description" : "OpenID Connect scope for add allowed web origins to the access token", + "protocol" : "openid-connect", + "attributes" : { + "include.in.token.scope" : "false", + "display.on.consent.screen" : "false", + "consent.screen.text" : "" + }, + "protocolMappers" : [ { + "id" : "e8c45111-ab73-4a68-a793-fdcc71c4f2ad", + "name" : "allowed web origins", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-allowed-origins-mapper", + "consentRequired" : false, + "config" : { } + } ] + } ], + "defaultDefaultClientScopes" : [ "role_list", "profile", "email", "roles", "web-origins", "cloudservice" ], + "defaultOptionalClientScopes" : [ "offline_access", "address", "phone", "microprofile-jwt" ], + "browserSecurityHeaders" : { + "contentSecurityPolicyReportOnly" : "", + "xContentTypeOptions" : "nosniff", + "xRobotsTag" : "none", + "xFrameOptions" : "ALLOW-FROM https://integrated-ui-dev.192.168.56.1.nip.io", + "contentSecurityPolicy" : "frame-src 'self' https://integrated-ui-dev.192.168.56.1.nip.io; frame-ancestors 'self' https://ssi-framework-ui-dev.192.168.56.1.nip.io https://integrated-ui-dev.192.168.56.1.nip.io; object-src https://integrated-ui-dev.192.168.56.1.nip.io;", + "xXSSProtection" : "1; mode=block", + "strictTransportSecurity" : "max-age=31536000; includeSubDomains" + }, + "smtpServer" : { + "password" : "medinaPassword", + "starttls" : "", + "auth" : "true", + "host" : "smtp.gmail.com", + "from" : "medinatestuser@gmail.com", + "ssl" : "true", + "user" : "medinatestuser@gmail.com" + }, + "eventsEnabled" : false, + "eventsListeners" : [ "jboss-logging" ], + "enabledEventTypes" : [ ], + "adminEventsEnabled" : false, + "adminEventsDetailsEnabled" : false, + "identityProviders" : [ { + "alias" : "oidc", + "displayName" : "Bosch Login", + "internalId" : "0a60d4b9-c19c-4df7-9d55-f27547b90af0", + "providerId" : "oidc", + "enabled" : true, + "updateProfileFirstLoginMode" : "on", + "trustEmail" : false, + "storeToken" : false, + "addReadTokenRoleOnCreate" : false, + "authenticateByDefault" : false, + "linkOnly" : false, + "firstBrokerLoginFlowAlias" : "first broker login", + "config" : { + "userInfoUrl" : "https://stfs.test-bosch.com/adfs/userinfo", + "validateSignature" : "true", + "clientId" : "acfbc2ab-64e4-4b64-ad0e-204ec212cbbf", + "tokenUrl" : "https://stfs.test-bosch.com/adfs/oauth2/token/", + "jwksUrl" : "https://stfs.test-bosch.com/adfs/discovery/keys", + "issuer" : "https://stfs.test-bosch.com/adfs", + "useJwksUrl" : "true", + "authorizationUrl" : "https://stfs.test-bosch.com/adfs/oauth2/authorize/", + "clientAuthMethod" : "client_secret_post", + "disableUserInfo" : "true", + "logoutUrl" : "https://stfs.test-bosch.com/adfs/oauth2/logout", + "syncMode" : "IMPORT", + "clientSecret" : "Iog6MCAS2DoU0tLURqTVOME5p_Fq-LY_eewuOye4" + } + } ], + "identityProviderMappers" : [ { + "id" : "eac64953-04e3-4720-bb21-c09750b6a42a", + "name" : "Default Compliance Manager mapper", + "identityProviderAlias" : "oidc", + "identityProviderMapper" : "oidc-hardcoded-role-idp-mapper", + "config" : { + "syncMode" : "INHERIT", + "role" : "Compliance Manager" + } + }, { + "id" : "beb255d4-c882-4ffa-9047-163b033c93c6", + "name" : "Username Custom Mapper", + "identityProviderAlias" : "oidc", + "identityProviderMapper" : "oidc-username-idp-mapper", + "config" : { + "template" : "${CLAIM.email}", + "syncMode" : "INHERIT", + "target" : "LOCAL" + } + } ], + "components" : { + "org.keycloak.services.clientregistration.policy.ClientRegistrationPolicy" : [ { + "id" : "fbccf871-d01e-4d47-99d0-3bdce3bfa12c", + "name" : "Allowed Client Scopes", + "providerId" : "allowed-client-templates", + "subType" : "anonymous", + "subComponents" : { }, + "config" : { + "allow-default-scopes" : [ "true" ] + } + }, { + "id" : "611a0a79-84c4-4d2d-9d11-01eb58141a46", + "name" : "Trusted Hosts", + "providerId" : "trusted-hosts", + "subType" : "anonymous", + "subComponents" : { }, + "config" : { + "host-sending-registration-request-must-match" : [ "true" ], + "client-uris-must-match" : [ "true" ] + } + }, { + "id" : "2124ff56-7c6f-4095-ba92-ae335222f88c", + "name" : "Full Scope Disabled", + "providerId" : "scope", + "subType" : "anonymous", + "subComponents" : { }, + "config" : { } + }, { + "id" : "b8f02611-098d-402f-90a6-a1f09afcdb22", + "name" : "Allowed Protocol Mapper Types", + "providerId" : "allowed-protocol-mappers", + "subType" : "anonymous", + "subComponents" : { }, + "config" : { + "allowed-protocol-mapper-types" : [ "oidc-sha256-pairwise-sub-mapper", "saml-role-list-mapper", "saml-user-property-mapper", "saml-user-attribute-mapper", "oidc-usermodel-property-mapper", "oidc-address-mapper", "oidc-usermodel-attribute-mapper", "oidc-full-name-mapper" ] + } + }, { + "id" : "cca940dd-d866-44db-a211-0ed1bc682ae7", + "name" : "Allowed Protocol Mapper Types", + "providerId" : "allowed-protocol-mappers", + "subType" : "authenticated", + "subComponents" : { }, + "config" : { + "allowed-protocol-mapper-types" : [ "oidc-full-name-mapper", "oidc-usermodel-property-mapper", "saml-role-list-mapper", "oidc-address-mapper", "saml-user-property-mapper", "saml-user-attribute-mapper", "oidc-sha256-pairwise-sub-mapper", "oidc-usermodel-attribute-mapper" ] + } + }, { + "id" : "dfb48f4f-8760-419e-9337-15eb81a41fdb", + "name" : "Max Clients Limit", + "providerId" : "max-clients", + "subType" : "anonymous", + "subComponents" : { }, + "config" : { + "max-clients" : [ "200" ] + } + }, { + "id" : "dfbcfdd0-4628-4a27-927a-4a476017ca56", + "name" : "Allowed Client Scopes", + "providerId" : "allowed-client-templates", + "subType" : "authenticated", + "subComponents" : { }, + "config" : { + "allow-default-scopes" : [ "true" ] + } + }, { + "id" : "cb8bff43-35e8-4fbc-9758-02da2892008d", + "name" : "Consent Required", + "providerId" : "consent-required", + "subType" : "anonymous", + "subComponents" : { }, + "config" : { } + } ], + "org.keycloak.keys.KeyProvider" : [ { + "id" : "4fcc8a9a-8dac-4051-8c34-748bf12d011d", + "name" : "rsa-generated", + "providerId" : "rsa-generated", + "subComponents" : { }, + "config" : { + "privateKey" : [ "MIIEpAIBAAKCAQEAqpMWsm7G85cM6j1jJCxmM6UAssq+oVsfdFUNEXJPpjy4FGRo4cIzaSPjqLAHn1xrBY4wWoPQU+4h2RRurXw0ELLhCIy+LIfUU0djB/5v0s5vqzaj/v8nSKQuKT2NY04b1oNTSeUuL1/sopo8ZcvtOdD2gTlVE2qDQJvJuKxIK9D4r2h2E7Kh7GwI0VIuywi0Ehdbwm21LTZlcrrmNu1pzN8oodjz0uYRIQ/p+AJCa0b+RhFQWN40XTmW1hmERE/J21ZK8sMcmO0vKcg5v2yzDOMQUcTMVVA1MHER8Q08yTYWmyQNP6E3xobVhqwCeClzcNCw1SdNfOVTuqCiZOWQWQIDAQABAoIBAEhcYbKMYAYSPD5akGZWF30tMGCotboJyAw30HVoQvXIqGauOfgbxGeD/B4hnvox4IzYxxZ++K/CQ8Wtb05VdFjpKaHQ4xRNAvvZOt+3RoTtYl4FrgiNAYNFcve3zvUju5eC2qBsgu1CCkbom1qr6hUu2oPzaG32L3wHGsom++7p4YE7FAzfqrEhntlVouMf9oW2477823gcr4LtX3tz2uIw8ZtSGsAxPGWfunxtX9qTgEVzXUFYou94fn7u6vRbRKSqq/udjQcSRaPzdrdto98oH6Y+3rm0PKj5sTkJf8SJHJFCPTgIgnG/7VZm8ZVJAoGLLUGzNC6pgEFdYjDmhSkCgYEA+mQYOKF6f8c5axsrUXtHHoWKYjZCXnWCH+P+DJQAHFSvdPAZgLJ6odKS8tFhujh8murE5WGsVkXxqZOHwXqBHrWrpJhfO8otHPEklhjn2MAhrxWxHEVokdUJjfUzoK0S6RVni/4hZIFkj3322lW7KXdSoeM5dfe9hFKxYM8G+jMCgYEArmVGSJtOzrIAzRZCmMwXwW/rV9Hi8QQOJRy8IM5zLvQutZa3RbqGPjOnq8XjsT98L6w4tM6WsTXWmGxOKDFzPhtg3pxz0ghFC895WaDqz1EL3Wjzp0p1a0mqo8zA+vOh9h+0YQs649eOPHkdr5AvMqenpxIwhu7nG0WOK+OKl0MCgYEAzcYiza+PP6GXg3kxkWYRnXi7sFjNFFnX1aOF7gpXSPEjvKNxIf4LoB+w2lLO0L6JULstkyFBAym6H9V5lLy7jmRYqgz6/uT5TDa1DZFsQAot5HicNBKqjGaa0oo3oo155AnOLhNsl+9qmC46B1a7WKmSRC6700IFAtD+qwOYxVcCgYB1892ToietOUu9ar7kZbXziWUd4sGhzeJbS5Iahkf1jAZDn4qZyMyfKYTQc2nLKmsuO0enUsstVIKuWSKLoNaXPSFJr3vOpPU+RbeH3YSzb9eciy2xCnVceVjGrOghU8NJmqv/rv7Ht7VmRWzEn7qsgiSspWrY+KCrG2JLYP0NzQKBgQDtcbX43N7aGMs/wP2Y/PDoTPeIB6f0+D7rdoHBmK6nUxQ9V70uAyYC4WtJudrKkVKUKAK8oOgbD2Qne2t02pbYKxQQDyBGQObuyC28fA5DHl9F8j6jx2u+He1s23V9HZhxj36TOVIjdjctRCDGTg32RMLGZlli0St2hK9EWSrUvQ==" ], + "certificate" : [ "MIICmzCCAYMCBgF/LGg1XzANBgkqhkiG9w0BAQsFADARMQ8wDQYDVQQDDAZtZWRpbmEwHhcNMjIwMjI0MTU0MzIxWhcNMzIwMjI0MTU0NTAxWjARMQ8wDQYDVQQDDAZtZWRpbmEwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCqkxaybsbzlwzqPWMkLGYzpQCyyr6hWx90VQ0Rck+mPLgUZGjhwjNpI+OosAefXGsFjjBag9BT7iHZFG6tfDQQsuEIjL4sh9RTR2MH/m/Szm+rNqP+/ydIpC4pPY1jThvWg1NJ5S4vX+yimjxly+050PaBOVUTaoNAm8m4rEgr0PivaHYTsqHsbAjRUi7LCLQSF1vCbbUtNmVyuuY27WnM3yih2PPS5hEhD+n4AkJrRv5GEVBY3jRdOZbWGYRET8nbVkrywxyY7S8pyDm/bLMM4xBRxMxVUDUwcRHxDTzJNhabJA0/oTfGhtWGrAJ4KXNw0LDVJ0185VO6oKJk5ZBZAgMBAAEwDQYJKoZIhvcNAQELBQADggEBAD7yJ2HegJ3/LzAmn/JIDXH1qfZ2DgGyfFQk82tWmFnsxVaLrv0sehS7Ufza5JRsudmzL6I8LHTgYuS1zyDZ1kmEB4gIpmw+ZI4M+isIpuzGRz8B3t2y3jOnEKjykjTWWYQrINYQiqPKU8LSFwe+Uqtcqga0TqgZ2fO8tkeP74a7JVk1hd4JD50shuPIInPx5PfqN7xAUebyPeJk91RQVC4tSpIIlFyd13MFQOzocj9uB685SE6DT3vjguYod6tv7JIUme0+JZIhd67hBlZS71ebL2B0gcX7+9jKZi3oeGFX+2k5CWCHZUf7KBvY3WaxxZTlFCtRcNbWKkMUmVTjRJ8=" ], + "priority" : [ "100" ] + } + }, { + "id" : "025383fb-ebfe-4e5d-b82e-ada254fff0fc", + "name" : "hmac-generated", + "providerId" : "hmac-generated", + "subComponents" : { }, + "config" : { + "kid" : [ "672cf3de-8a6e-43a9-bbb3-3b4cda7477a5" ], + "secret" : [ "lxJLgn2fZb9sMr0OZOzv98PC9GZWRJRGrNP86lb99Ded4XqqVXPU5HGxdn6RCxXdJxZyydNbrCnzDhZSpYLJDw" ], + "priority" : [ "100" ], + "algorithm" : [ "HS256" ] + } + }, { + "id" : "9e25e190-e32d-4bc8-9c9d-f5683ba8d2c3", + "name" : "aes-generated", + "providerId" : "aes-generated", + "subComponents" : { }, + "config" : { + "kid" : [ "5fe1d9fe-f688-4e7b-8871-176b5cf97cd4" ], + "secret" : [ "o_z-vBEGNLSgbqxfgun_sg" ], + "priority" : [ "100" ] + } + } ] + }, + "internationalizationEnabled" : false, + "supportedLocales" : [ ], + "authenticationFlows" : [ { + "id" : "354f002d-8a77-4e21-bd29-5c1fc8685a0f", + "alias" : "Account verification options", + "description" : "Method with which to verity the existing account", + "providerId" : "basic-flow", + "topLevel" : false, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticator" : "idp-email-verification", + "requirement" : "ALTERNATIVE", + "priority" : 10, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "requirement" : "ALTERNATIVE", + "priority" : 20, + "flowAlias" : "Verify Existing Account by Re-authentication", + "userSetupAllowed" : false, + "autheticatorFlow" : true + } ] + }, { + "id" : "9882e4d3-d9cd-4af1-bfe8-a8f73a1fa086", + "alias" : "Authentication Options", + "description" : "Authentication options.", + "providerId" : "basic-flow", + "topLevel" : false, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticator" : "basic-auth", + "requirement" : "REQUIRED", + "priority" : 10, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "authenticator" : "basic-auth-otp", + "requirement" : "DISABLED", + "priority" : 20, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "authenticator" : "auth-spnego", + "requirement" : "DISABLED", + "priority" : 30, + "userSetupAllowed" : false, + "autheticatorFlow" : false + } ] + }, { + "id" : "8e0d8a31-5418-47ab-befb-afeb7abf9322", + "alias" : "Browser - Conditional OTP", + "description" : "Flow to determine if the OTP is required for the authentication", + "providerId" : "basic-flow", + "topLevel" : false, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticator" : "conditional-user-configured", + "requirement" : "REQUIRED", + "priority" : 10, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "authenticator" : "auth-otp-form", + "requirement" : "REQUIRED", + "priority" : 20, + "userSetupAllowed" : false, + "autheticatorFlow" : false + } ] + }, { + "id" : "676fcbe9-45bb-4455-9f12-0593ff40176f", + "alias" : "Direct Grant - Conditional OTP", + "description" : "Flow to determine if the OTP is required for the authentication", + "providerId" : "basic-flow", + "topLevel" : false, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticator" : "conditional-user-configured", + "requirement" : "REQUIRED", + "priority" : 10, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "authenticator" : "direct-grant-validate-otp", + "requirement" : "REQUIRED", + "priority" : 20, + "userSetupAllowed" : false, + "autheticatorFlow" : false + } ] + }, { + "id" : "c1bca04e-0854-4c03-8386-3877bb028606", + "alias" : "First broker login - Conditional OTP", + "description" : "Flow to determine if the OTP is required for the authentication", + "providerId" : "basic-flow", + "topLevel" : false, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticator" : "conditional-user-configured", + "requirement" : "REQUIRED", + "priority" : 10, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "authenticator" : "auth-otp-form", + "requirement" : "REQUIRED", + "priority" : 20, + "userSetupAllowed" : false, + "autheticatorFlow" : false + } ] + }, { + "id" : "4b63e991-30c5-4679-973a-0ee570dd9638", + "alias" : "Handle Existing Account", + "description" : "Handle what to do if there is existing account with same email/username like authenticated identity provider", + "providerId" : "basic-flow", + "topLevel" : false, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticator" : "idp-confirm-link", + "requirement" : "REQUIRED", + "priority" : 10, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "requirement" : "REQUIRED", + "priority" : 20, + "flowAlias" : "Account verification options", + "userSetupAllowed" : false, + "autheticatorFlow" : true + } ] + }, { + "id" : "a106d5a7-3b1e-4325-a1a6-2f2a0eeedd62", + "alias" : "Reset - Conditional OTP", + "description" : "Flow to determine if the OTP should be reset or not. Set to REQUIRED to force.", + "providerId" : "basic-flow", + "topLevel" : false, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticator" : "conditional-user-configured", + "requirement" : "REQUIRED", + "priority" : 10, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "authenticator" : "reset-otp", + "requirement" : "REQUIRED", + "priority" : 20, + "userSetupAllowed" : false, + "autheticatorFlow" : false + } ] + }, { + "id" : "d47a6e57-0348-4266-a214-89d44297aead", + "alias" : "User creation or linking", + "description" : "Flow for the existing/non-existing user alternatives", + "providerId" : "basic-flow", + "topLevel" : false, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticatorConfig" : "create unique user config", + "authenticator" : "idp-create-user-if-unique", + "requirement" : "ALTERNATIVE", + "priority" : 10, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "requirement" : "ALTERNATIVE", + "priority" : 20, + "flowAlias" : "Handle Existing Account", + "userSetupAllowed" : false, + "autheticatorFlow" : true + } ] + }, { + "id" : "245da857-b7af-437c-88d4-7398b3d2d45a", + "alias" : "Verify Existing Account by Re-authentication", + "description" : "Reauthentication of existing account", + "providerId" : "basic-flow", + "topLevel" : false, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticator" : "idp-username-password-form", + "requirement" : "REQUIRED", + "priority" : 10, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "requirement" : "CONDITIONAL", + "priority" : 20, + "flowAlias" : "First broker login - Conditional OTP", + "userSetupAllowed" : false, + "autheticatorFlow" : true + } ] + }, { + "id" : "de6e0cd8-a95c-4023-9e6c-c77fe186db35", + "alias" : "browser", + "description" : "browser based authentication", + "providerId" : "basic-flow", + "topLevel" : true, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticator" : "auth-cookie", + "requirement" : "ALTERNATIVE", + "priority" : 10, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "authenticator" : "auth-spnego", + "requirement" : "DISABLED", + "priority" : 20, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "authenticator" : "identity-provider-redirector", + "requirement" : "ALTERNATIVE", + "priority" : 25, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "requirement" : "ALTERNATIVE", + "priority" : 30, + "flowAlias" : "forms", + "userSetupAllowed" : false, + "autheticatorFlow" : true + } ] + }, { + "id" : "f6c25350-2637-4086-b681-60e5151ac98d", + "alias" : "clients", + "description" : "Base authentication for clients", + "providerId" : "client-flow", + "topLevel" : true, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticator" : "client-secret", + "requirement" : "ALTERNATIVE", + "priority" : 10, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "authenticator" : "client-jwt", + "requirement" : "ALTERNATIVE", + "priority" : 20, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "authenticator" : "client-secret-jwt", + "requirement" : "ALTERNATIVE", + "priority" : 30, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "authenticator" : "client-x509", + "requirement" : "ALTERNATIVE", + "priority" : 40, + "userSetupAllowed" : false, + "autheticatorFlow" : false + } ] + }, { + "id" : "aed0a710-7542-4431-8d52-0bb12b3a2df5", + "alias" : "direct grant", + "description" : "OpenID Connect Resource Owner Grant", + "providerId" : "basic-flow", + "topLevel" : true, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticator" : "direct-grant-validate-username", + "requirement" : "REQUIRED", + "priority" : 10, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "authenticator" : "direct-grant-validate-password", + "requirement" : "REQUIRED", + "priority" : 20, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "requirement" : "CONDITIONAL", + "priority" : 30, + "flowAlias" : "Direct Grant - Conditional OTP", + "userSetupAllowed" : false, + "autheticatorFlow" : true + } ] + }, { + "id" : "9d5ea5e5-6e65-47bc-b105-9a1a1bebac11", + "alias" : "docker auth", + "description" : "Used by Docker clients to authenticate against the IDP", + "providerId" : "basic-flow", + "topLevel" : true, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticator" : "docker-http-basic-authenticator", + "requirement" : "REQUIRED", + "priority" : 10, + "userSetupAllowed" : false, + "autheticatorFlow" : false + } ] + }, { + "id" : "8660561d-943b-4b20-9c6a-7ac9e4ca00e5", + "alias" : "first broker login", + "description" : "Actions taken after first broker login with identity provider account, which is not yet linked to any Keycloak account", + "providerId" : "basic-flow", + "topLevel" : true, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticatorConfig" : "review profile config", + "authenticator" : "idp-review-profile", + "requirement" : "REQUIRED", + "priority" : 10, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "requirement" : "REQUIRED", + "priority" : 20, + "flowAlias" : "User creation or linking", + "userSetupAllowed" : false, + "autheticatorFlow" : true + } ] + }, { + "id" : "75c3dc38-54e0-4421-8ab2-0c590437d0c5", + "alias" : "forms", + "description" : "Username, password, otp and other auth forms.", + "providerId" : "basic-flow", + "topLevel" : false, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticator" : "auth-username-password-form", + "requirement" : "REQUIRED", + "priority" : 10, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "requirement" : "CONDITIONAL", + "priority" : 20, + "flowAlias" : "Browser - Conditional OTP", + "userSetupAllowed" : false, + "autheticatorFlow" : true + } ] + }, { + "id" : "4c848397-5bfd-4a05-9ce1-b3ee4c655d52", + "alias" : "http challenge", + "description" : "An authentication flow based on challenge-response HTTP Authentication Schemes", + "providerId" : "basic-flow", + "topLevel" : true, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticator" : "no-cookie-redirect", + "requirement" : "REQUIRED", + "priority" : 10, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "requirement" : "REQUIRED", + "priority" : 20, + "flowAlias" : "Authentication Options", + "userSetupAllowed" : false, + "autheticatorFlow" : true + } ] + }, { + "id" : "9e6bae92-80ac-4714-ab65-708dc1c08d4e", + "alias" : "registration", + "description" : "registration flow", + "providerId" : "basic-flow", + "topLevel" : true, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticator" : "registration-page-form", + "requirement" : "REQUIRED", + "priority" : 10, + "flowAlias" : "registration form", + "userSetupAllowed" : false, + "autheticatorFlow" : true + } ] + }, { + "id" : "7ca21b11-88fc-44a6-915a-6690086d51fa", + "alias" : "registration form", + "description" : "registration form", + "providerId" : "form-flow", + "topLevel" : false, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticator" : "registration-user-creation", + "requirement" : "REQUIRED", + "priority" : 20, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "authenticator" : "registration-profile-action", + "requirement" : "REQUIRED", + "priority" : 40, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "authenticator" : "registration-password-action", + "requirement" : "REQUIRED", + "priority" : 50, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "authenticator" : "registration-recaptcha-action", + "requirement" : "DISABLED", + "priority" : 60, + "userSetupAllowed" : false, + "autheticatorFlow" : false + } ] + }, { + "id" : "91b8df64-8790-4cc7-916a-549144cd1cb1", + "alias" : "reset credentials", + "description" : "Reset credentials for a user if they forgot their password or something", + "providerId" : "basic-flow", + "topLevel" : true, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticator" : "reset-credentials-choose-user", + "requirement" : "REQUIRED", + "priority" : 10, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "authenticator" : "reset-credential-email", + "requirement" : "REQUIRED", + "priority" : 20, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "authenticator" : "reset-password", + "requirement" : "REQUIRED", + "priority" : 30, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "requirement" : "CONDITIONAL", + "priority" : 40, + "flowAlias" : "Reset - Conditional OTP", + "userSetupAllowed" : false, + "autheticatorFlow" : true + } ] + }, { + "id" : "15dce0c8-895b-4e06-a405-707be49326b5", + "alias" : "saml ecp", + "description" : "SAML ECP Profile Authentication Flow", + "providerId" : "basic-flow", + "topLevel" : true, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticator" : "http-basic-authenticator", + "requirement" : "REQUIRED", + "priority" : 10, + "userSetupAllowed" : false, + "autheticatorFlow" : false + } ] + } ], + "authenticatorConfig" : [ { + "id" : "a538254e-ef65-4316-b432-2b9f37b842a0", + "alias" : "create unique user config", + "config" : { + "require.password.update.after.registration" : "false" + } + }, { + "id" : "218ba7cc-4f94-4782-802c-819ee6054f56", + "alias" : "review profile config", + "config" : { + "update.profile.on.first.login" : "missing" + } + } ], + "requiredActions" : [ { + "alias" : "CONFIGURE_TOTP", + "name" : "Configure OTP", + "providerId" : "CONFIGURE_TOTP", + "enabled" : true, + "defaultAction" : false, + "priority" : 10, + "config" : { } + }, { + "alias" : "terms_and_conditions", + "name" : "Terms and Conditions", + "providerId" : "terms_and_conditions", + "enabled" : false, + "defaultAction" : false, + "priority" : 20, + "config" : { } + }, { + "alias" : "UPDATE_PASSWORD", + "name" : "Update Password", + "providerId" : "UPDATE_PASSWORD", + "enabled" : true, + "defaultAction" : false, + "priority" : 30, + "config" : { } + }, { + "alias" : "UPDATE_PROFILE", + "name" : "Update Profile", + "providerId" : "UPDATE_PROFILE", + "enabled" : true, + "defaultAction" : false, + "priority" : 40, + "config" : { } + }, { + "alias" : "VERIFY_EMAIL", + "name" : "Verify Email", + "providerId" : "VERIFY_EMAIL", + "enabled" : true, + "defaultAction" : false, + "priority" : 50, + "config" : { } + }, { + "alias" : "delete_account", + "name" : "Delete Account", + "providerId" : "delete_account", + "enabled" : false, + "defaultAction" : false, + "priority" : 60, + "config" : { } + }, { + "alias" : "update_user_locale", + "name" : "Update User Locale", + "providerId" : "update_user_locale", + "enabled" : true, + "defaultAction" : false, + "priority" : 1000, + "config" : { } + } ], + "browserFlow" : "browser", + "registrationFlow" : "registration", + "directGrantFlow" : "direct grant", + "resetCredentialsFlow" : "reset credentials", + "clientAuthenticationFlow" : "clients", + "dockerAuthenticationFlow" : "docker auth", + "attributes" : { + "clientOfflineSessionMaxLifespan" : "0", + "clientSessionIdleTimeout" : "0", + "clientSessionMaxLifespan" : "0", + "frontendUrl" : "", + "clientOfflineSessionIdleTimeout" : "0" + }, + "keycloakVersion" : "12.0.4", + "userManagedAccessAllowed" : false } \ No newline at end of file diff --git a/data/keycloak-setup/coc.poc.medina.esilab.org/clients.json b/data/keycloak-setup/coc.poc.medina.esilab.org/clients.json deleted file mode 100755 index 0bd5ce5916195dc4e6a019fac791c0b1424ef967..0000000000000000000000000000000000000000 --- a/data/keycloak-setup/coc.poc.medina.esilab.org/clients.json +++ /dev/null @@ -1,2214 +0,0 @@ -{ - "id": "jhipster", - "realm": "jhipster", - "notBefore": 0, - "revokeRefreshToken": false, - "refreshTokenMaxReuse": 0, - "accessTokenLifespan": 300, - "accessTokenLifespanForImplicitFlow": 900, - "ssoSessionIdleTimeout": 1800, - "ssoSessionMaxLifespan": 36000, - "ssoSessionIdleTimeoutRememberMe": 0, - "ssoSessionMaxLifespanRememberMe": 0, - "offlineSessionIdleTimeout": 2592000, - "offlineSessionMaxLifespanEnabled": false, - "offlineSessionMaxLifespan": 5184000, - "clientSessionIdleTimeout": 0, - "clientSessionMaxLifespan": 0, - "clientOfflineSessionIdleTimeout": 0, - "clientOfflineSessionMaxLifespan": 0, - "accessCodeLifespan": 60, - "accessCodeLifespanUserAction": 300, - "accessCodeLifespanLogin": 1800, - "actionTokenGeneratedByAdminLifespan": 43200, - "actionTokenGeneratedByUserLifespan": 300, - "enabled": true, - "sslRequired": "external", - "registrationAllowed": false, - "registrationEmailAsUsername": false, - "rememberMe": false, - "verifyEmail": false, - "loginWithEmailAllowed": true, - "duplicateEmailsAllowed": false, - "resetPasswordAllowed": false, - "editUsernameAllowed": false, - "bruteForceProtected": false, - "permanentLockout": false, - "maxFailureWaitSeconds": 900, - "minimumQuickLoginWaitSeconds": 60, - "waitIncrementSeconds": 60, - "quickLoginCheckMilliSeconds": 1000, - "maxDeltaTimeSeconds": 43200, - "failureFactor": 30, - "roles": { - "realm": [ - { - "id": "8e986fb5-dafb-43bf-a7c2-7e57572d3d80", - "name": "ROLE_ADMIN", - "description": "Jhipster administrator role", - "composite": false, - "clientRole": false, - "containerId": "jhipster", - "attributes": {} - }, - { - "id": "e1b19afd-f612-4a79-bdf8-26a99b89b10b", - "name": "offline_access", - "description": "${role_offline-access}", - "composite": false, - "clientRole": false, - "containerId": "jhipster", - "attributes": {} - }, - { - "id": "ec5705e1-fc1d-4d21-8364-abd3bd4efcd0", - "name": "ROLE_USER", - "description": "Jhipster user role", - "composite": false, - "clientRole": false, - "containerId": "jhipster", - "attributes": {} - }, - { - "id": "2eec61d0-9581-4dbf-8c7b-f32dc5fac3ce", - "name": "uma_authorization", - "description": "${role_uma_authorization}", - "composite": false, - "clientRole": false, - "containerId": "jhipster", - "attributes": {} - } - ], - "client": { - "internal": [], - "realm-management": [ - { - "id": "a6249a12-d76c-4514-b137-e3018b243e25", - "name": "manage-authorization", - "description": "${role_manage-authorization}", - "composite": false, - "clientRole": true, - "containerId": "898488c8-e260-41c5-a463-7ceea14d587a", - "attributes": {} - }, - { - "id": "a28bc401-c5ad-4fab-aef4-42629988c10b", - "name": "view-realm", - "description": "${role_view-realm}", - "composite": false, - "clientRole": true, - "containerId": "898488c8-e260-41c5-a463-7ceea14d587a", - "attributes": {} - }, - { - "id": "464bca1f-136f-45de-a7fc-b976a185ce7e", - "name": "view-users", - "description": "${role_view-users}", - "composite": true, - "composites": { - "client": { - "realm-management": ["query-users", "query-groups"] - } - }, - "clientRole": true, - "containerId": "898488c8-e260-41c5-a463-7ceea14d587a", - "attributes": {} - }, - { - "id": "98c2fa77-d3c8-4f68-b9f4-b79f87efd4a9", - "name": "query-users", - "description": "${role_query-users}", - "composite": false, - "clientRole": true, - "containerId": "898488c8-e260-41c5-a463-7ceea14d587a", - "attributes": {} - }, - { - "id": "6b82bfdb-c8de-4274-95b4-a683eb4ead50", - "name": "view-identity-providers", - "description": "${role_view-identity-providers}", - "composite": false, - "clientRole": true, - "containerId": "898488c8-e260-41c5-a463-7ceea14d587a", - "attributes": {} - }, - { - "id": "3c6b9cfe-80c4-41d5-a5ac-0cadebacfc8d", - "name": "manage-identity-providers", - "description": "${role_manage-identity-providers}", - "composite": false, - "clientRole": true, - "containerId": "898488c8-e260-41c5-a463-7ceea14d587a", - "attributes": {} - }, - { - "id": "23676fb8-235a-4e54-a0d0-9bed1ccbe2f8", - "name": "query-groups", - "description": "${role_query-groups}", - "composite": false, - "clientRole": true, - "containerId": "898488c8-e260-41c5-a463-7ceea14d587a", - "attributes": {} - }, - { - "id": "b71fe952-bb06-4e4a-91ef-2d2714f770e1", - "name": "impersonation", - "description": "${role_impersonation}", - "composite": false, - "clientRole": true, - "containerId": "898488c8-e260-41c5-a463-7ceea14d587a", - "attributes": {} - }, - { - "id": "0813cbd0-c73d-469d-a54d-84a865c302af", - "name": "manage-events", - "description": "${role_manage-events}", - "composite": false, - "clientRole": true, - "containerId": "898488c8-e260-41c5-a463-7ceea14d587a", - "attributes": {} - }, - { - "id": "c7a4f4c1-9089-458c-a765-f6d22ea94690", - "name": "view-authorization", - "description": "${role_view-authorization}", - "composite": false, - "clientRole": true, - "containerId": "898488c8-e260-41c5-a463-7ceea14d587a", - "attributes": {} - }, - { - "id": "2e1bc884-e9d3-45d2-909c-2777a78ca8ae", - "name": "manage-realm", - "description": "${role_manage-realm}", - "composite": false, - "clientRole": true, - "containerId": "898488c8-e260-41c5-a463-7ceea14d587a", - "attributes": {} - }, - { - "id": "0a05451e-7d64-4e87-b585-f1143ce5752e", - "name": "query-clients", - "description": "${role_query-clients}", - "composite": false, - "clientRole": true, - "containerId": "898488c8-e260-41c5-a463-7ceea14d587a", - "attributes": {} - }, - { - "id": "dfad4d08-6d75-42b6-8699-4886e47bc464", - "name": "view-events", - "description": "${role_view-events}", - "composite": false, - "clientRole": true, - "containerId": "898488c8-e260-41c5-a463-7ceea14d587a", - "attributes": {} - }, - { - "id": "392ed0a3-f6ad-48a1-b201-648037d2b4bd", - "name": "realm-admin", - "description": "${role_realm-admin}", - "composite": true, - "composites": { - "client": { - "realm-management": [ - "manage-authorization", - "view-realm", - "view-users", - "query-users", - "manage-identity-providers", - "view-identity-providers", - "query-groups", - "impersonation", - "manage-events", - "query-clients", - "manage-realm", - "view-authorization", - "view-events", - "view-clients", - "create-client", - "manage-clients", - "manage-users", - "query-realms" - ] - } - }, - "clientRole": true, - "containerId": "898488c8-e260-41c5-a463-7ceea14d587a", - "attributes": {} - }, - { - "id": "d7efdf61-affb-42a1-bcb0-b2c30d87a39e", - "name": "view-clients", - "description": "${role_view-clients}", - "composite": true, - "composites": { - "client": { - "realm-management": ["query-clients"] - } - }, - "clientRole": true, - "containerId": "898488c8-e260-41c5-a463-7ceea14d587a", - "attributes": {} - }, - { - "id": "14da8e56-5c8b-4764-96da-250449a32fd4", - "name": "create-client", - "description": "${role_create-client}", - "composite": false, - "clientRole": true, - "containerId": "898488c8-e260-41c5-a463-7ceea14d587a", - "attributes": {} - }, - { - "id": "88e6a9f5-259c-487d-af35-2a98da066816", - "name": "manage-clients", - "description": "${role_manage-clients}", - "composite": false, - "clientRole": true, - "containerId": "898488c8-e260-41c5-a463-7ceea14d587a", - "attributes": {} - }, - { - "id": "932273a7-c02b-43db-81c5-96a0dc45e454", - "name": "manage-users", - "description": "${role_manage-users}", - "composite": false, - "clientRole": true, - "containerId": "898488c8-e260-41c5-a463-7ceea14d587a", - "attributes": {} - }, - { - "id": "e3edf335-cec5-4012-a00d-fcac045052e1", - "name": "query-realms", - "description": "${role_query-realms}", - "composite": false, - "clientRole": true, - "containerId": "898488c8-e260-41c5-a463-7ceea14d587a", - "attributes": {} - } - ], - "jhipster-control-center": [], - "security-admin-console": [], - "web_app": [], - "admin-cli": [], - "account-console": [], - "jhipster-registry": [], - "broker": [ - { - "id": "5b08a930-9f1d-4030-ae75-92c1e4c9352c", - "name": "read-token", - "description": "${role_read-token}", - "composite": false, - "clientRole": true, - "containerId": "88e1225b-f0b9-46ba-8efd-f2c10ce23058", - "attributes": {} - } - ], - "account": [ - { - "id": "a88c56b8-6bc9-418a-92bc-7a17e7707f60", - "name": "view-profile", - "description": "${role_view-profile}", - "composite": false, - "clientRole": true, - "containerId": "6cc5a716-0880-47dc-b714-9a4967246b2f", - "attributes": {} - }, - { - "id": "0cb954ab-987f-482a-b2d7-0d481ba1d532", - "name": "view-applications", - "description": "${role_view-applications}", - "composite": false, - "clientRole": true, - "containerId": "6cc5a716-0880-47dc-b714-9a4967246b2f", - "attributes": {} - }, - { - "id": "6450156d-7526-48f2-8ea0-bb1e51f9eefa", - "name": "manage-account", - "description": "${role_manage-account}", - "composite": true, - "composites": { - "client": { - "account": ["manage-account-links"] - } - }, - "clientRole": true, - "containerId": "6cc5a716-0880-47dc-b714-9a4967246b2f", - "attributes": {} - }, - { - "id": "e5b2ba76-4c36-4ba1-b210-89a1ac3c6bbe", - "name": "view-consent", - "description": "${role_view-consent}", - "composite": false, - "clientRole": true, - "containerId": "6cc5a716-0880-47dc-b714-9a4967246b2f", - "attributes": {} - }, - { - "id": "35537940-67a6-4217-881b-1ff98109b374", - "name": "manage-consent", - "description": "${role_manage-consent}", - "composite": true, - "composites": { - "client": { - "account": ["view-consent"] - } - }, - "clientRole": true, - "containerId": "6cc5a716-0880-47dc-b714-9a4967246b2f", - "attributes": {} - }, - { - "id": "5ebf404b-7805-4da2-abb4-9db7d3b36120", - "name": "delete-account", - "description": "${role_delete-account}", - "composite": false, - "clientRole": true, - "containerId": "6cc5a716-0880-47dc-b714-9a4967246b2f", - "attributes": {} - }, - { - "id": "a7f45fab-19c3-4c48-aca3-85f828ca0fed", - "name": "manage-account-links", - "description": "${role_manage-account-links}", - "composite": false, - "clientRole": true, - "containerId": "6cc5a716-0880-47dc-b714-9a4967246b2f", - "attributes": {} - } - ] - } - }, - "groups": [ - { - "id": "afb0c768-ab0f-454c-a8ea-bc9e70b50248", - "name": "Admins", - "path": "/Admins", - "attributes": {}, - "realmRoles": ["ROLE_ADMIN"], - "clientRoles": {}, - "subGroups": [] - }, - { - "id": "672767bb-4ab0-4d37-93a1-9b6c2416b6b2", - "name": "Users", - "path": "/Users", - "attributes": {}, - "realmRoles": ["ROLE_USER"], - "clientRoles": {}, - "subGroups": [] - } - ], - "defaultRoles": ["uma_authorization", "offline_access"], - "requiredCredentials": ["password"], - "otpPolicyType": "totp", - "otpPolicyAlgorithm": "HmacSHA1", - "otpPolicyInitialCounter": 0, - "otpPolicyDigits": 6, - "otpPolicyLookAheadWindow": 1, - "otpPolicyPeriod": 30, - "otpSupportedApplications": ["FreeOTP", "Google Authenticator"], - "webAuthnPolicyRpEntityName": "keycloak", - "webAuthnPolicySignatureAlgorithms": ["ES256"], - "webAuthnPolicyRpId": "", - "webAuthnPolicyAttestationConveyancePreference": "not specified", - "webAuthnPolicyAuthenticatorAttachment": "not specified", - "webAuthnPolicyRequireResidentKey": "not specified", - "webAuthnPolicyUserVerificationRequirement": "not specified", - "webAuthnPolicyCreateTimeout": 0, - "webAuthnPolicyAvoidSameAuthenticatorRegister": false, - "webAuthnPolicyAcceptableAaguids": [], - "webAuthnPolicyPasswordlessRpEntityName": "keycloak", - "webAuthnPolicyPasswordlessSignatureAlgorithms": ["ES256"], - "webAuthnPolicyPasswordlessRpId": "", - "webAuthnPolicyPasswordlessAttestationConveyancePreference": "not specified", - "webAuthnPolicyPasswordlessAuthenticatorAttachment": "not specified", - "webAuthnPolicyPasswordlessRequireResidentKey": "not specified", - "webAuthnPolicyPasswordlessUserVerificationRequirement": "not specified", - "webAuthnPolicyPasswordlessCreateTimeout": 0, - "webAuthnPolicyPasswordlessAvoidSameAuthenticatorRegister": false, - "webAuthnPolicyPasswordlessAcceptableAaguids": [], - "users": [ - { - "id": "f742ba6f-1d8a-4dec-bf15-e02dab508283", - "createdTimestamp": 1598681172054, - "username": "service-account-internal", - "enabled": true, - "totp": false, - "emailVerified": false, - "serviceAccountClientId": "internal", - "disableableCredentialTypes": [], - "requiredActions": [], - "realmRoles": ["offline_access", "uma_authorization"], - "clientRoles": { - "account": ["view-profile", "manage-account"] - }, - "notBefore": 0, - "groups": [] - } - ], - "scopeMappings": [ - { - "clientScope": "offline_access", - "roles": ["offline_access"] - } - ], - "clientScopeMappings": { - "account": [ - { - "client": "account-console", - "roles": ["manage-account"] - } - ] - }, - "clients": [ - { - "id": "6cc5a716-0880-47dc-b714-9a4967246b2f", - "clientId": "account", - "name": "${client_account}", - "rootUrl": "${authBaseUrl}", - "baseUrl": "/realms/jhipster/account/", - "surrogateAuthRequired": false, - "enabled": true, - "alwaysDisplayInConsole": false, - "clientAuthenticatorType": "client-secret", - "secret": "**********", - "defaultRoles": ["manage-account", "view-profile"], - "redirectUris": ["/realms/jhipster/account/*"], - "webOrigins": [], - "notBefore": 0, - "bearerOnly": false, - "consentRequired": false, - "standardFlowEnabled": true, - "implicitFlowEnabled": false, - "directAccessGrantsEnabled": false, - "serviceAccountsEnabled": false, - "publicClient": false, - "frontchannelLogout": false, - "protocol": "openid-connect", - "attributes": {}, - "authenticationFlowBindingOverrides": {}, - "fullScopeAllowed": false, - "nodeReRegistrationTimeout": 0, - "defaultClientScopes": ["web-origins", "role_list", "profile", "roles", "email"], - "optionalClientScopes": ["address", "phone", "offline_access", "microprofile-jwt"] - }, - { - "id": "fb0a4870-06db-4f9d-9d44-baf51a00cc34", - "clientId": "account-console", - "name": "${client_account-console}", - "rootUrl": "${authBaseUrl}", - "baseUrl": "/realms/jhipster/account/", - "surrogateAuthRequired": false, - "enabled": true, - "alwaysDisplayInConsole": false, - "clientAuthenticatorType": "client-secret", - "secret": "**********", - "redirectUris": ["/realms/jhipster/account/*"], - "webOrigins": [], - "notBefore": 0, - "bearerOnly": false, - "consentRequired": false, - "standardFlowEnabled": true, - "implicitFlowEnabled": false, - "directAccessGrantsEnabled": false, - "serviceAccountsEnabled": false, - "publicClient": true, - "frontchannelLogout": false, - "protocol": "openid-connect", - "attributes": { - "pkce.code.challenge.method": "S256" - }, - "authenticationFlowBindingOverrides": {}, - "fullScopeAllowed": false, - "nodeReRegistrationTimeout": 0, - "protocolMappers": [ - { - "id": "c5c4ebe5-d009-4f96-b143-1b36d770eafb", - "name": "audience resolve", - "protocol": "openid-connect", - "protocolMapper": "oidc-audience-resolve-mapper", - "consentRequired": false, - "config": {} - } - ], - "defaultClientScopes": ["web-origins", "role_list", "profile", "roles", "email"], - "optionalClientScopes": ["address", "phone", "offline_access", "microprofile-jwt"] - }, - { - "id": "bb166356-838d-445e-94e3-9330ad7ab51b", - "clientId": "admin-cli", - "name": "${client_admin-cli}", - "surrogateAuthRequired": false, - "enabled": true, - "alwaysDisplayInConsole": false, - "clientAuthenticatorType": "client-secret", - "secret": "**********", - "redirectUris": [], - "webOrigins": [], - "notBefore": 0, - "bearerOnly": false, - "consentRequired": false, - "standardFlowEnabled": false, - "implicitFlowEnabled": false, - "directAccessGrantsEnabled": true, - "serviceAccountsEnabled": false, - "publicClient": true, - "frontchannelLogout": false, - "protocol": "openid-connect", - "attributes": {}, - "authenticationFlowBindingOverrides": {}, - "fullScopeAllowed": false, - "nodeReRegistrationTimeout": 0, - "defaultClientScopes": ["web-origins", "role_list", "profile", "roles", "email"], - "optionalClientScopes": ["address", "phone", "offline_access", "microprofile-jwt"] - }, - { - "id": "88e1225b-f0b9-46ba-8efd-f2c10ce23058", - "clientId": "broker", - "name": "${client_broker}", - "surrogateAuthRequired": false, - "enabled": true, - "alwaysDisplayInConsole": false, - "clientAuthenticatorType": "client-secret", - "secret": "**********", - "redirectUris": [], - "webOrigins": [], - "notBefore": 0, - "bearerOnly": false, - "consentRequired": false, - "standardFlowEnabled": true, - "implicitFlowEnabled": false, - "directAccessGrantsEnabled": false, - "serviceAccountsEnabled": false, - "publicClient": false, - "frontchannelLogout": false, - "protocol": "openid-connect", - "attributes": {}, - "authenticationFlowBindingOverrides": {}, - "fullScopeAllowed": false, - "nodeReRegistrationTimeout": 0, - "defaultClientScopes": ["web-origins", "role_list", "profile", "roles", "email"], - "optionalClientScopes": ["address", "phone", "offline_access", "microprofile-jwt"] - }, - { - "id": "10e6ea34-9f1e-49ef-8e28-7eb851459694", - "clientId": "internal", - "surrogateAuthRequired": false, - "enabled": true, - "alwaysDisplayInConsole": false, - "clientAuthenticatorType": "client-secret", - "secret": "internal", - "redirectUris": [], - "webOrigins": [], - "notBefore": 0, - "bearerOnly": false, - "consentRequired": false, - "standardFlowEnabled": false, - "implicitFlowEnabled": false, - "directAccessGrantsEnabled": false, - "serviceAccountsEnabled": true, - "publicClient": false, - "frontchannelLogout": false, - "protocol": "openid-connect", - "attributes": { - "saml.assertion.signature": "false", - "saml.force.post.binding": "false", - "saml.multivalued.roles": "false", - "saml.encrypt": "false", - "saml.server.signature": "false", - "saml.server.signature.keyinfo.ext": "false", - "exclude.session.state.from.auth.response": "false", - "saml_force_name_id_format": "false", - "saml.client.signature": "false", - "tls.client.certificate.bound.access.tokens": "false", - "saml.authnstatement": "false", - "display.on.consent.screen": "false", - "saml.onetimeuse.condition": "false" - }, - "authenticationFlowBindingOverrides": {}, - "fullScopeAllowed": true, - "nodeReRegistrationTimeout": -1, - "protocolMappers": [ - { - "id": "ff2f50b4-5409-4789-bdda-fe731f14fbff", - "name": "Client IP Address", - "protocol": "openid-connect", - "protocolMapper": "oidc-usersessionmodel-note-mapper", - "consentRequired": false, - "config": { - "user.session.note": "clientAddress", - "userinfo.token.claim": "true", - "id.token.claim": "true", - "access.token.claim": "true", - "claim.name": "clientAddress", - "jsonType.label": "String" - } - }, - { - "id": "72f9ae74-9e95-4b7b-a709-5086137410bb", - "name": "Client ID", - "protocol": "openid-connect", - "protocolMapper": "oidc-usersessionmodel-note-mapper", - "consentRequired": false, - "config": { - "user.session.note": "clientId", - "userinfo.token.claim": "true", - "id.token.claim": "true", - "access.token.claim": "true", - "claim.name": "clientId", - "jsonType.label": "String" - } - }, - { - "id": "029bf6c8-5a19-4798-984c-bdb205d752d5", - "name": "Client Host", - "protocol": "openid-connect", - "protocolMapper": "oidc-usersessionmodel-note-mapper", - "consentRequired": false, - "config": { - "user.session.note": "clientHost", - "userinfo.token.claim": "true", - "id.token.claim": "true", - "access.token.claim": "true", - "claim.name": "clientHost", - "jsonType.label": "String" - } - } - ], - "defaultClientScopes": ["web-origins", "role_list", "profile", "roles", "email"], - "optionalClientScopes": ["address", "phone", "offline_access", "microprofile-jwt"] - }, - { - "id": "1acf7ad0-68cb-46a6-a3e4-8b2f2abecb85", - "clientId": "jhipster-control-center", - "rootUrl": "http://localhost:7419", - "adminUrl": "http://localhost:7419", - "surrogateAuthRequired": false, - "enabled": true, - "alwaysDisplayInConsole": false, - "clientAuthenticatorType": "client-secret", - "secret": "jhipster-control-center", - "redirectUris": ["dev.localhost.ionic:*", "http://127.0.0.1:*", "http://localhost:*", "https://127.0.0.1:*", "https://localhost:*"], - "webOrigins": ["*"], - "notBefore": 0, - "bearerOnly": false, - "consentRequired": false, - "standardFlowEnabled": true, - "implicitFlowEnabled": true, - "directAccessGrantsEnabled": false, - "serviceAccountsEnabled": false, - "publicClient": true, - "frontchannelLogout": false, - "protocol": "openid-connect", - "attributes": { - "saml.assertion.signature": "false", - "saml.force.post.binding": "false", - "saml.multivalued.roles": "false", - "saml.encrypt": "false", - "saml.server.signature": "false", - "saml.server.signature.keyinfo.ext": "false", - "exclude.session.state.from.auth.response": "false", - "saml_force_name_id_format": "false", - "saml.client.signature": "false", - "tls.client.certificate.bound.access.tokens": "false", - "saml.authnstatement": "false", - "display.on.consent.screen": "false", - "saml.onetimeuse.condition": "false" - }, - "authenticationFlowBindingOverrides": {}, - "fullScopeAllowed": true, - "nodeReRegistrationTimeout": -1, - "defaultClientScopes": ["web-origins", "jhipster", "role_list", "profile", "roles", "email"], - "optionalClientScopes": ["address", "phone", "offline_access", "microprofile-jwt"] - }, - { - "id": "9057870f-8775-448d-a194-1d4e122f44d5", - "clientId": "jhipster-registry", - "rootUrl": "https://registry.poc.medina.esilab.org.nip.io:8443", - "adminUrl": "https://registry.poc.medina.esilab.org.nip.io:8443", - "surrogateAuthRequired": false, - "enabled": true, - "alwaysDisplayInConsole": false, - "clientAuthenticatorType": "client-secret", - "secret": "jhipster-registry", - "redirectUris": ["*"], - "webOrigins": ["*"], - "notBefore": 0, - "bearerOnly": false, - "consentRequired": false, - "standardFlowEnabled": true, - "implicitFlowEnabled": false, - "directAccessGrantsEnabled": true, - "serviceAccountsEnabled": false, - "publicClient": true, - "frontchannelLogout": false, - "protocol": "openid-connect", - "attributes": { - "saml.assertion.signature": "false", - "saml.force.post.binding": "false", - "saml.multivalued.roles": "false", - "saml.encrypt": "false", - "saml.server.signature": "false", - "saml.server.signature.keyinfo.ext": "false", - "exclude.session.state.from.auth.response": "false", - "saml_force_name_id_format": "false", - "saml.client.signature": "false", - "tls.client.certificate.bound.access.tokens": "false", - "saml.authnstatement": "false", - "display.on.consent.screen": "false", - "saml.onetimeuse.condition": "false" - }, - "authenticationFlowBindingOverrides": {}, - "fullScopeAllowed": true, - "nodeReRegistrationTimeout": -1, - "defaultClientScopes": ["web-origins", "jhipster", "role_list", "roles", "profile", "email"], - "optionalClientScopes": ["address", "phone", "offline_access", "microprofile-jwt"] - }, - { - "id": "898488c8-e260-41c5-a463-7ceea14d587a", - "clientId": "realm-management", - "name": "${client_realm-management}", - "surrogateAuthRequired": false, - "enabled": true, - "alwaysDisplayInConsole": false, - "clientAuthenticatorType": "client-secret", - "secret": "**********", - "redirectUris": [], - "webOrigins": [], - "notBefore": 0, - "bearerOnly": true, - "consentRequired": false, - "standardFlowEnabled": true, - "implicitFlowEnabled": false, - "directAccessGrantsEnabled": false, - "serviceAccountsEnabled": false, - "publicClient": false, - "frontchannelLogout": false, - "protocol": "openid-connect", - "attributes": {}, - "authenticationFlowBindingOverrides": {}, - "fullScopeAllowed": false, - "nodeReRegistrationTimeout": 0, - "defaultClientScopes": ["web-origins", "role_list", "profile", "roles", "email"], - "optionalClientScopes": ["address", "phone", "offline_access", "microprofile-jwt"] - }, - { - "id": "989d2b96-b820-4f9b-aa17-55e6488b08c8", - "clientId": "security-admin-console", - "name": "${client_security-admin-console}", - "rootUrl": "${authAdminUrl}", - "baseUrl": "/admin/jhipster/console/", - "surrogateAuthRequired": false, - "enabled": true, - "alwaysDisplayInConsole": false, - "clientAuthenticatorType": "client-secret", - "secret": "**********", - "redirectUris": ["/admin/jhipster/console/*"], - "webOrigins": ["+"], - "notBefore": 0, - "bearerOnly": false, - "consentRequired": false, - "standardFlowEnabled": true, - "implicitFlowEnabled": false, - "directAccessGrantsEnabled": false, - "serviceAccountsEnabled": false, - "publicClient": true, - "frontchannelLogout": false, - "protocol": "openid-connect", - "attributes": { - "pkce.code.challenge.method": "S256" - }, - "authenticationFlowBindingOverrides": {}, - "fullScopeAllowed": false, - "nodeReRegistrationTimeout": 0, - "protocolMappers": [ - { - "id": "5fd34289-c644-411a-874c-849475d9d102", - "name": "locale", - "protocol": "openid-connect", - "protocolMapper": "oidc-usermodel-attribute-mapper", - "consentRequired": false, - "config": { - "userinfo.token.claim": "true", - "user.attribute": "locale", - "id.token.claim": "true", - "access.token.claim": "true", - "claim.name": "locale", - "jsonType.label": "String" - } - } - ], - "defaultClientScopes": ["web-origins", "role_list", "profile", "roles", "email"], - "optionalClientScopes": ["address", "phone", "offline_access", "microprofile-jwt"] - }, - { - "id": "6e8deddb-b4d6-4e2e-b389-b397d3f74fcd", - "clientId": "web_app", - "rootUrl": "https://coc.poc.medina.esilab.org.nip.io:8443", - "adminUrl": "https://coc.poc.medina.esilab.org.nip.io:8443", - "surrogateAuthRequired": false, - "enabled": true, - "alwaysDisplayInConsole": false, - "clientAuthenticatorType": "client-secret", - "secret": "web_app", - "redirectUris": ["*"], - "webOrigins": ["*"], - "notBefore": 0, - "bearerOnly": false, - "consentRequired": false, - "standardFlowEnabled": true, - "implicitFlowEnabled": true, - "directAccessGrantsEnabled": false, - "serviceAccountsEnabled": false, - "publicClient": true, - "frontchannelLogout": false, - "protocol": "openid-connect", - "attributes": { - "saml.assertion.signature": "false", - "saml.force.post.binding": "false", - "saml.multivalued.roles": "false", - "saml.encrypt": "false", - "saml.server.signature": "false", - "saml.server.signature.keyinfo.ext": "false", - "exclude.session.state.from.auth.response": "false", - "saml_force_name_id_format": "false", - "saml.client.signature": "false", - "tls.client.certificate.bound.access.tokens": "false", - "saml.authnstatement": "false", - "display.on.consent.screen": "false", - "saml.onetimeuse.condition": "false" - }, - "authenticationFlowBindingOverrides": {}, - "fullScopeAllowed": true, - "nodeReRegistrationTimeout": -1, - "defaultClientScopes": ["web-origins", "jhipster", "role_list", "profile", "roles", "email"], - "optionalClientScopes": ["address", "phone", "offline_access", "microprofile-jwt"] - } - ], - "clientScopes": [ - { - "id": "52d73c82-423c-44a8-b2ec-1e13f4cd6065", - "name": "address", - "description": "OpenID Connect built-in scope: address", - "protocol": "openid-connect", - "attributes": { - "include.in.token.scope": "true", - "display.on.consent.screen": "true", - "consent.screen.text": "${addressScopeConsentText}" - }, - "protocolMappers": [ - { - "id": "98230752-36b9-4755-8661-a7de1926d0d4", - "name": "address", - "protocol": "openid-connect", - "protocolMapper": "oidc-address-mapper", - "consentRequired": false, - "config": { - "user.attribute.formatted": "formatted", - "user.attribute.country": "country", - "user.attribute.postal_code": "postal_code", - "userinfo.token.claim": "true", - "user.attribute.street": "street", - "id.token.claim": "true", - "user.attribute.region": "region", - "access.token.claim": "true", - "user.attribute.locality": "locality" - } - } - ] - }, - { - "id": "44d24405-87bf-4b37-a627-e3fdabb93f50", - "name": "email", - "description": "OpenID Connect built-in scope: email", - "protocol": "openid-connect", - "attributes": { - "include.in.token.scope": "true", - "display.on.consent.screen": "true", - "consent.screen.text": "${emailScopeConsentText}" - }, - "protocolMappers": [ - { - "id": "36800088-6d17-4c18-93e8-2bc93901d8b7", - "name": "email", - "protocol": "openid-connect", - "protocolMapper": "oidc-usermodel-property-mapper", - "consentRequired": false, - "config": { - "userinfo.token.claim": "true", - "user.attribute": "email", - "id.token.claim": "true", - "access.token.claim": "true", - "claim.name": "email", - "jsonType.label": "String" - } - }, - { - "id": "3ea34afd-30b5-4e5d-a836-dbda439dce6f", - "name": "email verified", - "protocol": "openid-connect", - "protocolMapper": "oidc-usermodel-property-mapper", - "consentRequired": false, - "config": { - "userinfo.token.claim": "true", - "user.attribute": "emailVerified", - "id.token.claim": "true", - "access.token.claim": "true", - "claim.name": "email_verified", - "jsonType.label": "boolean" - } - } - ] - }, - { - "id": "9816de82-24b7-42fe-a85a-1264868ec293", - "name": "jhipster", - "description": "Jhipster specific claims", - "protocol": "openid-connect", - "attributes": { - "include.in.token.scope": "false", - "display.on.consent.screen": "false" - }, - "protocolMappers": [ - { - "id": "0f9c9347-aad6-4bff-94f4-e11937f2ad33", - "name": "langKey", - "protocol": "openid-connect", - "protocolMapper": "oidc-usermodel-attribute-mapper", - "consentRequired": false, - "config": { - "userinfo.token.claim": "true", - "user.attribute": "langKey", - "id.token.claim": "false", - "access.token.claim": "false", - "claim.name": "langKey", - "jsonType.label": "String" - } - }, - { - "id": "69729907-8d1c-4961-81c0-91766f548cc9", - "name": "roles", - "protocol": "openid-connect", - "protocolMapper": "oidc-usermodel-realm-role-mapper", - "consentRequired": false, - "config": { - "multivalued": "true", - "userinfo.token.claim": "true", - "id.token.claim": "false", - "access.token.claim": "true", - "claim.name": "roles", - "jsonType.label": "String" - } - }, - { - "id": "336acfe2-a717-492a-9055-5b70e808f42f", - "name": "login", - "protocol": "openid-connect", - "protocolMapper": "oidc-usermodel-attribute-mapper", - "consentRequired": false, - "config": { - "userinfo.token.claim": "true", - "user.attribute": "preferred_username", - "id.token.claim": "false", - "access.token.claim": "false", - "claim.name": "login", - "jsonType.label": "String" - } - } - ] - }, - { - "id": "87d299f2-434f-4abd-8cb0-a16231acd713", - "name": "microprofile-jwt", - "description": "Microprofile - JWT built-in scope", - "protocol": "openid-connect", - "attributes": { - "include.in.token.scope": "true", - "display.on.consent.screen": "false" - }, - "protocolMappers": [ - { - "id": "fce09d51-cb85-4ccd-b83d-865a4d4bf650", - "name": "groups", - "protocol": "openid-connect", - "protocolMapper": "oidc-usermodel-realm-role-mapper", - "consentRequired": false, - "config": { - "multivalued": "true", - "userinfo.token.claim": "true", - "user.attribute": "foo", - "id.token.claim": "true", - "access.token.claim": "true", - "claim.name": "groups", - "jsonType.label": "String" - } - }, - { - "id": "3d1ee7e2-b7e1-4504-bd52-b47a2cb10eec", - "name": "upn", - "protocol": "openid-connect", - "protocolMapper": "oidc-usermodel-property-mapper", - "consentRequired": false, - "config": { - "userinfo.token.claim": "true", - "user.attribute": "username", - "id.token.claim": "true", - "access.token.claim": "true", - "claim.name": "upn", - "jsonType.label": "String" - } - } - ] - }, - { - "id": "0399b625-22d7-4d68-b4db-fd1dc2effacc", - "name": "offline_access", - "description": "OpenID Connect built-in scope: offline_access", - "protocol": "openid-connect", - "attributes": { - "consent.screen.text": "${offlineAccessScopeConsentText}", - "display.on.consent.screen": "true" - } - }, - { - "id": "2b867b2d-3373-43ff-b50f-ea37a5e1c390", - "name": "phone", - "description": "OpenID Connect built-in scope: phone", - "protocol": "openid-connect", - "attributes": { - "include.in.token.scope": "true", - "display.on.consent.screen": "true", - "consent.screen.text": "${phoneScopeConsentText}" - }, - "protocolMappers": [ - { - "id": "daa0191b-20d1-4f71-b191-6c48a37e3677", - "name": "phone number", - "protocol": "openid-connect", - "protocolMapper": "oidc-usermodel-attribute-mapper", - "consentRequired": false, - "config": { - "userinfo.token.claim": "true", - "user.attribute": "phoneNumber", - "id.token.claim": "true", - "access.token.claim": "true", - "claim.name": "phone_number", - "jsonType.label": "String" - } - }, - { - "id": "32213de7-12f7-4864-b696-c8e6c5e0c26e", - "name": "phone number verified", - "protocol": "openid-connect", - "protocolMapper": "oidc-usermodel-attribute-mapper", - "consentRequired": false, - "config": { - "userinfo.token.claim": "true", - "user.attribute": "phoneNumberVerified", - "id.token.claim": "true", - "access.token.claim": "true", - "claim.name": "phone_number_verified", - "jsonType.label": "boolean" - } - } - ] - }, - { - "id": "60a44832-9776-449f-94cd-fa8c24a75f35", - "name": "profile", - "description": "OpenID Connect built-in scope: profile", - "protocol": "openid-connect", - "attributes": { - "include.in.token.scope": "true", - "display.on.consent.screen": "true", - "consent.screen.text": "${profileScopeConsentText}" - }, - "protocolMappers": [ - { - "id": "a59584ab-7a7c-4b23-95b5-be8dbbfadc6f", - "name": "family name", - "protocol": "openid-connect", - "protocolMapper": "oidc-usermodel-property-mapper", - "consentRequired": false, - "config": { - "userinfo.token.claim": "true", - "user.attribute": "lastName", - "id.token.claim": "true", - "access.token.claim": "true", - "claim.name": "family_name", - "jsonType.label": "String" - } - }, - { - "id": "d382c1dc-d5d8-479e-8809-f0a618113a07", - "name": "website", - "protocol": "openid-connect", - "protocolMapper": "oidc-usermodel-attribute-mapper", - "consentRequired": false, - "config": { - "userinfo.token.claim": "true", - "user.attribute": "website", - "id.token.claim": "true", - "access.token.claim": "true", - "claim.name": "website", - "jsonType.label": "String" - } - }, - { - "id": "559f86c1-1187-498d-8354-723f4ea5721c", - "name": "full name", - "protocol": "openid-connect", - "protocolMapper": "oidc-full-name-mapper", - "consentRequired": false, - "config": { - "id.token.claim": "true", - "access.token.claim": "true", - "userinfo.token.claim": "true" - } - }, - { - "id": "0925e106-a8e2-4ad1-b75e-4147d185894a", - "name": "updated at", - "protocol": "openid-connect", - "protocolMapper": "oidc-usermodel-attribute-mapper", - "consentRequired": false, - "config": { - "userinfo.token.claim": "true", - "user.attribute": "updatedAt", - "id.token.claim": "true", - "access.token.claim": "true", - "claim.name": "updated_at", - "jsonType.label": "String" - } - }, - { - "id": "eb8e2c73-5c65-4b53-8d55-46edef61315b", - "name": "locale", - "protocol": "openid-connect", - "protocolMapper": "oidc-usermodel-attribute-mapper", - "consentRequired": false, - "config": { - "userinfo.token.claim": "true", - "user.attribute": "locale", - "id.token.claim": "true", - "access.token.claim": "true", - "claim.name": "locale", - "jsonType.label": "String" - } - }, - { - "id": "4c109376-01bc-4b69-a3c0-4b830ecad674", - "name": "middle name", - "protocol": "openid-connect", - "protocolMapper": "oidc-usermodel-attribute-mapper", - "consentRequired": false, - "config": { - "userinfo.token.claim": "true", - "user.attribute": "middleName", - "id.token.claim": "true", - "access.token.claim": "true", - "claim.name": "middle_name", - "jsonType.label": "String" - } - }, - { - "id": "b3813956-e556-4b57-a06b-f71b0d6f3d47", - "name": "nickname", - "protocol": "openid-connect", - "protocolMapper": "oidc-usermodel-attribute-mapper", - "consentRequired": false, - "config": { - "userinfo.token.claim": "true", - "user.attribute": "nickname", - "id.token.claim": "true", - "access.token.claim": "true", - "claim.name": "nickname", - "jsonType.label": "String" - } - }, - { - "id": "28beb4c0-029b-4aa5-ad5f-6d824ca67e15", - "name": "username", - "protocol": "openid-connect", - "protocolMapper": "oidc-usermodel-property-mapper", - "consentRequired": false, - "config": { - "userinfo.token.claim": "true", - "user.attribute": "username", - "id.token.claim": "true", - "access.token.claim": "true", - "claim.name": "preferred_username", - "jsonType.label": "String" - } - }, - { - "id": "53d681bc-ec29-4f57-924b-ff5bd22d4093", - "name": "profile", - "protocol": "openid-connect", - "protocolMapper": "oidc-usermodel-attribute-mapper", - "consentRequired": false, - "config": { - "userinfo.token.claim": "true", - "user.attribute": "profile", - "id.token.claim": "true", - "access.token.claim": "true", - "claim.name": "profile", - "jsonType.label": "String" - } - }, - { - "id": "12ba8e12-157d-4729-918b-0d74fa444fba", - "name": "picture", - "protocol": "openid-connect", - "protocolMapper": "oidc-usermodel-attribute-mapper", - "consentRequired": false, - "config": { - "userinfo.token.claim": "true", - "user.attribute": "picture", - "id.token.claim": "true", - "access.token.claim": "true", - "claim.name": "picture", - "jsonType.label": "String" - } - }, - { - "id": "ddb818fe-8e4a-4b26-9c5d-2467a26af6dc", - "name": "gender", - "protocol": "openid-connect", - "protocolMapper": "oidc-usermodel-attribute-mapper", - "consentRequired": false, - "config": { - "userinfo.token.claim": "true", - "user.attribute": "gender", - "id.token.claim": "true", - "access.token.claim": "true", - "claim.name": "gender", - "jsonType.label": "String" - } - }, - { - "id": "f78b1746-2be1-45f4-9c1e-1f6141ccdb65", - "name": "birthdate", - "protocol": "openid-connect", - "protocolMapper": "oidc-usermodel-attribute-mapper", - "consentRequired": false, - "config": { - "userinfo.token.claim": "true", - "user.attribute": "birthdate", - "id.token.claim": "true", - "access.token.claim": "true", - "claim.name": "birthdate", - "jsonType.label": "String" - } - }, - { - "id": "7723245c-4952-4822-86ae-084048b1f2f2", - "name": "given name", - "protocol": "openid-connect", - "protocolMapper": "oidc-usermodel-property-mapper", - "consentRequired": false, - "config": { - "userinfo.token.claim": "true", - "user.attribute": "firstName", - "id.token.claim": "true", - "access.token.claim": "true", - "claim.name": "given_name", - "jsonType.label": "String" - } - }, - { - "id": "b192fe9f-aa82-4d7d-b8c7-eb7d1ba888d4", - "name": "zoneinfo", - "protocol": "openid-connect", - "protocolMapper": "oidc-usermodel-attribute-mapper", - "consentRequired": false, - "config": { - "userinfo.token.claim": "true", - "user.attribute": "zoneinfo", - "id.token.claim": "true", - "access.token.claim": "true", - "claim.name": "zoneinfo", - "jsonType.label": "String" - } - } - ] - }, - { - "id": "d181691e-b4a6-4063-9eba-6b984402a9a7", - "name": "role_list", - "description": "SAML role list", - "protocol": "saml", - "attributes": { - "consent.screen.text": "${samlRoleListScopeConsentText}", - "display.on.consent.screen": "true" - }, - "protocolMappers": [ - { - "id": "724b16d4-8a9b-42d8-850f-99ca1ab3c958", - "name": "role list", - "protocol": "saml", - "protocolMapper": "saml-role-list-mapper", - "consentRequired": false, - "config": { - "single": "false", - "attribute.nameformat": "Basic", - "attribute.name": "Role" - } - } - ] - }, - { - "id": "915fcb95-81da-4e4c-86ee-73f3b52c83e9", - "name": "roles", - "description": "OpenID Connect scope for add user roles to the access token", - "protocol": "openid-connect", - "attributes": { - "include.in.token.scope": "false", - "display.on.consent.screen": "true", - "consent.screen.text": "${rolesScopeConsentText}" - }, - "protocolMappers": [ - { - "id": "12f0b32d-8911-4028-809b-fc1c0e5e9207", - "name": "audience resolve", - "protocol": "openid-connect", - "protocolMapper": "oidc-audience-resolve-mapper", - "consentRequired": false, - "config": {} - }, - { - "id": "5b997b66-937f-46d3-9e8b-70dca949f682", - "name": "realm roles", - "protocol": "openid-connect", - "protocolMapper": "oidc-usermodel-realm-role-mapper", - "consentRequired": false, - "config": { - "user.attribute": "foo", - "access.token.claim": "true", - "claim.name": "realm_access.roles", - "jsonType.label": "String", - "multivalued": "true" - } - }, - { - "id": "cdcd6969-a9aa-4de5-adbe-dc83da4184c5", - "name": "client roles", - "protocol": "openid-connect", - "protocolMapper": "oidc-usermodel-client-role-mapper", - "consentRequired": false, - "config": { - "user.attribute": "foo", - "access.token.claim": "true", - "claim.name": "resource_access.${client_id}.roles", - "jsonType.label": "String", - "multivalued": "true" - } - } - ] - }, - { - "id": "2daaac74-636f-4074-87a9-d1aba9dffb96", - "name": "web-origins", - "description": "OpenID Connect scope for add allowed web origins to the access token", - "protocol": "openid-connect", - "attributes": { - "include.in.token.scope": "false", - "display.on.consent.screen": "false", - "consent.screen.text": "" - }, - "protocolMappers": [ - { - "id": "752e035f-038d-46ac-b65d-91f863fdd986", - "name": "allowed web origins", - "protocol": "openid-connect", - "protocolMapper": "oidc-allowed-origins-mapper", - "consentRequired": false, - "config": {} - } - ] - } - ], - "defaultDefaultClientScopes": ["web-origins", "email", "profile", "roles", "role_list"], - "defaultOptionalClientScopes": ["offline_access", "phone", "address", "microprofile-jwt"], - "browserSecurityHeaders": { - "contentSecurityPolicyReportOnly": "", - "xContentTypeOptions": "nosniff", - "xRobotsTag": "none", - "xFrameOptions": "SAMEORIGIN", - "contentSecurityPolicy": "frame-src 'self'; frame-ancestors 'self'; object-src 'none';", - "xXSSProtection": "1; mode=block", - "strictTransportSecurity": "max-age=31536000; includeSubDomains" - }, - "smtpServer": {}, - "eventsEnabled": false, - "eventsListeners": ["jboss-logging"], - "enabledEventTypes": [], - "adminEventsEnabled": false, - "adminEventsDetailsEnabled": false, - "identityProviders": [], - "identityProviderMappers": [], - "components": { - "org.keycloak.services.clientregistration.policy.ClientRegistrationPolicy": [ - { - "id": "827fde01-dc1b-4c1f-a529-9ef833ca3432", - "name": "Allowed Protocol Mapper Types", - "providerId": "allowed-protocol-mappers", - "subType": "authenticated", - "subComponents": {}, - "config": { - "allowed-protocol-mapper-types": [ - "oidc-full-name-mapper", - "saml-user-property-mapper", - "saml-role-list-mapper", - "oidc-address-mapper", - "oidc-usermodel-property-mapper", - "oidc-sha256-pairwise-sub-mapper", - "saml-user-attribute-mapper", - "oidc-usermodel-attribute-mapper" - ] - } - }, - { - "id": "0a429e7e-be7a-46b4-b42a-d1f8b265ff16", - "name": "Allowed Client Scopes", - "providerId": "allowed-client-templates", - "subType": "authenticated", - "subComponents": {}, - "config": { - "allow-default-scopes": ["true"] - } - }, - { - "id": "5a1ff0b4-250f-48ee-8169-abff30cf7534", - "name": "Allowed Client Scopes", - "providerId": "allowed-client-templates", - "subType": "anonymous", - "subComponents": {}, - "config": { - "allow-default-scopes": ["true"] - } - }, - { - "id": "c79f6629-84a9-467c-81d0-63e20b19f916", - "name": "Full Scope Disabled", - "providerId": "scope", - "subType": "anonymous", - "subComponents": {}, - "config": {} - }, - { - "id": "b6b23ef8-96e8-4e2e-8efe-8003057a8d42", - "name": "Max Clients Limit", - "providerId": "max-clients", - "subType": "anonymous", - "subComponents": {}, - "config": { - "max-clients": ["200"] - } - }, - { - "id": "36dfaa02-0252-4448-9cdf-a17abf239f78", - "name": "Trusted Hosts", - "providerId": "trusted-hosts", - "subType": "anonymous", - "subComponents": {}, - "config": { - "host-sending-registration-request-must-match": ["true"], - "client-uris-must-match": ["true"] - } - }, - { - "id": "8216421d-34fb-4726-8331-137217657bdb", - "name": "Allowed Protocol Mapper Types", - "providerId": "allowed-protocol-mappers", - "subType": "anonymous", - "subComponents": {}, - "config": { - "allowed-protocol-mapper-types": [ - "saml-user-attribute-mapper", - "oidc-address-mapper", - "oidc-sha256-pairwise-sub-mapper", - "oidc-usermodel-property-mapper", - "oidc-full-name-mapper", - "oidc-usermodel-attribute-mapper", - "saml-user-property-mapper", - "saml-role-list-mapper" - ] - } - }, - { - "id": "d045f3f9-15e6-4e69-a419-0e7ff8a635ef", - "name": "Consent Required", - "providerId": "consent-required", - "subType": "anonymous", - "subComponents": {}, - "config": {} - } - ], - "org.keycloak.keys.KeyProvider": [ - { - "id": "62707fae-58f9-4fc2-89fb-0c5d212dc3dc", - "name": "rsa-generated", - "providerId": "rsa-generated", - "subComponents": {}, - "config": { - "priority": ["100"] - } - }, - { - "id": "4a8480bc-96fd-4906-a907-f948a73bab38", - "name": "hmac-generated", - "providerId": "hmac-generated", - "subComponents": {}, - "config": { - "priority": ["100"], - "algorithm": ["HS256"] - } - }, - { - "id": "40c01a32-0c0b-4dbb-9595-e5a5c8d26bc4", - "name": "aes-generated", - "providerId": "aes-generated", - "subComponents": {}, - "config": { - "priority": ["100"] - } - } - ] - }, - "internationalizationEnabled": false, - "supportedLocales": [], - "authenticationFlows": [ - { - "id": "491fbbc9-b70b-45bd-8243-2039ae3f115d", - "alias": "Account verification options", - "description": "Method with which to verity the existing account", - "providerId": "basic-flow", - "topLevel": false, - "builtIn": true, - "authenticationExecutions": [ - { - "authenticator": "idp-email-verification", - "requirement": "ALTERNATIVE", - "priority": 10, - "userSetupAllowed": false, - "autheticatorFlow": false - }, - { - "requirement": "ALTERNATIVE", - "priority": 20, - "flowAlias": "Verify Existing Account by Re-authentication", - "userSetupAllowed": false, - "autheticatorFlow": true - } - ] - }, - { - "id": "2c63ad60-76ab-4350-9def-74328bab70d0", - "alias": "Authentication Options", - "description": "Authentication options.", - "providerId": "basic-flow", - "topLevel": false, - "builtIn": true, - "authenticationExecutions": [ - { - "authenticator": "basic-auth", - "requirement": "REQUIRED", - "priority": 10, - "userSetupAllowed": false, - "autheticatorFlow": false - }, - { - "authenticator": "basic-auth-otp", - "requirement": "DISABLED", - "priority": 20, - "userSetupAllowed": false, - "autheticatorFlow": false - }, - { - "authenticator": "auth-spnego", - "requirement": "DISABLED", - "priority": 30, - "userSetupAllowed": false, - "autheticatorFlow": false - } - ] - }, - { - "id": "82b9b584-2243-4893-b58c-4567f34434a6", - "alias": "Browser - Conditional OTP", - "description": "Flow to determine if the OTP is required for the authentication", - "providerId": "basic-flow", - "topLevel": false, - "builtIn": true, - "authenticationExecutions": [ - { - "authenticator": "conditional-user-configured", - "requirement": "REQUIRED", - "priority": 10, - "userSetupAllowed": false, - "autheticatorFlow": false - }, - { - "authenticator": "auth-otp-form", - "requirement": "REQUIRED", - "priority": 20, - "userSetupAllowed": false, - "autheticatorFlow": false - } - ] - }, - { - "id": "e70e7c74-8ab5-411c-b06c-d478a452bee3", - "alias": "Direct Grant - Conditional OTP", - "description": "Flow to determine if the OTP is required for the authentication", - "providerId": "basic-flow", - "topLevel": false, - "builtIn": true, - "authenticationExecutions": [ - { - "authenticator": "conditional-user-configured", - "requirement": "REQUIRED", - "priority": 10, - "userSetupAllowed": false, - "autheticatorFlow": false - }, - { - "authenticator": "direct-grant-validate-otp", - "requirement": "REQUIRED", - "priority": 20, - "userSetupAllowed": false, - "autheticatorFlow": false - } - ] - }, - { - "id": "4f3e6fdd-9b4d-4dc0-946a-1e1ccae7af71", - "alias": "First broker login - Conditional OTP", - "description": "Flow to determine if the OTP is required for the authentication", - "providerId": "basic-flow", - "topLevel": false, - "builtIn": true, - "authenticationExecutions": [ - { - "authenticator": "conditional-user-configured", - "requirement": "REQUIRED", - "priority": 10, - "userSetupAllowed": false, - "autheticatorFlow": false - }, - { - "authenticator": "auth-otp-form", - "requirement": "REQUIRED", - "priority": 20, - "userSetupAllowed": false, - "autheticatorFlow": false - } - ] - }, - { - "id": "aa66c794-f21b-4663-9de1-9e27a7e425ab", - "alias": "Handle Existing Account", - "description": "Handle what to do if there is existing account with same email/username like authenticated identity provider", - "providerId": "basic-flow", - "topLevel": false, - "builtIn": true, - "authenticationExecutions": [ - { - "authenticator": "idp-confirm-link", - "requirement": "REQUIRED", - "priority": 10, - "userSetupAllowed": false, - "autheticatorFlow": false - }, - { - "requirement": "REQUIRED", - "priority": 20, - "flowAlias": "Account verification options", - "userSetupAllowed": false, - "autheticatorFlow": true - } - ] - }, - { - "id": "2d4499a0-399c-4b6c-970c-7b441498f7b9", - "alias": "Reset - Conditional OTP", - "description": "Flow to determine if the OTP should be reset or not. Set to REQUIRED to force.", - "providerId": "basic-flow", - "topLevel": false, - "builtIn": true, - "authenticationExecutions": [ - { - "authenticator": "conditional-user-configured", - "requirement": "REQUIRED", - "priority": 10, - "userSetupAllowed": false, - "autheticatorFlow": false - }, - { - "authenticator": "reset-otp", - "requirement": "REQUIRED", - "priority": 20, - "userSetupAllowed": false, - "autheticatorFlow": false - } - ] - }, - { - "id": "710f4172-56a5-466e-bc75-ad7405ff62b5", - "alias": "User creation or linking", - "description": "Flow for the existing/non-existing user alternatives", - "providerId": "basic-flow", - "topLevel": false, - "builtIn": true, - "authenticationExecutions": [ - { - "authenticatorConfig": "create unique user config", - "authenticator": "idp-create-user-if-unique", - "requirement": "ALTERNATIVE", - "priority": 10, - "userSetupAllowed": false, - "autheticatorFlow": false - }, - { - "requirement": "ALTERNATIVE", - "priority": 20, - "flowAlias": "Handle Existing Account", - "userSetupAllowed": false, - "autheticatorFlow": true - } - ] - }, - { - "id": "da7d3a39-7077-4354-9ffc-5b9f79fbaf0d", - "alias": "Verify Existing Account by Re-authentication", - "description": "Reauthentication of existing account", - "providerId": "basic-flow", - "topLevel": false, - "builtIn": true, - "authenticationExecutions": [ - { - "authenticator": "idp-username-password-form", - "requirement": "REQUIRED", - "priority": 10, - "userSetupAllowed": false, - "autheticatorFlow": false - }, - { - "requirement": "CONDITIONAL", - "priority": 20, - "flowAlias": "First broker login - Conditional OTP", - "userSetupAllowed": false, - "autheticatorFlow": true - } - ] - }, - { - "id": "6285968e-6200-463a-a329-8c60bc8fe9fc", - "alias": "browser", - "description": "browser based authentication", - "providerId": "basic-flow", - "topLevel": true, - "builtIn": true, - "authenticationExecutions": [ - { - "authenticator": "auth-cookie", - "requirement": "ALTERNATIVE", - "priority": 10, - "userSetupAllowed": false, - "autheticatorFlow": false - }, - { - "authenticator": "auth-spnego", - "requirement": "DISABLED", - "priority": 20, - "userSetupAllowed": false, - "autheticatorFlow": false - }, - { - "authenticator": "identity-provider-redirector", - "requirement": "ALTERNATIVE", - "priority": 25, - "userSetupAllowed": false, - "autheticatorFlow": false - }, - { - "requirement": "ALTERNATIVE", - "priority": 30, - "flowAlias": "forms", - "userSetupAllowed": false, - "autheticatorFlow": true - } - ] - }, - { - "id": "10393f04-3922-40db-a622-2655dfcae45d", - "alias": "clients", - "description": "Base authentication for clients", - "providerId": "client-flow", - "topLevel": true, - "builtIn": true, - "authenticationExecutions": [ - { - "authenticator": "client-secret", - "requirement": "ALTERNATIVE", - "priority": 10, - "userSetupAllowed": false, - "autheticatorFlow": false - }, - { - "authenticator": "client-jwt", - "requirement": "ALTERNATIVE", - "priority": 20, - "userSetupAllowed": false, - "autheticatorFlow": false - }, - { - "authenticator": "client-secret-jwt", - "requirement": "ALTERNATIVE", - "priority": 30, - "userSetupAllowed": false, - "autheticatorFlow": false - }, - { - "authenticator": "client-x509", - "requirement": "ALTERNATIVE", - "priority": 40, - "userSetupAllowed": false, - "autheticatorFlow": false - } - ] - }, - { - "id": "4e5e164e-3c7e-4ca5-a10c-d7b817a7d468", - "alias": "direct grant", - "description": "OpenID Connect Resource Owner Grant", - "providerId": "basic-flow", - "topLevel": true, - "builtIn": true, - "authenticationExecutions": [ - { - "authenticator": "direct-grant-validate-username", - "requirement": "REQUIRED", - "priority": 10, - "userSetupAllowed": false, - "autheticatorFlow": false - }, - { - "authenticator": "direct-grant-validate-password", - "requirement": "REQUIRED", - "priority": 20, - "userSetupAllowed": false, - "autheticatorFlow": false - }, - { - "requirement": "CONDITIONAL", - "priority": 30, - "flowAlias": "Direct Grant - Conditional OTP", - "userSetupAllowed": false, - "autheticatorFlow": true - } - ] - }, - { - "id": "80f88b0b-70de-4e4c-ae56-0293558301c5", - "alias": "docker auth", - "description": "Used by Docker clients to authenticate against the IDP", - "providerId": "basic-flow", - "topLevel": true, - "builtIn": true, - "authenticationExecutions": [ - { - "authenticator": "docker-http-basic-authenticator", - "requirement": "REQUIRED", - "priority": 10, - "userSetupAllowed": false, - "autheticatorFlow": false - } - ] - }, - { - "id": "821af41a-6e77-4e8c-85a6-0280d5268909", - "alias": "first broker login", - "description": "Actions taken after first broker login with identity provider account, which is not yet linked to any Keycloak account", - "providerId": "basic-flow", - "topLevel": true, - "builtIn": true, - "authenticationExecutions": [ - { - "authenticatorConfig": "review profile config", - "authenticator": "idp-review-profile", - "requirement": "REQUIRED", - "priority": 10, - "userSetupAllowed": false, - "autheticatorFlow": false - }, - { - "requirement": "REQUIRED", - "priority": 20, - "flowAlias": "User creation or linking", - "userSetupAllowed": false, - "autheticatorFlow": true - } - ] - }, - { - "id": "c4058fb0-ad93-4595-96ef-7d4bc5cbef4d", - "alias": "forms", - "description": "Username, password, otp and other auth forms.", - "providerId": "basic-flow", - "topLevel": false, - "builtIn": true, - "authenticationExecutions": [ - { - "authenticator": "auth-username-password-form", - "requirement": "REQUIRED", - "priority": 10, - "userSetupAllowed": false, - "autheticatorFlow": false - }, - { - "requirement": "CONDITIONAL", - "priority": 20, - "flowAlias": "Browser - Conditional OTP", - "userSetupAllowed": false, - "autheticatorFlow": true - } - ] - }, - { - "id": "a2a1d056-2521-498f-b345-b7db56f9342c", - "alias": "http challenge", - "description": "An authentication flow based on challenge-response HTTP Authentication Schemes", - "providerId": "basic-flow", - "topLevel": true, - "builtIn": true, - "authenticationExecutions": [ - { - "authenticator": "no-cookie-redirect", - "requirement": "REQUIRED", - "priority": 10, - "userSetupAllowed": false, - "autheticatorFlow": false - }, - { - "requirement": "REQUIRED", - "priority": 20, - "flowAlias": "Authentication Options", - "userSetupAllowed": false, - "autheticatorFlow": true - } - ] - }, - { - "id": "13e68e1b-4b44-4f21-a253-5b2dea24404b", - "alias": "registration", - "description": "registration flow", - "providerId": "basic-flow", - "topLevel": true, - "builtIn": true, - "authenticationExecutions": [ - { - "authenticator": "registration-page-form", - "requirement": "REQUIRED", - "priority": 10, - "flowAlias": "registration form", - "userSetupAllowed": false, - "autheticatorFlow": true - } - ] - }, - { - "id": "e7588789-22d4-459b-96d6-1b480520f487", - "alias": "registration form", - "description": "registration form", - "providerId": "form-flow", - "topLevel": false, - "builtIn": true, - "authenticationExecutions": [ - { - "authenticator": "registration-user-creation", - "requirement": "REQUIRED", - "priority": 20, - "userSetupAllowed": false, - "autheticatorFlow": false - }, - { - "authenticator": "registration-profile-action", - "requirement": "REQUIRED", - "priority": 40, - "userSetupAllowed": false, - "autheticatorFlow": false - }, - { - "authenticator": "registration-password-action", - "requirement": "REQUIRED", - "priority": 50, - "userSetupAllowed": false, - "autheticatorFlow": false - }, - { - "authenticator": "registration-recaptcha-action", - "requirement": "DISABLED", - "priority": 60, - "userSetupAllowed": false, - "autheticatorFlow": false - } - ] - }, - { - "id": "8dc399ef-cf7d-46d5-9688-678c146ea8c4", - "alias": "reset credentials", - "description": "Reset credentials for a user if they forgot their password or something", - "providerId": "basic-flow", - "topLevel": true, - "builtIn": true, - "authenticationExecutions": [ - { - "authenticator": "reset-credentials-choose-user", - "requirement": "REQUIRED", - "priority": 10, - "userSetupAllowed": false, - "autheticatorFlow": false - }, - { - "authenticator": "reset-credential-email", - "requirement": "REQUIRED", - "priority": 20, - "userSetupAllowed": false, - "autheticatorFlow": false - }, - { - "authenticator": "reset-password", - "requirement": "REQUIRED", - "priority": 30, - "userSetupAllowed": false, - "autheticatorFlow": false - }, - { - "requirement": "CONDITIONAL", - "priority": 40, - "flowAlias": "Reset - Conditional OTP", - "userSetupAllowed": false, - "autheticatorFlow": true - } - ] - }, - { - "id": "47ab5a7a-f67a-4a66-bdac-932ee230000d", - "alias": "saml ecp", - "description": "SAML ECP Profile Authentication Flow", - "providerId": "basic-flow", - "topLevel": true, - "builtIn": true, - "authenticationExecutions": [ - { - "authenticator": "http-basic-authenticator", - "requirement": "REQUIRED", - "priority": 10, - "userSetupAllowed": false, - "autheticatorFlow": false - } - ] - } - ], - "authenticatorConfig": [ - { - "id": "b12be521-4e2b-42f0-a1a2-f1ba47ab4854", - "alias": "create unique user config", - "config": { - "require.password.update.after.registration": "false" - } - }, - { - "id": "58bf2d56-1c45-4acc-9005-23b978d961d7", - "alias": "review profile config", - "config": { - "update.profile.on.first.login": "missing" - } - } - ], - "requiredActions": [ - { - "alias": "CONFIGURE_TOTP", - "name": "Configure OTP", - "providerId": "CONFIGURE_TOTP", - "enabled": true, - "defaultAction": false, - "priority": 10, - "config": {} - }, - { - "alias": "terms_and_conditions", - "name": "Terms and Conditions", - "providerId": "terms_and_conditions", - "enabled": false, - "defaultAction": false, - "priority": 20, - "config": {} - }, - { - "alias": "UPDATE_PASSWORD", - "name": "Update Password", - "providerId": "UPDATE_PASSWORD", - "enabled": true, - "defaultAction": false, - "priority": 30, - "config": {} - }, - { - "alias": "UPDATE_PROFILE", - "name": "Update Profile", - "providerId": "UPDATE_PROFILE", - "enabled": true, - "defaultAction": false, - "priority": 40, - "config": {} - }, - { - "alias": "VERIFY_EMAIL", - "name": "Verify Email", - "providerId": "VERIFY_EMAIL", - "enabled": true, - "defaultAction": false, - "priority": 50, - "config": {} - }, - { - "alias": "delete_account", - "name": "Delete Account", - "providerId": "delete_account", - "enabled": false, - "defaultAction": false, - "priority": 60, - "config": {} - }, - { - "alias": "update_user_locale", - "name": "Update User Locale", - "providerId": "update_user_locale", - "enabled": true, - "defaultAction": false, - "priority": 1000, - "config": {} - } - ], - "browserFlow": "browser", - "registrationFlow": "registration", - "directGrantFlow": "direct grant", - "resetCredentialsFlow": "reset credentials", - "clientAuthenticationFlow": "clients", - "dockerAuthenticationFlow": "docker auth", - "attributes": { - "clientOfflineSessionMaxLifespan": "0", - "clientSessionIdleTimeout": "0", - "clientSessionMaxLifespan": "0", - "clientOfflineSessionIdleTimeout": "0" - }, - "keycloakVersion": "12.0.4", - "userManagedAccessAllowed": false -} diff --git a/data/keycloak-setup/coc.poc.medina.esilab.org/realm.json b/data/keycloak-setup/coc.poc.medina.esilab.org/realm.json deleted file mode 100755 index 0bd5ce5916195dc4e6a019fac791c0b1424ef967..0000000000000000000000000000000000000000 --- a/data/keycloak-setup/coc.poc.medina.esilab.org/realm.json +++ /dev/null @@ -1,2214 +0,0 @@ -{ - "id": "jhipster", - "realm": "jhipster", - "notBefore": 0, - "revokeRefreshToken": false, - "refreshTokenMaxReuse": 0, - "accessTokenLifespan": 300, - "accessTokenLifespanForImplicitFlow": 900, - "ssoSessionIdleTimeout": 1800, - "ssoSessionMaxLifespan": 36000, - "ssoSessionIdleTimeoutRememberMe": 0, - "ssoSessionMaxLifespanRememberMe": 0, - "offlineSessionIdleTimeout": 2592000, - "offlineSessionMaxLifespanEnabled": false, - "offlineSessionMaxLifespan": 5184000, - "clientSessionIdleTimeout": 0, - "clientSessionMaxLifespan": 0, - "clientOfflineSessionIdleTimeout": 0, - "clientOfflineSessionMaxLifespan": 0, - "accessCodeLifespan": 60, - "accessCodeLifespanUserAction": 300, - "accessCodeLifespanLogin": 1800, - "actionTokenGeneratedByAdminLifespan": 43200, - "actionTokenGeneratedByUserLifespan": 300, - "enabled": true, - "sslRequired": "external", - "registrationAllowed": false, - "registrationEmailAsUsername": false, - "rememberMe": false, - "verifyEmail": false, - "loginWithEmailAllowed": true, - "duplicateEmailsAllowed": false, - "resetPasswordAllowed": false, - "editUsernameAllowed": false, - "bruteForceProtected": false, - "permanentLockout": false, - "maxFailureWaitSeconds": 900, - "minimumQuickLoginWaitSeconds": 60, - "waitIncrementSeconds": 60, - "quickLoginCheckMilliSeconds": 1000, - "maxDeltaTimeSeconds": 43200, - "failureFactor": 30, - "roles": { - "realm": [ - { - "id": "8e986fb5-dafb-43bf-a7c2-7e57572d3d80", - "name": "ROLE_ADMIN", - "description": "Jhipster administrator role", - "composite": false, - "clientRole": false, - "containerId": "jhipster", - "attributes": {} - }, - { - "id": "e1b19afd-f612-4a79-bdf8-26a99b89b10b", - "name": "offline_access", - "description": "${role_offline-access}", - "composite": false, - "clientRole": false, - "containerId": "jhipster", - "attributes": {} - }, - { - "id": "ec5705e1-fc1d-4d21-8364-abd3bd4efcd0", - "name": "ROLE_USER", - "description": "Jhipster user role", - "composite": false, - "clientRole": false, - "containerId": "jhipster", - "attributes": {} - }, - { - "id": "2eec61d0-9581-4dbf-8c7b-f32dc5fac3ce", - "name": "uma_authorization", - "description": "${role_uma_authorization}", - "composite": false, - "clientRole": false, - "containerId": "jhipster", - "attributes": {} - } - ], - "client": { - "internal": [], - "realm-management": [ - { - "id": "a6249a12-d76c-4514-b137-e3018b243e25", - "name": "manage-authorization", - "description": "${role_manage-authorization}", - "composite": false, - "clientRole": true, - "containerId": "898488c8-e260-41c5-a463-7ceea14d587a", - "attributes": {} - }, - { - "id": "a28bc401-c5ad-4fab-aef4-42629988c10b", - "name": "view-realm", - "description": "${role_view-realm}", - "composite": false, - "clientRole": true, - "containerId": "898488c8-e260-41c5-a463-7ceea14d587a", - "attributes": {} - }, - { - "id": "464bca1f-136f-45de-a7fc-b976a185ce7e", - "name": "view-users", - "description": "${role_view-users}", - "composite": true, - "composites": { - "client": { - "realm-management": ["query-users", "query-groups"] - } - }, - "clientRole": true, - "containerId": "898488c8-e260-41c5-a463-7ceea14d587a", - "attributes": {} - }, - { - "id": "98c2fa77-d3c8-4f68-b9f4-b79f87efd4a9", - "name": "query-users", - "description": "${role_query-users}", - "composite": false, - "clientRole": true, - "containerId": "898488c8-e260-41c5-a463-7ceea14d587a", - "attributes": {} - }, - { - "id": "6b82bfdb-c8de-4274-95b4-a683eb4ead50", - "name": "view-identity-providers", - "description": "${role_view-identity-providers}", - "composite": false, - "clientRole": true, - "containerId": "898488c8-e260-41c5-a463-7ceea14d587a", - "attributes": {} - }, - { - "id": "3c6b9cfe-80c4-41d5-a5ac-0cadebacfc8d", - "name": "manage-identity-providers", - "description": "${role_manage-identity-providers}", - "composite": false, - "clientRole": true, - "containerId": "898488c8-e260-41c5-a463-7ceea14d587a", - "attributes": {} - }, - { - "id": "23676fb8-235a-4e54-a0d0-9bed1ccbe2f8", - "name": "query-groups", - "description": "${role_query-groups}", - "composite": false, - "clientRole": true, - "containerId": "898488c8-e260-41c5-a463-7ceea14d587a", - "attributes": {} - }, - { - "id": "b71fe952-bb06-4e4a-91ef-2d2714f770e1", - "name": "impersonation", - "description": "${role_impersonation}", - "composite": false, - "clientRole": true, - "containerId": "898488c8-e260-41c5-a463-7ceea14d587a", - "attributes": {} - }, - { - "id": "0813cbd0-c73d-469d-a54d-84a865c302af", - "name": "manage-events", - "description": "${role_manage-events}", - "composite": false, - "clientRole": true, - "containerId": "898488c8-e260-41c5-a463-7ceea14d587a", - "attributes": {} - }, - { - "id": "c7a4f4c1-9089-458c-a765-f6d22ea94690", - "name": "view-authorization", - "description": "${role_view-authorization}", - "composite": false, - "clientRole": true, - "containerId": "898488c8-e260-41c5-a463-7ceea14d587a", - "attributes": {} - }, - { - "id": "2e1bc884-e9d3-45d2-909c-2777a78ca8ae", - "name": "manage-realm", - "description": "${role_manage-realm}", - "composite": false, - "clientRole": true, - "containerId": "898488c8-e260-41c5-a463-7ceea14d587a", - "attributes": {} - }, - { - "id": "0a05451e-7d64-4e87-b585-f1143ce5752e", - "name": "query-clients", - "description": "${role_query-clients}", - "composite": false, - "clientRole": true, - "containerId": "898488c8-e260-41c5-a463-7ceea14d587a", - "attributes": {} - }, - { - "id": "dfad4d08-6d75-42b6-8699-4886e47bc464", - "name": "view-events", - "description": "${role_view-events}", - "composite": false, - "clientRole": true, - "containerId": "898488c8-e260-41c5-a463-7ceea14d587a", - "attributes": {} - }, - { - "id": "392ed0a3-f6ad-48a1-b201-648037d2b4bd", - "name": "realm-admin", - "description": "${role_realm-admin}", - "composite": true, - "composites": { - "client": { - "realm-management": [ - "manage-authorization", - "view-realm", - "view-users", - "query-users", - "manage-identity-providers", - "view-identity-providers", - "query-groups", - "impersonation", - "manage-events", - "query-clients", - "manage-realm", - "view-authorization", - "view-events", - "view-clients", - "create-client", - "manage-clients", - "manage-users", - "query-realms" - ] - } - }, - "clientRole": true, - "containerId": "898488c8-e260-41c5-a463-7ceea14d587a", - "attributes": {} - }, - { - "id": "d7efdf61-affb-42a1-bcb0-b2c30d87a39e", - "name": "view-clients", - "description": "${role_view-clients}", - "composite": true, - "composites": { - "client": { - "realm-management": ["query-clients"] - } - }, - "clientRole": true, - "containerId": "898488c8-e260-41c5-a463-7ceea14d587a", - "attributes": {} - }, - { - "id": "14da8e56-5c8b-4764-96da-250449a32fd4", - "name": "create-client", - "description": "${role_create-client}", - "composite": false, - "clientRole": true, - "containerId": "898488c8-e260-41c5-a463-7ceea14d587a", - "attributes": {} - }, - { - "id": "88e6a9f5-259c-487d-af35-2a98da066816", - "name": "manage-clients", - "description": "${role_manage-clients}", - "composite": false, - "clientRole": true, - "containerId": "898488c8-e260-41c5-a463-7ceea14d587a", - "attributes": {} - }, - { - "id": "932273a7-c02b-43db-81c5-96a0dc45e454", - "name": "manage-users", - "description": "${role_manage-users}", - "composite": false, - "clientRole": true, - "containerId": "898488c8-e260-41c5-a463-7ceea14d587a", - "attributes": {} - }, - { - "id": "e3edf335-cec5-4012-a00d-fcac045052e1", - "name": "query-realms", - "description": "${role_query-realms}", - "composite": false, - "clientRole": true, - "containerId": "898488c8-e260-41c5-a463-7ceea14d587a", - "attributes": {} - } - ], - "jhipster-control-center": [], - "security-admin-console": [], - "web_app": [], - "admin-cli": [], - "account-console": [], - "jhipster-registry": [], - "broker": [ - { - "id": "5b08a930-9f1d-4030-ae75-92c1e4c9352c", - "name": "read-token", - "description": "${role_read-token}", - "composite": false, - "clientRole": true, - "containerId": "88e1225b-f0b9-46ba-8efd-f2c10ce23058", - "attributes": {} - } - ], - "account": [ - { - "id": "a88c56b8-6bc9-418a-92bc-7a17e7707f60", - "name": "view-profile", - "description": "${role_view-profile}", - "composite": false, - "clientRole": true, - "containerId": "6cc5a716-0880-47dc-b714-9a4967246b2f", - "attributes": {} - }, - { - "id": "0cb954ab-987f-482a-b2d7-0d481ba1d532", - "name": "view-applications", - "description": "${role_view-applications}", - "composite": false, - "clientRole": true, - "containerId": "6cc5a716-0880-47dc-b714-9a4967246b2f", - "attributes": {} - }, - { - "id": "6450156d-7526-48f2-8ea0-bb1e51f9eefa", - "name": "manage-account", - "description": "${role_manage-account}", - "composite": true, - "composites": { - "client": { - "account": ["manage-account-links"] - } - }, - "clientRole": true, - "containerId": "6cc5a716-0880-47dc-b714-9a4967246b2f", - "attributes": {} - }, - { - "id": "e5b2ba76-4c36-4ba1-b210-89a1ac3c6bbe", - "name": "view-consent", - "description": "${role_view-consent}", - "composite": false, - "clientRole": true, - "containerId": "6cc5a716-0880-47dc-b714-9a4967246b2f", - "attributes": {} - }, - { - "id": "35537940-67a6-4217-881b-1ff98109b374", - "name": "manage-consent", - "description": "${role_manage-consent}", - "composite": true, - "composites": { - "client": { - "account": ["view-consent"] - } - }, - "clientRole": true, - "containerId": "6cc5a716-0880-47dc-b714-9a4967246b2f", - "attributes": {} - }, - { - "id": "5ebf404b-7805-4da2-abb4-9db7d3b36120", - "name": "delete-account", - "description": "${role_delete-account}", - "composite": false, - "clientRole": true, - "containerId": "6cc5a716-0880-47dc-b714-9a4967246b2f", - "attributes": {} - }, - { - "id": "a7f45fab-19c3-4c48-aca3-85f828ca0fed", - "name": "manage-account-links", - "description": "${role_manage-account-links}", - "composite": false, - "clientRole": true, - "containerId": "6cc5a716-0880-47dc-b714-9a4967246b2f", - "attributes": {} - } - ] - } - }, - "groups": [ - { - "id": "afb0c768-ab0f-454c-a8ea-bc9e70b50248", - "name": "Admins", - "path": "/Admins", - "attributes": {}, - "realmRoles": ["ROLE_ADMIN"], - "clientRoles": {}, - "subGroups": [] - }, - { - "id": "672767bb-4ab0-4d37-93a1-9b6c2416b6b2", - "name": "Users", - "path": "/Users", - "attributes": {}, - "realmRoles": ["ROLE_USER"], - "clientRoles": {}, - "subGroups": [] - } - ], - "defaultRoles": ["uma_authorization", "offline_access"], - "requiredCredentials": ["password"], - "otpPolicyType": "totp", - "otpPolicyAlgorithm": "HmacSHA1", - "otpPolicyInitialCounter": 0, - "otpPolicyDigits": 6, - "otpPolicyLookAheadWindow": 1, - "otpPolicyPeriod": 30, - "otpSupportedApplications": ["FreeOTP", "Google Authenticator"], - "webAuthnPolicyRpEntityName": "keycloak", - "webAuthnPolicySignatureAlgorithms": ["ES256"], - "webAuthnPolicyRpId": "", - "webAuthnPolicyAttestationConveyancePreference": "not specified", - "webAuthnPolicyAuthenticatorAttachment": "not specified", - "webAuthnPolicyRequireResidentKey": "not specified", - "webAuthnPolicyUserVerificationRequirement": "not specified", - "webAuthnPolicyCreateTimeout": 0, - "webAuthnPolicyAvoidSameAuthenticatorRegister": false, - "webAuthnPolicyAcceptableAaguids": [], - "webAuthnPolicyPasswordlessRpEntityName": "keycloak", - "webAuthnPolicyPasswordlessSignatureAlgorithms": ["ES256"], - "webAuthnPolicyPasswordlessRpId": "", - "webAuthnPolicyPasswordlessAttestationConveyancePreference": "not specified", - "webAuthnPolicyPasswordlessAuthenticatorAttachment": "not specified", - "webAuthnPolicyPasswordlessRequireResidentKey": "not specified", - "webAuthnPolicyPasswordlessUserVerificationRequirement": "not specified", - "webAuthnPolicyPasswordlessCreateTimeout": 0, - "webAuthnPolicyPasswordlessAvoidSameAuthenticatorRegister": false, - "webAuthnPolicyPasswordlessAcceptableAaguids": [], - "users": [ - { - "id": "f742ba6f-1d8a-4dec-bf15-e02dab508283", - "createdTimestamp": 1598681172054, - "username": "service-account-internal", - "enabled": true, - "totp": false, - "emailVerified": false, - "serviceAccountClientId": "internal", - "disableableCredentialTypes": [], - "requiredActions": [], - "realmRoles": ["offline_access", "uma_authorization"], - "clientRoles": { - "account": ["view-profile", "manage-account"] - }, - "notBefore": 0, - "groups": [] - } - ], - "scopeMappings": [ - { - "clientScope": "offline_access", - "roles": ["offline_access"] - } - ], - "clientScopeMappings": { - "account": [ - { - "client": "account-console", - "roles": ["manage-account"] - } - ] - }, - "clients": [ - { - "id": "6cc5a716-0880-47dc-b714-9a4967246b2f", - "clientId": "account", - "name": "${client_account}", - "rootUrl": "${authBaseUrl}", - "baseUrl": "/realms/jhipster/account/", - "surrogateAuthRequired": false, - "enabled": true, - "alwaysDisplayInConsole": false, - "clientAuthenticatorType": "client-secret", - "secret": "**********", - "defaultRoles": ["manage-account", "view-profile"], - "redirectUris": ["/realms/jhipster/account/*"], - "webOrigins": [], - "notBefore": 0, - "bearerOnly": false, - "consentRequired": false, - "standardFlowEnabled": true, - "implicitFlowEnabled": false, - "directAccessGrantsEnabled": false, - "serviceAccountsEnabled": false, - "publicClient": false, - "frontchannelLogout": false, - "protocol": "openid-connect", - "attributes": {}, - "authenticationFlowBindingOverrides": {}, - "fullScopeAllowed": false, - "nodeReRegistrationTimeout": 0, - "defaultClientScopes": ["web-origins", "role_list", "profile", "roles", "email"], - "optionalClientScopes": ["address", "phone", "offline_access", "microprofile-jwt"] - }, - { - "id": "fb0a4870-06db-4f9d-9d44-baf51a00cc34", - "clientId": "account-console", - "name": "${client_account-console}", - "rootUrl": "${authBaseUrl}", - "baseUrl": "/realms/jhipster/account/", - "surrogateAuthRequired": false, - "enabled": true, - "alwaysDisplayInConsole": false, - "clientAuthenticatorType": "client-secret", - "secret": "**********", - "redirectUris": ["/realms/jhipster/account/*"], - "webOrigins": [], - "notBefore": 0, - "bearerOnly": false, - "consentRequired": false, - "standardFlowEnabled": true, - "implicitFlowEnabled": false, - "directAccessGrantsEnabled": false, - "serviceAccountsEnabled": false, - "publicClient": true, - "frontchannelLogout": false, - "protocol": "openid-connect", - "attributes": { - "pkce.code.challenge.method": "S256" - }, - "authenticationFlowBindingOverrides": {}, - "fullScopeAllowed": false, - "nodeReRegistrationTimeout": 0, - "protocolMappers": [ - { - "id": "c5c4ebe5-d009-4f96-b143-1b36d770eafb", - "name": "audience resolve", - "protocol": "openid-connect", - "protocolMapper": "oidc-audience-resolve-mapper", - "consentRequired": false, - "config": {} - } - ], - "defaultClientScopes": ["web-origins", "role_list", "profile", "roles", "email"], - "optionalClientScopes": ["address", "phone", "offline_access", "microprofile-jwt"] - }, - { - "id": "bb166356-838d-445e-94e3-9330ad7ab51b", - "clientId": "admin-cli", - "name": "${client_admin-cli}", - "surrogateAuthRequired": false, - "enabled": true, - "alwaysDisplayInConsole": false, - "clientAuthenticatorType": "client-secret", - "secret": "**********", - "redirectUris": [], - "webOrigins": [], - "notBefore": 0, - "bearerOnly": false, - "consentRequired": false, - "standardFlowEnabled": false, - "implicitFlowEnabled": false, - "directAccessGrantsEnabled": true, - "serviceAccountsEnabled": false, - "publicClient": true, - "frontchannelLogout": false, - "protocol": "openid-connect", - "attributes": {}, - "authenticationFlowBindingOverrides": {}, - "fullScopeAllowed": false, - "nodeReRegistrationTimeout": 0, - "defaultClientScopes": ["web-origins", "role_list", "profile", "roles", "email"], - "optionalClientScopes": ["address", "phone", "offline_access", "microprofile-jwt"] - }, - { - "id": "88e1225b-f0b9-46ba-8efd-f2c10ce23058", - "clientId": "broker", - "name": "${client_broker}", - "surrogateAuthRequired": false, - "enabled": true, - "alwaysDisplayInConsole": false, - "clientAuthenticatorType": "client-secret", - "secret": "**********", - "redirectUris": [], - "webOrigins": [], - "notBefore": 0, - "bearerOnly": false, - "consentRequired": false, - "standardFlowEnabled": true, - "implicitFlowEnabled": false, - "directAccessGrantsEnabled": false, - "serviceAccountsEnabled": false, - "publicClient": false, - "frontchannelLogout": false, - "protocol": "openid-connect", - "attributes": {}, - "authenticationFlowBindingOverrides": {}, - "fullScopeAllowed": false, - "nodeReRegistrationTimeout": 0, - "defaultClientScopes": ["web-origins", "role_list", "profile", "roles", "email"], - "optionalClientScopes": ["address", "phone", "offline_access", "microprofile-jwt"] - }, - { - "id": "10e6ea34-9f1e-49ef-8e28-7eb851459694", - "clientId": "internal", - "surrogateAuthRequired": false, - "enabled": true, - "alwaysDisplayInConsole": false, - "clientAuthenticatorType": "client-secret", - "secret": "internal", - "redirectUris": [], - "webOrigins": [], - "notBefore": 0, - "bearerOnly": false, - "consentRequired": false, - "standardFlowEnabled": false, - "implicitFlowEnabled": false, - "directAccessGrantsEnabled": false, - "serviceAccountsEnabled": true, - "publicClient": false, - "frontchannelLogout": false, - "protocol": "openid-connect", - "attributes": { - "saml.assertion.signature": "false", - "saml.force.post.binding": "false", - "saml.multivalued.roles": "false", - "saml.encrypt": "false", - "saml.server.signature": "false", - "saml.server.signature.keyinfo.ext": "false", - "exclude.session.state.from.auth.response": "false", - "saml_force_name_id_format": "false", - "saml.client.signature": "false", - "tls.client.certificate.bound.access.tokens": "false", - "saml.authnstatement": "false", - "display.on.consent.screen": "false", - "saml.onetimeuse.condition": "false" - }, - "authenticationFlowBindingOverrides": {}, - "fullScopeAllowed": true, - "nodeReRegistrationTimeout": -1, - "protocolMappers": [ - { - "id": "ff2f50b4-5409-4789-bdda-fe731f14fbff", - "name": "Client IP Address", - "protocol": "openid-connect", - "protocolMapper": "oidc-usersessionmodel-note-mapper", - "consentRequired": false, - "config": { - "user.session.note": "clientAddress", - "userinfo.token.claim": "true", - "id.token.claim": "true", - "access.token.claim": "true", - "claim.name": "clientAddress", - "jsonType.label": "String" - } - }, - { - "id": "72f9ae74-9e95-4b7b-a709-5086137410bb", - "name": "Client ID", - "protocol": "openid-connect", - "protocolMapper": "oidc-usersessionmodel-note-mapper", - "consentRequired": false, - "config": { - "user.session.note": "clientId", - "userinfo.token.claim": "true", - "id.token.claim": "true", - "access.token.claim": "true", - "claim.name": "clientId", - "jsonType.label": "String" - } - }, - { - "id": "029bf6c8-5a19-4798-984c-bdb205d752d5", - "name": "Client Host", - "protocol": "openid-connect", - "protocolMapper": "oidc-usersessionmodel-note-mapper", - "consentRequired": false, - "config": { - "user.session.note": "clientHost", - "userinfo.token.claim": "true", - "id.token.claim": "true", - "access.token.claim": "true", - "claim.name": "clientHost", - "jsonType.label": "String" - } - } - ], - "defaultClientScopes": ["web-origins", "role_list", "profile", "roles", "email"], - "optionalClientScopes": ["address", "phone", "offline_access", "microprofile-jwt"] - }, - { - "id": "1acf7ad0-68cb-46a6-a3e4-8b2f2abecb85", - "clientId": "jhipster-control-center", - "rootUrl": "http://localhost:7419", - "adminUrl": "http://localhost:7419", - "surrogateAuthRequired": false, - "enabled": true, - "alwaysDisplayInConsole": false, - "clientAuthenticatorType": "client-secret", - "secret": "jhipster-control-center", - "redirectUris": ["dev.localhost.ionic:*", "http://127.0.0.1:*", "http://localhost:*", "https://127.0.0.1:*", "https://localhost:*"], - "webOrigins": ["*"], - "notBefore": 0, - "bearerOnly": false, - "consentRequired": false, - "standardFlowEnabled": true, - "implicitFlowEnabled": true, - "directAccessGrantsEnabled": false, - "serviceAccountsEnabled": false, - "publicClient": true, - "frontchannelLogout": false, - "protocol": "openid-connect", - "attributes": { - "saml.assertion.signature": "false", - "saml.force.post.binding": "false", - "saml.multivalued.roles": "false", - "saml.encrypt": "false", - "saml.server.signature": "false", - "saml.server.signature.keyinfo.ext": "false", - "exclude.session.state.from.auth.response": "false", - "saml_force_name_id_format": "false", - "saml.client.signature": "false", - "tls.client.certificate.bound.access.tokens": "false", - "saml.authnstatement": "false", - "display.on.consent.screen": "false", - "saml.onetimeuse.condition": "false" - }, - "authenticationFlowBindingOverrides": {}, - "fullScopeAllowed": true, - "nodeReRegistrationTimeout": -1, - "defaultClientScopes": ["web-origins", "jhipster", "role_list", "profile", "roles", "email"], - "optionalClientScopes": ["address", "phone", "offline_access", "microprofile-jwt"] - }, - { - "id": "9057870f-8775-448d-a194-1d4e122f44d5", - "clientId": "jhipster-registry", - "rootUrl": "https://registry.poc.medina.esilab.org.nip.io:8443", - "adminUrl": "https://registry.poc.medina.esilab.org.nip.io:8443", - "surrogateAuthRequired": false, - "enabled": true, - "alwaysDisplayInConsole": false, - "clientAuthenticatorType": "client-secret", - "secret": "jhipster-registry", - "redirectUris": ["*"], - "webOrigins": ["*"], - "notBefore": 0, - "bearerOnly": false, - "consentRequired": false, - "standardFlowEnabled": true, - "implicitFlowEnabled": false, - "directAccessGrantsEnabled": true, - "serviceAccountsEnabled": false, - "publicClient": true, - "frontchannelLogout": false, - "protocol": "openid-connect", - "attributes": { - "saml.assertion.signature": "false", - "saml.force.post.binding": "false", - "saml.multivalued.roles": "false", - "saml.encrypt": "false", - "saml.server.signature": "false", - "saml.server.signature.keyinfo.ext": "false", - "exclude.session.state.from.auth.response": "false", - "saml_force_name_id_format": "false", - "saml.client.signature": "false", - "tls.client.certificate.bound.access.tokens": "false", - "saml.authnstatement": "false", - "display.on.consent.screen": "false", - "saml.onetimeuse.condition": "false" - }, - "authenticationFlowBindingOverrides": {}, - "fullScopeAllowed": true, - "nodeReRegistrationTimeout": -1, - "defaultClientScopes": ["web-origins", "jhipster", "role_list", "roles", "profile", "email"], - "optionalClientScopes": ["address", "phone", "offline_access", "microprofile-jwt"] - }, - { - "id": "898488c8-e260-41c5-a463-7ceea14d587a", - "clientId": "realm-management", - "name": "${client_realm-management}", - "surrogateAuthRequired": false, - "enabled": true, - "alwaysDisplayInConsole": false, - "clientAuthenticatorType": "client-secret", - "secret": "**********", - "redirectUris": [], - "webOrigins": [], - "notBefore": 0, - "bearerOnly": true, - "consentRequired": false, - "standardFlowEnabled": true, - "implicitFlowEnabled": false, - "directAccessGrantsEnabled": false, - "serviceAccountsEnabled": false, - "publicClient": false, - "frontchannelLogout": false, - "protocol": "openid-connect", - "attributes": {}, - "authenticationFlowBindingOverrides": {}, - "fullScopeAllowed": false, - "nodeReRegistrationTimeout": 0, - "defaultClientScopes": ["web-origins", "role_list", "profile", "roles", "email"], - "optionalClientScopes": ["address", "phone", "offline_access", "microprofile-jwt"] - }, - { - "id": "989d2b96-b820-4f9b-aa17-55e6488b08c8", - "clientId": "security-admin-console", - "name": "${client_security-admin-console}", - "rootUrl": "${authAdminUrl}", - "baseUrl": "/admin/jhipster/console/", - "surrogateAuthRequired": false, - "enabled": true, - "alwaysDisplayInConsole": false, - "clientAuthenticatorType": "client-secret", - "secret": "**********", - "redirectUris": ["/admin/jhipster/console/*"], - "webOrigins": ["+"], - "notBefore": 0, - "bearerOnly": false, - "consentRequired": false, - "standardFlowEnabled": true, - "implicitFlowEnabled": false, - "directAccessGrantsEnabled": false, - "serviceAccountsEnabled": false, - "publicClient": true, - "frontchannelLogout": false, - "protocol": "openid-connect", - "attributes": { - "pkce.code.challenge.method": "S256" - }, - "authenticationFlowBindingOverrides": {}, - "fullScopeAllowed": false, - "nodeReRegistrationTimeout": 0, - "protocolMappers": [ - { - "id": "5fd34289-c644-411a-874c-849475d9d102", - "name": "locale", - "protocol": "openid-connect", - "protocolMapper": "oidc-usermodel-attribute-mapper", - "consentRequired": false, - "config": { - "userinfo.token.claim": "true", - "user.attribute": "locale", - "id.token.claim": "true", - "access.token.claim": "true", - "claim.name": "locale", - "jsonType.label": "String" - } - } - ], - "defaultClientScopes": ["web-origins", "role_list", "profile", "roles", "email"], - "optionalClientScopes": ["address", "phone", "offline_access", "microprofile-jwt"] - }, - { - "id": "6e8deddb-b4d6-4e2e-b389-b397d3f74fcd", - "clientId": "web_app", - "rootUrl": "https://coc.poc.medina.esilab.org.nip.io:8443", - "adminUrl": "https://coc.poc.medina.esilab.org.nip.io:8443", - "surrogateAuthRequired": false, - "enabled": true, - "alwaysDisplayInConsole": false, - "clientAuthenticatorType": "client-secret", - "secret": "web_app", - "redirectUris": ["*"], - "webOrigins": ["*"], - "notBefore": 0, - "bearerOnly": false, - "consentRequired": false, - "standardFlowEnabled": true, - "implicitFlowEnabled": true, - "directAccessGrantsEnabled": false, - "serviceAccountsEnabled": false, - "publicClient": true, - "frontchannelLogout": false, - "protocol": "openid-connect", - "attributes": { - "saml.assertion.signature": "false", - "saml.force.post.binding": "false", - "saml.multivalued.roles": "false", - "saml.encrypt": "false", - "saml.server.signature": "false", - "saml.server.signature.keyinfo.ext": "false", - "exclude.session.state.from.auth.response": "false", - "saml_force_name_id_format": "false", - "saml.client.signature": "false", - "tls.client.certificate.bound.access.tokens": "false", - "saml.authnstatement": "false", - "display.on.consent.screen": "false", - "saml.onetimeuse.condition": "false" - }, - "authenticationFlowBindingOverrides": {}, - "fullScopeAllowed": true, - "nodeReRegistrationTimeout": -1, - "defaultClientScopes": ["web-origins", "jhipster", "role_list", "profile", "roles", "email"], - "optionalClientScopes": ["address", "phone", "offline_access", "microprofile-jwt"] - } - ], - "clientScopes": [ - { - "id": "52d73c82-423c-44a8-b2ec-1e13f4cd6065", - "name": "address", - "description": "OpenID Connect built-in scope: address", - "protocol": "openid-connect", - "attributes": { - "include.in.token.scope": "true", - "display.on.consent.screen": "true", - "consent.screen.text": "${addressScopeConsentText}" - }, - "protocolMappers": [ - { - "id": "98230752-36b9-4755-8661-a7de1926d0d4", - "name": "address", - "protocol": "openid-connect", - "protocolMapper": "oidc-address-mapper", - "consentRequired": false, - "config": { - "user.attribute.formatted": "formatted", - "user.attribute.country": "country", - "user.attribute.postal_code": "postal_code", - "userinfo.token.claim": "true", - "user.attribute.street": "street", - "id.token.claim": "true", - "user.attribute.region": "region", - "access.token.claim": "true", - "user.attribute.locality": "locality" - } - } - ] - }, - { - "id": "44d24405-87bf-4b37-a627-e3fdabb93f50", - "name": "email", - "description": "OpenID Connect built-in scope: email", - "protocol": "openid-connect", - "attributes": { - "include.in.token.scope": "true", - "display.on.consent.screen": "true", - "consent.screen.text": "${emailScopeConsentText}" - }, - "protocolMappers": [ - { - "id": "36800088-6d17-4c18-93e8-2bc93901d8b7", - "name": "email", - "protocol": "openid-connect", - "protocolMapper": "oidc-usermodel-property-mapper", - "consentRequired": false, - "config": { - "userinfo.token.claim": "true", - "user.attribute": "email", - "id.token.claim": "true", - "access.token.claim": "true", - "claim.name": "email", - "jsonType.label": "String" - } - }, - { - "id": "3ea34afd-30b5-4e5d-a836-dbda439dce6f", - "name": "email verified", - "protocol": "openid-connect", - "protocolMapper": "oidc-usermodel-property-mapper", - "consentRequired": false, - "config": { - "userinfo.token.claim": "true", - "user.attribute": "emailVerified", - "id.token.claim": "true", - "access.token.claim": "true", - "claim.name": "email_verified", - "jsonType.label": "boolean" - } - } - ] - }, - { - "id": "9816de82-24b7-42fe-a85a-1264868ec293", - "name": "jhipster", - "description": "Jhipster specific claims", - "protocol": "openid-connect", - "attributes": { - "include.in.token.scope": "false", - "display.on.consent.screen": "false" - }, - "protocolMappers": [ - { - "id": "0f9c9347-aad6-4bff-94f4-e11937f2ad33", - "name": "langKey", - "protocol": "openid-connect", - "protocolMapper": "oidc-usermodel-attribute-mapper", - "consentRequired": false, - "config": { - "userinfo.token.claim": "true", - "user.attribute": "langKey", - "id.token.claim": "false", - "access.token.claim": "false", - "claim.name": "langKey", - "jsonType.label": "String" - } - }, - { - "id": "69729907-8d1c-4961-81c0-91766f548cc9", - "name": "roles", - "protocol": "openid-connect", - "protocolMapper": "oidc-usermodel-realm-role-mapper", - "consentRequired": false, - "config": { - "multivalued": "true", - "userinfo.token.claim": "true", - "id.token.claim": "false", - "access.token.claim": "true", - "claim.name": "roles", - "jsonType.label": "String" - } - }, - { - "id": "336acfe2-a717-492a-9055-5b70e808f42f", - "name": "login", - "protocol": "openid-connect", - "protocolMapper": "oidc-usermodel-attribute-mapper", - "consentRequired": false, - "config": { - "userinfo.token.claim": "true", - "user.attribute": "preferred_username", - "id.token.claim": "false", - "access.token.claim": "false", - "claim.name": "login", - "jsonType.label": "String" - } - } - ] - }, - { - "id": "87d299f2-434f-4abd-8cb0-a16231acd713", - "name": "microprofile-jwt", - "description": "Microprofile - JWT built-in scope", - "protocol": "openid-connect", - "attributes": { - "include.in.token.scope": "true", - "display.on.consent.screen": "false" - }, - "protocolMappers": [ - { - "id": "fce09d51-cb85-4ccd-b83d-865a4d4bf650", - "name": "groups", - "protocol": "openid-connect", - "protocolMapper": "oidc-usermodel-realm-role-mapper", - "consentRequired": false, - "config": { - "multivalued": "true", - "userinfo.token.claim": "true", - "user.attribute": "foo", - "id.token.claim": "true", - "access.token.claim": "true", - "claim.name": "groups", - "jsonType.label": "String" - } - }, - { - "id": "3d1ee7e2-b7e1-4504-bd52-b47a2cb10eec", - "name": "upn", - "protocol": "openid-connect", - "protocolMapper": "oidc-usermodel-property-mapper", - "consentRequired": false, - "config": { - "userinfo.token.claim": "true", - "user.attribute": "username", - "id.token.claim": "true", - "access.token.claim": "true", - "claim.name": "upn", - "jsonType.label": "String" - } - } - ] - }, - { - "id": "0399b625-22d7-4d68-b4db-fd1dc2effacc", - "name": "offline_access", - "description": "OpenID Connect built-in scope: offline_access", - "protocol": "openid-connect", - "attributes": { - "consent.screen.text": "${offlineAccessScopeConsentText}", - "display.on.consent.screen": "true" - } - }, - { - "id": "2b867b2d-3373-43ff-b50f-ea37a5e1c390", - "name": "phone", - "description": "OpenID Connect built-in scope: phone", - "protocol": "openid-connect", - "attributes": { - "include.in.token.scope": "true", - "display.on.consent.screen": "true", - "consent.screen.text": "${phoneScopeConsentText}" - }, - "protocolMappers": [ - { - "id": "daa0191b-20d1-4f71-b191-6c48a37e3677", - "name": "phone number", - "protocol": "openid-connect", - "protocolMapper": "oidc-usermodel-attribute-mapper", - "consentRequired": false, - "config": { - "userinfo.token.claim": "true", - "user.attribute": "phoneNumber", - "id.token.claim": "true", - "access.token.claim": "true", - "claim.name": "phone_number", - "jsonType.label": "String" - } - }, - { - "id": "32213de7-12f7-4864-b696-c8e6c5e0c26e", - "name": "phone number verified", - "protocol": "openid-connect", - "protocolMapper": "oidc-usermodel-attribute-mapper", - "consentRequired": false, - "config": { - "userinfo.token.claim": "true", - "user.attribute": "phoneNumberVerified", - "id.token.claim": "true", - "access.token.claim": "true", - "claim.name": "phone_number_verified", - "jsonType.label": "boolean" - } - } - ] - }, - { - "id": "60a44832-9776-449f-94cd-fa8c24a75f35", - "name": "profile", - "description": "OpenID Connect built-in scope: profile", - "protocol": "openid-connect", - "attributes": { - "include.in.token.scope": "true", - "display.on.consent.screen": "true", - "consent.screen.text": "${profileScopeConsentText}" - }, - "protocolMappers": [ - { - "id": "a59584ab-7a7c-4b23-95b5-be8dbbfadc6f", - "name": "family name", - "protocol": "openid-connect", - "protocolMapper": "oidc-usermodel-property-mapper", - "consentRequired": false, - "config": { - "userinfo.token.claim": "true", - "user.attribute": "lastName", - "id.token.claim": "true", - "access.token.claim": "true", - "claim.name": "family_name", - "jsonType.label": "String" - } - }, - { - "id": "d382c1dc-d5d8-479e-8809-f0a618113a07", - "name": "website", - "protocol": "openid-connect", - "protocolMapper": "oidc-usermodel-attribute-mapper", - "consentRequired": false, - "config": { - "userinfo.token.claim": "true", - "user.attribute": "website", - "id.token.claim": "true", - "access.token.claim": "true", - "claim.name": "website", - "jsonType.label": "String" - } - }, - { - "id": "559f86c1-1187-498d-8354-723f4ea5721c", - "name": "full name", - "protocol": "openid-connect", - "protocolMapper": "oidc-full-name-mapper", - "consentRequired": false, - "config": { - "id.token.claim": "true", - "access.token.claim": "true", - "userinfo.token.claim": "true" - } - }, - { - "id": "0925e106-a8e2-4ad1-b75e-4147d185894a", - "name": "updated at", - "protocol": "openid-connect", - "protocolMapper": "oidc-usermodel-attribute-mapper", - "consentRequired": false, - "config": { - "userinfo.token.claim": "true", - "user.attribute": "updatedAt", - "id.token.claim": "true", - "access.token.claim": "true", - "claim.name": "updated_at", - "jsonType.label": "String" - } - }, - { - "id": "eb8e2c73-5c65-4b53-8d55-46edef61315b", - "name": "locale", - "protocol": "openid-connect", - "protocolMapper": "oidc-usermodel-attribute-mapper", - "consentRequired": false, - "config": { - "userinfo.token.claim": "true", - "user.attribute": "locale", - "id.token.claim": "true", - "access.token.claim": "true", - "claim.name": "locale", - "jsonType.label": "String" - } - }, - { - "id": "4c109376-01bc-4b69-a3c0-4b830ecad674", - "name": "middle name", - "protocol": "openid-connect", - "protocolMapper": "oidc-usermodel-attribute-mapper", - "consentRequired": false, - "config": { - "userinfo.token.claim": "true", - "user.attribute": "middleName", - "id.token.claim": "true", - "access.token.claim": "true", - "claim.name": "middle_name", - "jsonType.label": "String" - } - }, - { - "id": "b3813956-e556-4b57-a06b-f71b0d6f3d47", - "name": "nickname", - "protocol": "openid-connect", - "protocolMapper": "oidc-usermodel-attribute-mapper", - "consentRequired": false, - "config": { - "userinfo.token.claim": "true", - "user.attribute": "nickname", - "id.token.claim": "true", - "access.token.claim": "true", - "claim.name": "nickname", - "jsonType.label": "String" - } - }, - { - "id": "28beb4c0-029b-4aa5-ad5f-6d824ca67e15", - "name": "username", - "protocol": "openid-connect", - "protocolMapper": "oidc-usermodel-property-mapper", - "consentRequired": false, - "config": { - "userinfo.token.claim": "true", - "user.attribute": "username", - "id.token.claim": "true", - "access.token.claim": "true", - "claim.name": "preferred_username", - "jsonType.label": "String" - } - }, - { - "id": "53d681bc-ec29-4f57-924b-ff5bd22d4093", - "name": "profile", - "protocol": "openid-connect", - "protocolMapper": "oidc-usermodel-attribute-mapper", - "consentRequired": false, - "config": { - "userinfo.token.claim": "true", - "user.attribute": "profile", - "id.token.claim": "true", - "access.token.claim": "true", - "claim.name": "profile", - "jsonType.label": "String" - } - }, - { - "id": "12ba8e12-157d-4729-918b-0d74fa444fba", - "name": "picture", - "protocol": "openid-connect", - "protocolMapper": "oidc-usermodel-attribute-mapper", - "consentRequired": false, - "config": { - "userinfo.token.claim": "true", - "user.attribute": "picture", - "id.token.claim": "true", - "access.token.claim": "true", - "claim.name": "picture", - "jsonType.label": "String" - } - }, - { - "id": "ddb818fe-8e4a-4b26-9c5d-2467a26af6dc", - "name": "gender", - "protocol": "openid-connect", - "protocolMapper": "oidc-usermodel-attribute-mapper", - "consentRequired": false, - "config": { - "userinfo.token.claim": "true", - "user.attribute": "gender", - "id.token.claim": "true", - "access.token.claim": "true", - "claim.name": "gender", - "jsonType.label": "String" - } - }, - { - "id": "f78b1746-2be1-45f4-9c1e-1f6141ccdb65", - "name": "birthdate", - "protocol": "openid-connect", - "protocolMapper": "oidc-usermodel-attribute-mapper", - "consentRequired": false, - "config": { - "userinfo.token.claim": "true", - "user.attribute": "birthdate", - "id.token.claim": "true", - "access.token.claim": "true", - "claim.name": "birthdate", - "jsonType.label": "String" - } - }, - { - "id": "7723245c-4952-4822-86ae-084048b1f2f2", - "name": "given name", - "protocol": "openid-connect", - "protocolMapper": "oidc-usermodel-property-mapper", - "consentRequired": false, - "config": { - "userinfo.token.claim": "true", - "user.attribute": "firstName", - "id.token.claim": "true", - "access.token.claim": "true", - "claim.name": "given_name", - "jsonType.label": "String" - } - }, - { - "id": "b192fe9f-aa82-4d7d-b8c7-eb7d1ba888d4", - "name": "zoneinfo", - "protocol": "openid-connect", - "protocolMapper": "oidc-usermodel-attribute-mapper", - "consentRequired": false, - "config": { - "userinfo.token.claim": "true", - "user.attribute": "zoneinfo", - "id.token.claim": "true", - "access.token.claim": "true", - "claim.name": "zoneinfo", - "jsonType.label": "String" - } - } - ] - }, - { - "id": "d181691e-b4a6-4063-9eba-6b984402a9a7", - "name": "role_list", - "description": "SAML role list", - "protocol": "saml", - "attributes": { - "consent.screen.text": "${samlRoleListScopeConsentText}", - "display.on.consent.screen": "true" - }, - "protocolMappers": [ - { - "id": "724b16d4-8a9b-42d8-850f-99ca1ab3c958", - "name": "role list", - "protocol": "saml", - "protocolMapper": "saml-role-list-mapper", - "consentRequired": false, - "config": { - "single": "false", - "attribute.nameformat": "Basic", - "attribute.name": "Role" - } - } - ] - }, - { - "id": "915fcb95-81da-4e4c-86ee-73f3b52c83e9", - "name": "roles", - "description": "OpenID Connect scope for add user roles to the access token", - "protocol": "openid-connect", - "attributes": { - "include.in.token.scope": "false", - "display.on.consent.screen": "true", - "consent.screen.text": "${rolesScopeConsentText}" - }, - "protocolMappers": [ - { - "id": "12f0b32d-8911-4028-809b-fc1c0e5e9207", - "name": "audience resolve", - "protocol": "openid-connect", - "protocolMapper": "oidc-audience-resolve-mapper", - "consentRequired": false, - "config": {} - }, - { - "id": "5b997b66-937f-46d3-9e8b-70dca949f682", - "name": "realm roles", - "protocol": "openid-connect", - "protocolMapper": "oidc-usermodel-realm-role-mapper", - "consentRequired": false, - "config": { - "user.attribute": "foo", - "access.token.claim": "true", - "claim.name": "realm_access.roles", - "jsonType.label": "String", - "multivalued": "true" - } - }, - { - "id": "cdcd6969-a9aa-4de5-adbe-dc83da4184c5", - "name": "client roles", - "protocol": "openid-connect", - "protocolMapper": "oidc-usermodel-client-role-mapper", - "consentRequired": false, - "config": { - "user.attribute": "foo", - "access.token.claim": "true", - "claim.name": "resource_access.${client_id}.roles", - "jsonType.label": "String", - "multivalued": "true" - } - } - ] - }, - { - "id": "2daaac74-636f-4074-87a9-d1aba9dffb96", - "name": "web-origins", - "description": "OpenID Connect scope for add allowed web origins to the access token", - "protocol": "openid-connect", - "attributes": { - "include.in.token.scope": "false", - "display.on.consent.screen": "false", - "consent.screen.text": "" - }, - "protocolMappers": [ - { - "id": "752e035f-038d-46ac-b65d-91f863fdd986", - "name": "allowed web origins", - "protocol": "openid-connect", - "protocolMapper": "oidc-allowed-origins-mapper", - "consentRequired": false, - "config": {} - } - ] - } - ], - "defaultDefaultClientScopes": ["web-origins", "email", "profile", "roles", "role_list"], - "defaultOptionalClientScopes": ["offline_access", "phone", "address", "microprofile-jwt"], - "browserSecurityHeaders": { - "contentSecurityPolicyReportOnly": "", - "xContentTypeOptions": "nosniff", - "xRobotsTag": "none", - "xFrameOptions": "SAMEORIGIN", - "contentSecurityPolicy": "frame-src 'self'; frame-ancestors 'self'; object-src 'none';", - "xXSSProtection": "1; mode=block", - "strictTransportSecurity": "max-age=31536000; includeSubDomains" - }, - "smtpServer": {}, - "eventsEnabled": false, - "eventsListeners": ["jboss-logging"], - "enabledEventTypes": [], - "adminEventsEnabled": false, - "adminEventsDetailsEnabled": false, - "identityProviders": [], - "identityProviderMappers": [], - "components": { - "org.keycloak.services.clientregistration.policy.ClientRegistrationPolicy": [ - { - "id": "827fde01-dc1b-4c1f-a529-9ef833ca3432", - "name": "Allowed Protocol Mapper Types", - "providerId": "allowed-protocol-mappers", - "subType": "authenticated", - "subComponents": {}, - "config": { - "allowed-protocol-mapper-types": [ - "oidc-full-name-mapper", - "saml-user-property-mapper", - "saml-role-list-mapper", - "oidc-address-mapper", - "oidc-usermodel-property-mapper", - "oidc-sha256-pairwise-sub-mapper", - "saml-user-attribute-mapper", - "oidc-usermodel-attribute-mapper" - ] - } - }, - { - "id": "0a429e7e-be7a-46b4-b42a-d1f8b265ff16", - "name": "Allowed Client Scopes", - "providerId": "allowed-client-templates", - "subType": "authenticated", - "subComponents": {}, - "config": { - "allow-default-scopes": ["true"] - } - }, - { - "id": "5a1ff0b4-250f-48ee-8169-abff30cf7534", - "name": "Allowed Client Scopes", - "providerId": "allowed-client-templates", - "subType": "anonymous", - "subComponents": {}, - "config": { - "allow-default-scopes": ["true"] - } - }, - { - "id": "c79f6629-84a9-467c-81d0-63e20b19f916", - "name": "Full Scope Disabled", - "providerId": "scope", - "subType": "anonymous", - "subComponents": {}, - "config": {} - }, - { - "id": "b6b23ef8-96e8-4e2e-8efe-8003057a8d42", - "name": "Max Clients Limit", - "providerId": "max-clients", - "subType": "anonymous", - "subComponents": {}, - "config": { - "max-clients": ["200"] - } - }, - { - "id": "36dfaa02-0252-4448-9cdf-a17abf239f78", - "name": "Trusted Hosts", - "providerId": "trusted-hosts", - "subType": "anonymous", - "subComponents": {}, - "config": { - "host-sending-registration-request-must-match": ["true"], - "client-uris-must-match": ["true"] - } - }, - { - "id": "8216421d-34fb-4726-8331-137217657bdb", - "name": "Allowed Protocol Mapper Types", - "providerId": "allowed-protocol-mappers", - "subType": "anonymous", - "subComponents": {}, - "config": { - "allowed-protocol-mapper-types": [ - "saml-user-attribute-mapper", - "oidc-address-mapper", - "oidc-sha256-pairwise-sub-mapper", - "oidc-usermodel-property-mapper", - "oidc-full-name-mapper", - "oidc-usermodel-attribute-mapper", - "saml-user-property-mapper", - "saml-role-list-mapper" - ] - } - }, - { - "id": "d045f3f9-15e6-4e69-a419-0e7ff8a635ef", - "name": "Consent Required", - "providerId": "consent-required", - "subType": "anonymous", - "subComponents": {}, - "config": {} - } - ], - "org.keycloak.keys.KeyProvider": [ - { - "id": "62707fae-58f9-4fc2-89fb-0c5d212dc3dc", - "name": "rsa-generated", - "providerId": "rsa-generated", - "subComponents": {}, - "config": { - "priority": ["100"] - } - }, - { - "id": "4a8480bc-96fd-4906-a907-f948a73bab38", - "name": "hmac-generated", - "providerId": "hmac-generated", - "subComponents": {}, - "config": { - "priority": ["100"], - "algorithm": ["HS256"] - } - }, - { - "id": "40c01a32-0c0b-4dbb-9595-e5a5c8d26bc4", - "name": "aes-generated", - "providerId": "aes-generated", - "subComponents": {}, - "config": { - "priority": ["100"] - } - } - ] - }, - "internationalizationEnabled": false, - "supportedLocales": [], - "authenticationFlows": [ - { - "id": "491fbbc9-b70b-45bd-8243-2039ae3f115d", - "alias": "Account verification options", - "description": "Method with which to verity the existing account", - "providerId": "basic-flow", - "topLevel": false, - "builtIn": true, - "authenticationExecutions": [ - { - "authenticator": "idp-email-verification", - "requirement": "ALTERNATIVE", - "priority": 10, - "userSetupAllowed": false, - "autheticatorFlow": false - }, - { - "requirement": "ALTERNATIVE", - "priority": 20, - "flowAlias": "Verify Existing Account by Re-authentication", - "userSetupAllowed": false, - "autheticatorFlow": true - } - ] - }, - { - "id": "2c63ad60-76ab-4350-9def-74328bab70d0", - "alias": "Authentication Options", - "description": "Authentication options.", - "providerId": "basic-flow", - "topLevel": false, - "builtIn": true, - "authenticationExecutions": [ - { - "authenticator": "basic-auth", - "requirement": "REQUIRED", - "priority": 10, - "userSetupAllowed": false, - "autheticatorFlow": false - }, - { - "authenticator": "basic-auth-otp", - "requirement": "DISABLED", - "priority": 20, - "userSetupAllowed": false, - "autheticatorFlow": false - }, - { - "authenticator": "auth-spnego", - "requirement": "DISABLED", - "priority": 30, - "userSetupAllowed": false, - "autheticatorFlow": false - } - ] - }, - { - "id": "82b9b584-2243-4893-b58c-4567f34434a6", - "alias": "Browser - Conditional OTP", - "description": "Flow to determine if the OTP is required for the authentication", - "providerId": "basic-flow", - "topLevel": false, - "builtIn": true, - "authenticationExecutions": [ - { - "authenticator": "conditional-user-configured", - "requirement": "REQUIRED", - "priority": 10, - "userSetupAllowed": false, - "autheticatorFlow": false - }, - { - "authenticator": "auth-otp-form", - "requirement": "REQUIRED", - "priority": 20, - "userSetupAllowed": false, - "autheticatorFlow": false - } - ] - }, - { - "id": "e70e7c74-8ab5-411c-b06c-d478a452bee3", - "alias": "Direct Grant - Conditional OTP", - "description": "Flow to determine if the OTP is required for the authentication", - "providerId": "basic-flow", - "topLevel": false, - "builtIn": true, - "authenticationExecutions": [ - { - "authenticator": "conditional-user-configured", - "requirement": "REQUIRED", - "priority": 10, - "userSetupAllowed": false, - "autheticatorFlow": false - }, - { - "authenticator": "direct-grant-validate-otp", - "requirement": "REQUIRED", - "priority": 20, - "userSetupAllowed": false, - "autheticatorFlow": false - } - ] - }, - { - "id": "4f3e6fdd-9b4d-4dc0-946a-1e1ccae7af71", - "alias": "First broker login - Conditional OTP", - "description": "Flow to determine if the OTP is required for the authentication", - "providerId": "basic-flow", - "topLevel": false, - "builtIn": true, - "authenticationExecutions": [ - { - "authenticator": "conditional-user-configured", - "requirement": "REQUIRED", - "priority": 10, - "userSetupAllowed": false, - "autheticatorFlow": false - }, - { - "authenticator": "auth-otp-form", - "requirement": "REQUIRED", - "priority": 20, - "userSetupAllowed": false, - "autheticatorFlow": false - } - ] - }, - { - "id": "aa66c794-f21b-4663-9de1-9e27a7e425ab", - "alias": "Handle Existing Account", - "description": "Handle what to do if there is existing account with same email/username like authenticated identity provider", - "providerId": "basic-flow", - "topLevel": false, - "builtIn": true, - "authenticationExecutions": [ - { - "authenticator": "idp-confirm-link", - "requirement": "REQUIRED", - "priority": 10, - "userSetupAllowed": false, - "autheticatorFlow": false - }, - { - "requirement": "REQUIRED", - "priority": 20, - "flowAlias": "Account verification options", - "userSetupAllowed": false, - "autheticatorFlow": true - } - ] - }, - { - "id": "2d4499a0-399c-4b6c-970c-7b441498f7b9", - "alias": "Reset - Conditional OTP", - "description": "Flow to determine if the OTP should be reset or not. Set to REQUIRED to force.", - "providerId": "basic-flow", - "topLevel": false, - "builtIn": true, - "authenticationExecutions": [ - { - "authenticator": "conditional-user-configured", - "requirement": "REQUIRED", - "priority": 10, - "userSetupAllowed": false, - "autheticatorFlow": false - }, - { - "authenticator": "reset-otp", - "requirement": "REQUIRED", - "priority": 20, - "userSetupAllowed": false, - "autheticatorFlow": false - } - ] - }, - { - "id": "710f4172-56a5-466e-bc75-ad7405ff62b5", - "alias": "User creation or linking", - "description": "Flow for the existing/non-existing user alternatives", - "providerId": "basic-flow", - "topLevel": false, - "builtIn": true, - "authenticationExecutions": [ - { - "authenticatorConfig": "create unique user config", - "authenticator": "idp-create-user-if-unique", - "requirement": "ALTERNATIVE", - "priority": 10, - "userSetupAllowed": false, - "autheticatorFlow": false - }, - { - "requirement": "ALTERNATIVE", - "priority": 20, - "flowAlias": "Handle Existing Account", - "userSetupAllowed": false, - "autheticatorFlow": true - } - ] - }, - { - "id": "da7d3a39-7077-4354-9ffc-5b9f79fbaf0d", - "alias": "Verify Existing Account by Re-authentication", - "description": "Reauthentication of existing account", - "providerId": "basic-flow", - "topLevel": false, - "builtIn": true, - "authenticationExecutions": [ - { - "authenticator": "idp-username-password-form", - "requirement": "REQUIRED", - "priority": 10, - "userSetupAllowed": false, - "autheticatorFlow": false - }, - { - "requirement": "CONDITIONAL", - "priority": 20, - "flowAlias": "First broker login - Conditional OTP", - "userSetupAllowed": false, - "autheticatorFlow": true - } - ] - }, - { - "id": "6285968e-6200-463a-a329-8c60bc8fe9fc", - "alias": "browser", - "description": "browser based authentication", - "providerId": "basic-flow", - "topLevel": true, - "builtIn": true, - "authenticationExecutions": [ - { - "authenticator": "auth-cookie", - "requirement": "ALTERNATIVE", - "priority": 10, - "userSetupAllowed": false, - "autheticatorFlow": false - }, - { - "authenticator": "auth-spnego", - "requirement": "DISABLED", - "priority": 20, - "userSetupAllowed": false, - "autheticatorFlow": false - }, - { - "authenticator": "identity-provider-redirector", - "requirement": "ALTERNATIVE", - "priority": 25, - "userSetupAllowed": false, - "autheticatorFlow": false - }, - { - "requirement": "ALTERNATIVE", - "priority": 30, - "flowAlias": "forms", - "userSetupAllowed": false, - "autheticatorFlow": true - } - ] - }, - { - "id": "10393f04-3922-40db-a622-2655dfcae45d", - "alias": "clients", - "description": "Base authentication for clients", - "providerId": "client-flow", - "topLevel": true, - "builtIn": true, - "authenticationExecutions": [ - { - "authenticator": "client-secret", - "requirement": "ALTERNATIVE", - "priority": 10, - "userSetupAllowed": false, - "autheticatorFlow": false - }, - { - "authenticator": "client-jwt", - "requirement": "ALTERNATIVE", - "priority": 20, - "userSetupAllowed": false, - "autheticatorFlow": false - }, - { - "authenticator": "client-secret-jwt", - "requirement": "ALTERNATIVE", - "priority": 30, - "userSetupAllowed": false, - "autheticatorFlow": false - }, - { - "authenticator": "client-x509", - "requirement": "ALTERNATIVE", - "priority": 40, - "userSetupAllowed": false, - "autheticatorFlow": false - } - ] - }, - { - "id": "4e5e164e-3c7e-4ca5-a10c-d7b817a7d468", - "alias": "direct grant", - "description": "OpenID Connect Resource Owner Grant", - "providerId": "basic-flow", - "topLevel": true, - "builtIn": true, - "authenticationExecutions": [ - { - "authenticator": "direct-grant-validate-username", - "requirement": "REQUIRED", - "priority": 10, - "userSetupAllowed": false, - "autheticatorFlow": false - }, - { - "authenticator": "direct-grant-validate-password", - "requirement": "REQUIRED", - "priority": 20, - "userSetupAllowed": false, - "autheticatorFlow": false - }, - { - "requirement": "CONDITIONAL", - "priority": 30, - "flowAlias": "Direct Grant - Conditional OTP", - "userSetupAllowed": false, - "autheticatorFlow": true - } - ] - }, - { - "id": "80f88b0b-70de-4e4c-ae56-0293558301c5", - "alias": "docker auth", - "description": "Used by Docker clients to authenticate against the IDP", - "providerId": "basic-flow", - "topLevel": true, - "builtIn": true, - "authenticationExecutions": [ - { - "authenticator": "docker-http-basic-authenticator", - "requirement": "REQUIRED", - "priority": 10, - "userSetupAllowed": false, - "autheticatorFlow": false - } - ] - }, - { - "id": "821af41a-6e77-4e8c-85a6-0280d5268909", - "alias": "first broker login", - "description": "Actions taken after first broker login with identity provider account, which is not yet linked to any Keycloak account", - "providerId": "basic-flow", - "topLevel": true, - "builtIn": true, - "authenticationExecutions": [ - { - "authenticatorConfig": "review profile config", - "authenticator": "idp-review-profile", - "requirement": "REQUIRED", - "priority": 10, - "userSetupAllowed": false, - "autheticatorFlow": false - }, - { - "requirement": "REQUIRED", - "priority": 20, - "flowAlias": "User creation or linking", - "userSetupAllowed": false, - "autheticatorFlow": true - } - ] - }, - { - "id": "c4058fb0-ad93-4595-96ef-7d4bc5cbef4d", - "alias": "forms", - "description": "Username, password, otp and other auth forms.", - "providerId": "basic-flow", - "topLevel": false, - "builtIn": true, - "authenticationExecutions": [ - { - "authenticator": "auth-username-password-form", - "requirement": "REQUIRED", - "priority": 10, - "userSetupAllowed": false, - "autheticatorFlow": false - }, - { - "requirement": "CONDITIONAL", - "priority": 20, - "flowAlias": "Browser - Conditional OTP", - "userSetupAllowed": false, - "autheticatorFlow": true - } - ] - }, - { - "id": "a2a1d056-2521-498f-b345-b7db56f9342c", - "alias": "http challenge", - "description": "An authentication flow based on challenge-response HTTP Authentication Schemes", - "providerId": "basic-flow", - "topLevel": true, - "builtIn": true, - "authenticationExecutions": [ - { - "authenticator": "no-cookie-redirect", - "requirement": "REQUIRED", - "priority": 10, - "userSetupAllowed": false, - "autheticatorFlow": false - }, - { - "requirement": "REQUIRED", - "priority": 20, - "flowAlias": "Authentication Options", - "userSetupAllowed": false, - "autheticatorFlow": true - } - ] - }, - { - "id": "13e68e1b-4b44-4f21-a253-5b2dea24404b", - "alias": "registration", - "description": "registration flow", - "providerId": "basic-flow", - "topLevel": true, - "builtIn": true, - "authenticationExecutions": [ - { - "authenticator": "registration-page-form", - "requirement": "REQUIRED", - "priority": 10, - "flowAlias": "registration form", - "userSetupAllowed": false, - "autheticatorFlow": true - } - ] - }, - { - "id": "e7588789-22d4-459b-96d6-1b480520f487", - "alias": "registration form", - "description": "registration form", - "providerId": "form-flow", - "topLevel": false, - "builtIn": true, - "authenticationExecutions": [ - { - "authenticator": "registration-user-creation", - "requirement": "REQUIRED", - "priority": 20, - "userSetupAllowed": false, - "autheticatorFlow": false - }, - { - "authenticator": "registration-profile-action", - "requirement": "REQUIRED", - "priority": 40, - "userSetupAllowed": false, - "autheticatorFlow": false - }, - { - "authenticator": "registration-password-action", - "requirement": "REQUIRED", - "priority": 50, - "userSetupAllowed": false, - "autheticatorFlow": false - }, - { - "authenticator": "registration-recaptcha-action", - "requirement": "DISABLED", - "priority": 60, - "userSetupAllowed": false, - "autheticatorFlow": false - } - ] - }, - { - "id": "8dc399ef-cf7d-46d5-9688-678c146ea8c4", - "alias": "reset credentials", - "description": "Reset credentials for a user if they forgot their password or something", - "providerId": "basic-flow", - "topLevel": true, - "builtIn": true, - "authenticationExecutions": [ - { - "authenticator": "reset-credentials-choose-user", - "requirement": "REQUIRED", - "priority": 10, - "userSetupAllowed": false, - "autheticatorFlow": false - }, - { - "authenticator": "reset-credential-email", - "requirement": "REQUIRED", - "priority": 20, - "userSetupAllowed": false, - "autheticatorFlow": false - }, - { - "authenticator": "reset-password", - "requirement": "REQUIRED", - "priority": 30, - "userSetupAllowed": false, - "autheticatorFlow": false - }, - { - "requirement": "CONDITIONAL", - "priority": 40, - "flowAlias": "Reset - Conditional OTP", - "userSetupAllowed": false, - "autheticatorFlow": true - } - ] - }, - { - "id": "47ab5a7a-f67a-4a66-bdac-932ee230000d", - "alias": "saml ecp", - "description": "SAML ECP Profile Authentication Flow", - "providerId": "basic-flow", - "topLevel": true, - "builtIn": true, - "authenticationExecutions": [ - { - "authenticator": "http-basic-authenticator", - "requirement": "REQUIRED", - "priority": 10, - "userSetupAllowed": false, - "autheticatorFlow": false - } - ] - } - ], - "authenticatorConfig": [ - { - "id": "b12be521-4e2b-42f0-a1a2-f1ba47ab4854", - "alias": "create unique user config", - "config": { - "require.password.update.after.registration": "false" - } - }, - { - "id": "58bf2d56-1c45-4acc-9005-23b978d961d7", - "alias": "review profile config", - "config": { - "update.profile.on.first.login": "missing" - } - } - ], - "requiredActions": [ - { - "alias": "CONFIGURE_TOTP", - "name": "Configure OTP", - "providerId": "CONFIGURE_TOTP", - "enabled": true, - "defaultAction": false, - "priority": 10, - "config": {} - }, - { - "alias": "terms_and_conditions", - "name": "Terms and Conditions", - "providerId": "terms_and_conditions", - "enabled": false, - "defaultAction": false, - "priority": 20, - "config": {} - }, - { - "alias": "UPDATE_PASSWORD", - "name": "Update Password", - "providerId": "UPDATE_PASSWORD", - "enabled": true, - "defaultAction": false, - "priority": 30, - "config": {} - }, - { - "alias": "UPDATE_PROFILE", - "name": "Update Profile", - "providerId": "UPDATE_PROFILE", - "enabled": true, - "defaultAction": false, - "priority": 40, - "config": {} - }, - { - "alias": "VERIFY_EMAIL", - "name": "Verify Email", - "providerId": "VERIFY_EMAIL", - "enabled": true, - "defaultAction": false, - "priority": 50, - "config": {} - }, - { - "alias": "delete_account", - "name": "Delete Account", - "providerId": "delete_account", - "enabled": false, - "defaultAction": false, - "priority": 60, - "config": {} - }, - { - "alias": "update_user_locale", - "name": "Update User Locale", - "providerId": "update_user_locale", - "enabled": true, - "defaultAction": false, - "priority": 1000, - "config": {} - } - ], - "browserFlow": "browser", - "registrationFlow": "registration", - "directGrantFlow": "direct grant", - "resetCredentialsFlow": "reset credentials", - "clientAuthenticationFlow": "clients", - "dockerAuthenticationFlow": "docker auth", - "attributes": { - "clientOfflineSessionMaxLifespan": "0", - "clientSessionIdleTimeout": "0", - "clientSessionMaxLifespan": "0", - "clientOfflineSessionIdleTimeout": "0" - }, - "keycloakVersion": "12.0.4", - "userManagedAccessAllowed": false -} diff --git a/data/keycloak-setup/coc.poc.medina.esilab.org/users.json b/data/keycloak-setup/coc.poc.medina.esilab.org/users.json deleted file mode 100755 index 8669ed209d160c66b61590819217d812f07037e5..0000000000000000000000000000000000000000 --- a/data/keycloak-setup/coc.poc.medina.esilab.org/users.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "realm" : "jhipster", - "users" : [ { - "id" : "6a995fe8-8001-49f0-9f33-b2a1ad3e72ea", - "createdTimestamp" : 1642691698643, - "username" : "admin", - "enabled" : true, - "totp" : false, - "emailVerified" : false, - "firstName" : "Admin", - "lastName" : "Administrator", - "email" : "admin@localhost", - "credentials" : [ { - "id" : "d1556cf6-54b3-471f-a036-7a4f3ba6eca0", - "type" : "password", - "createdDate" : 1642496426512, - "secretData" : "{\"value\":\"5vvzR1/HCaGTuJdpWvD4SFAStXfp1Pq5qo5rrviCIsOLOHZsLj1g9VE4SsG6hSoZkipTOELskuBtsiEHVRfc7w==\",\"salt\":\"kJP5jzQp93B1h9Ljgi0d3w==\",\"additionalParameters\":{}}", - "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" - } ], - "disableableCredentialTypes" : [ ], - "requiredActions" : [ ], - "realmRoles" : [ "ROLE_ADMIN", "offline_access", "ROLE_USER", "uma_authorization" ], - "clientRoles" : { - "account" : [ "view-profile", "manage-account" ] - }, - "notBefore" : 0, - "groups" : [ ] - }, { - "id" : "f742ba6f-1d8a-4dec-bf15-e02dab508283", - "createdTimestamp" : 1598681172054, - "username" : "service-account-internal", - "enabled" : true, - "totp" : false, - "emailVerified" : false, - "serviceAccountClientId" : "internal", - "credentials" : [ ], - "disableableCredentialTypes" : [ ], - "requiredActions" : [ ], - "realmRoles" : [ "offline_access", "uma_authorization" ], - "clientRoles" : { - "account" : [ "view-profile", "manage-account" ] - }, - "notBefore" : 0, - "groups" : [ ] - }, { - "id" : "38f9341f-188d-4af2-ab61-92da0c61edab", - "createdTimestamp" : 1642691699045, - "username" : "user", - "enabled" : true, - "totp" : false, - "emailVerified" : false, - "firstName" : "", - "lastName" : "User", - "email" : "user@localhost", - "credentials" : [ { - "id" : "742138e0-0a89-4c0b-9a26-7cc0f875d8db", - "type" : "password", - "createdDate" : 1642497001053, - "secretData" : "{\"value\":\"X2au/65Uwd+e1jgSnfwZWWfOiVFSThgEoLQgE7IZTVvxV20THl47p5hdjpRcUO7I9grmtHBeOII+3kY/LL+lLQ==\",\"salt\":\"L01D4BVFF0HUfloYxp5Sew==\",\"additionalParameters\":{}}", - "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" - } ], - "disableableCredentialTypes" : [ ], - "requiredActions" : [ ], - "realmRoles" : [ "offline_access", "uma_authorization" ], - "clientRoles" : { - "account" : [ "view-profile", "manage-account" ] - }, - "notBefore" : 0, - "groups" : [ ] - } ] -} \ No newline at end of file diff --git a/data/keycloak-setup/dev.k8s.medina.esilab.org/realm.json b/data/keycloak-setup/dev.k8s.medina.esilab.org/realm.json index 7fa0032e29de1a2d3d6dffcc09af00eb0b58e801..b6e6ec7a8852e8acb612c5813a8669eb51939c45 100755 --- a/data/keycloak-setup/dev.k8s.medina.esilab.org/realm.json +++ b/data/keycloak-setup/dev.k8s.medina.esilab.org/realm.json @@ -1,3963 +1,5548 @@ -{ - "id" : "medina", - "realm" : "medina", - "displayName" : "", - "notBefore" : 1646899526, - "revokeRefreshToken" : false, - "refreshTokenMaxReuse" : 0, - "accessTokenLifespan" : 300, - "accessTokenLifespanForImplicitFlow" : 900, - "ssoSessionIdleTimeout" : 1800, - "ssoSessionMaxLifespan" : 36000, - "ssoSessionIdleTimeoutRememberMe" : 0, - "ssoSessionMaxLifespanRememberMe" : 0, - "offlineSessionIdleTimeout" : 2592000, - "offlineSessionMaxLifespanEnabled" : false, - "offlineSessionMaxLifespan" : 5184000, - "clientSessionIdleTimeout" : 0, - "clientSessionMaxLifespan" : 0, - "clientOfflineSessionIdleTimeout" : 0, - "clientOfflineSessionMaxLifespan" : 0, - "accessCodeLifespan" : 60, - "accessCodeLifespanUserAction" : 300, - "accessCodeLifespanLogin" : 1800, - "actionTokenGeneratedByAdminLifespan" : 43200, - "actionTokenGeneratedByUserLifespan" : 300, - "enabled" : true, - "sslRequired" : "external", - "registrationAllowed" : false, - "registrationEmailAsUsername" : false, - "rememberMe" : false, - "verifyEmail" : false, - "loginWithEmailAllowed" : true, - "duplicateEmailsAllowed" : false, - "resetPasswordAllowed" : false, - "editUsernameAllowed" : false, - "bruteForceProtected" : false, - "permanentLockout" : false, - "maxFailureWaitSeconds" : 900, - "minimumQuickLoginWaitSeconds" : 60, - "waitIncrementSeconds" : 60, - "quickLoginCheckMilliSeconds" : 1000, - "maxDeltaTimeSeconds" : 43200, - "failureFactor" : 30, - "roles" : { - "realm" : [ { - "id" : "0f08df2b-4b64-487c-9e51-2580a02ae0ef", - "name" : "Customer", - "description" : "Interested in the compliance status of the company", - "composite" : false, - "clientRole" : false, - "containerId" : "medina", - "attributes" : { } - }, { - "id" : "2f6015a8-ddee-42f9-99c5-4760bd5fb5c7", - "name" : "ROLE_USER", - "description" : "temporary role for catalogue jhipster", - "composite" : false, - "clientRole" : false, - "containerId" : "medina", - "attributes" : { } - }, { - "id" : "9d96522b-ff58-498d-ad7f-11a747bd924e", - "name" : "offline_access", - "description" : "${role_offline-access}", - "composite" : false, - "clientRole" : false, - "containerId" : "medina", - "attributes" : { } - }, { - "id" : "417a650d-7309-41d2-aecd-cd179c656c65", - "name" : "Auditor", - "description" : "Performs all actions required to audit a Company", - "composite" : true, - "composites" : { - "client" : { - "api-swagger" : [ "user" ], - "integrated-ui" : [ "admin" ] - } - }, - "clientRole" : false, - "containerId" : "medina", - "attributes" : { } - }, { - "id" : "dac0890c-0957-40ed-b72f-37ca91a59d6e", - "name" : "Company", - "description" : "Most of the defined roles are employed by the company. Products of company are being audited", - "composite" : false, - "clientRole" : false, - "containerId" : "medina", - "attributes" : { } - }, { - "id" : "f4c52c7f-c34d-4101-8c11-523dbc526d72", - "name" : "ICO", - "description" : "Internal Control Owner - Responsible for creating internal controls. Executing the internal controls.", - "composite" : false, - "clientRole" : false, - "containerId" : "medina", - "attributes" : { } - }, { - "id" : "ec325a48-83c2-4b16-96be-305dc4767132", - "name" : "uma_authorization", - "description" : "${role_uma_authorization}", - "composite" : false, - "clientRole" : false, - "containerId" : "medina", - "attributes" : { } - }, { - "id" : "64dbcf9f-4231-4163-828a-5fa4fe9db278", - "name" : "CISO", - "description" : "Chief Information Security Officer - Responsible for security in the company, chooses what security controls should be implemented", - "composite" : false, - "clientRole" : false, - "containerId" : "medina", - "attributes" : { } - }, { - "id" : "e7c3caa6-1e16-4cf6-9484-b0af649117df", - "name" : "Compliance Manager", - "description" : "Responsible for the implementation of security control frameworks.\nResponsible for the correct implementation of the internal controls.\nResponsible for incident management.\nResponsible for performing internal audits.", - "composite" : true, - "composites" : { - "client" : { - "cnl-editor-frontend" : [ "user" ], - "integrated-ui" : [ "user", "admin" ], - "nl2cnl-translator-client" : [ "user" ] - } - }, - "clientRole" : false, - "containerId" : "medina", - "attributes" : { } - }, { - "id" : "fd93daa9-1357-4ba3-989d-7bf4b7ba2a07", - "name" : "ROLE_ADMIN", - "description" : "temporary role for catalogue jhipster", - "composite" : false, - "clientRole" : false, - "containerId" : "medina", - "attributes" : { } - } ], - "client" : { - "catalogue-backend" : [ ], - "raof-app" : [ { - "id" : "9f63da36-943c-4b9e-a92e-2632a76663dd", - "name" : "uma_protection", - "composite" : false, - "clientRole" : true, - "containerId" : "b1293ae0-e720-40cb-ae6f-db7fc9b1fe92", - "attributes" : { } - } ], - "security-admin-console" : [ ], - "wazuh-vat-evidence-collector-dev" : [ { - "id" : "3c40a84f-dc61-43d1-a607-e3fad0df3766", - "name" : "uma_protection", - "composite" : false, - "clientRole" : true, - "containerId" : "aa18689d-6d81-4b92-8b9e-291eb4733408", - "attributes" : { } - } ], - "clouditor-assessment" : [ ], - "account-console" : [ ], - "amoe-client" : [ ], - "cce-dev" : [ { - "id" : "aa5844fb-a4f8-4cfa-8514-1f4033e8bd9c", - "name" : "uma_protection", - "composite" : false, - "clientRole" : true, - "containerId" : "dc64b28b-a696-4b0c-8e24-2aeae138c3e5", - "attributes" : { } - } ], - "clouditor-cli" : [ ], - "codyze" : [ ], - "admin-cli" : [ ], - "catalogue-jhipster-control-center" : [ ], - "catalogue-registry" : [ ], - "realm-management" : [ { - "id" : "e02ce89a-c0b9-43b5-b6be-5c515624927a", - "name" : "manage-clients", - "description" : "${role_manage-clients}", - "composite" : false, - "clientRole" : true, - "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", - "attributes" : { } - }, { - "id" : "5bc05c8b-6d6a-45a1-92f7-cc33f4fe57bd", - "name" : "view-authorization", - "description" : "${role_view-authorization}", - "composite" : false, - "clientRole" : true, - "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", - "attributes" : { } - }, { - "id" : "0ee5608f-ab3a-4a8e-889b-e0d230a2fc86", - "name" : "view-clients", - "description" : "${role_view-clients}", - "composite" : true, - "composites" : { - "client" : { - "realm-management" : [ "query-clients" ] - } - }, - "clientRole" : true, - "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", - "attributes" : { } - }, { - "id" : "c2bd9190-451c-45d7-9588-412e1c40d5fd", - "name" : "manage-authorization", - "description" : "${role_manage-authorization}", - "composite" : false, - "clientRole" : true, - "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", - "attributes" : { } - }, { - "id" : "83e3e683-50b5-4050-b88b-2178342a13f8", - "name" : "manage-events", - "description" : "${role_manage-events}", - "composite" : false, - "clientRole" : true, - "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", - "attributes" : { } - }, { - "id" : "4e9c2113-f0d3-4691-bb66-49e3ca218d63", - "name" : "query-clients", - "description" : "${role_query-clients}", - "composite" : false, - "clientRole" : true, - "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", - "attributes" : { } - }, { - "id" : "cdca2718-5853-4969-9b63-2186e0382085", - "name" : "query-realms", - "description" : "${role_query-realms}", - "composite" : false, - "clientRole" : true, - "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", - "attributes" : { } - }, { - "id" : "33eb311b-fdbc-4ccf-b367-ae2b1c8c2e55", - "name" : "view-users", - "description" : "${role_view-users}", - "composite" : true, - "composites" : { - "client" : { - "realm-management" : [ "query-users", "query-groups" ] - } - }, - "clientRole" : true, - "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", - "attributes" : { } - }, { - "id" : "56382323-69f8-4eca-b433-aa14ccc83be3", - "name" : "manage-identity-providers", - "description" : "${role_manage-identity-providers}", - "composite" : false, - "clientRole" : true, - "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", - "attributes" : { } - }, { - "id" : "2db34bf8-3fac-4fb8-8ed4-b7f44cadcb2e", - "name" : "create-client", - "description" : "${role_create-client}", - "composite" : false, - "clientRole" : true, - "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", - "attributes" : { } - }, { - "id" : "ae7b03e5-747f-4341-8add-1c872658bec4", - "name" : "view-events", - "description" : "${role_view-events}", - "composite" : false, - "clientRole" : true, - "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", - "attributes" : { } - }, { - "id" : "a607a195-5e2c-4701-855d-d202ba52a313", - "name" : "manage-users", - "description" : "${role_manage-users}", - "composite" : false, - "clientRole" : true, - "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", - "attributes" : { } - }, { - "id" : "3f2bf59d-4b3f-425a-a75f-e6b8c6d27af0", - "name" : "view-realm", - "description" : "${role_view-realm}", - "composite" : false, - "clientRole" : true, - "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", - "attributes" : { } - }, { - "id" : "d23239ef-028a-4409-b965-e20ea6ac8795", - "name" : "impersonation", - "description" : "${role_impersonation}", - "composite" : false, - "clientRole" : true, - "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", - "attributes" : { } - }, { - "id" : "f724e1e9-a878-4ae3-9bc8-995767add1a3", - "name" : "manage-realm", - "description" : "${role_manage-realm}", - "composite" : false, - "clientRole" : true, - "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", - "attributes" : { } - }, { - "id" : "e6b7421d-7d5c-4f1c-bb48-0a873c9870c4", - "name" : "query-users", - "description" : "${role_query-users}", - "composite" : false, - "clientRole" : true, - "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", - "attributes" : { } - }, { - "id" : "7a81ec99-e710-409d-bd34-ae3642a1912d", - "name" : "view-identity-providers", - "description" : "${role_view-identity-providers}", - "composite" : false, - "clientRole" : true, - "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", - "attributes" : { } - }, { - "id" : "fbeca797-27ee-44a0-8566-bec5666e6bcc", - "name" : "query-groups", - "description" : "${role_query-groups}", - "composite" : false, - "clientRole" : true, - "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", - "attributes" : { } - }, { - "id" : "f9ea5c84-0690-47f4-b887-a3351ca800de", - "name" : "realm-admin", - "description" : "${role_realm-admin}", - "composite" : true, - "composites" : { - "client" : { - "realm-management" : [ "view-authorization", "manage-clients", "view-clients", "manage-authorization", "query-clients", "manage-events", "view-users", "query-realms", "manage-identity-providers", "create-client", "view-events", "view-realm", "manage-users", "impersonation", "manage-realm", "query-users", "view-identity-providers", "query-groups" ] - } - }, - "clientRole" : true, - "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", - "attributes" : { } - } ], - "api-swagger" : [ { - "id" : "a7aa8c9f-7cc5-4c91-8657-31b74ba02a1a", - "name" : "uma_protection", - "composite" : false, - "clientRole" : true, - "containerId" : "a08fc1fe-7c85-4c1c-9d04-604c6e35faa8", - "attributes" : { } - }, { - "id" : "88fa7113-8fd5-4dd4-940d-e0e2e06471d4", - "name" : "user", - "composite" : false, - "clientRole" : true, - "containerId" : "a08fc1fe-7c85-4c1c-9d04-604c6e35faa8", - "attributes" : { } - } ], - "cnl-editor-frontend" : [ { - "id" : "910ffe29-95b3-4b82-a734-b24bff7cfa8d", - "name" : "user", - "composite" : false, - "clientRole" : true, - "containerId" : "15a81bd1-4edd-4e2a-87ec-3bbcac30d2a3", - "attributes" : { } - } ], - "life-cycle-manager" : [ ], - "integrated-ui" : [ { - "id" : "258c00de-d88c-4239-908b-be79f895c3b0", - "name" : "user", - "composite" : false, - "clientRole" : true, - "containerId" : "1150f83f-37bc-4b14-98a0-e179aaee0f6c", - "attributes" : { } - }, { - "id" : "ae424f76-ac11-4a9b-939d-67ab55a0fc5a", - "name" : "admin", - "composite" : false, - "clientRole" : true, - "containerId" : "1150f83f-37bc-4b14-98a0-e179aaee0f6c", - "attributes" : { } - } ], - "ccd-client" : [ ], - "broker" : [ { - "id" : "381e01c5-2dce-4da6-854b-334d015e7224", - "name" : "read-token", - "description" : "${role_read-token}", - "composite" : false, - "clientRole" : true, - "containerId" : "8d1a867d-537c-433e-8234-b3582127cc54", - "attributes" : { } - } ], - "clouditor-ui" : [ ], - "raof" : [ { - "id" : "6de07826-dc41-4208-bc5e-8d64d38cfec2", - "name" : "engine", - "composite" : false, - "clientRole" : true, - "containerId" : "785a9f77-d06f-4a65-9ba9-341921fda61a", - "attributes" : { } - }, { - "id" : "9ecb4267-a5d3-421e-9aad-9b329fe4701d", - "name" : "uma_protection", - "composite" : false, - "clientRole" : true, - "containerId" : "785a9f77-d06f-4a65-9ba9-341921fda61a", - "attributes" : { } - } ], - "nl2cnl-translator-client" : [ { - "id" : "8fdf06d3-6c44-4aa3-bb0a-80dc589ced1c", - "name" : "uma_protection", - "composite" : false, - "clientRole" : true, - "containerId" : "9f7c65f7-9ae9-4c9e-9bd7-971d0cbe146d", - "attributes" : { } - }, { - "id" : "4486610d-0195-463c-bf2f-cf4cd10001c8", - "name" : "user", - "composite" : false, - "clientRole" : true, - "containerId" : "9f7c65f7-9ae9-4c9e-9bd7-971d0cbe146d", - "attributes" : { } - } ], - "catalogue-gateway" : [ ], - "clouditor-discovery" : [ ], - "account" : [ { - "id" : "ad76fbd3-fd48-4820-8454-c9e6e8b21da5", - "name" : "manage-consent", - "description" : "${role_manage-consent}", - "composite" : true, - "composites" : { - "client" : { - "account" : [ "view-consent" ] - } - }, - "clientRole" : true, - "containerId" : "8bd89baf-08f6-4e4b-8394-6b4dd6050ed2", - "attributes" : { } - }, { - "id" : "3cf9ad63-38af-430f-86da-bf7455dfb668", - "name" : "view-applications", - "description" : "${role_view-applications}", - "composite" : false, - "clientRole" : true, - "containerId" : "8bd89baf-08f6-4e4b-8394-6b4dd6050ed2", - "attributes" : { } - }, { - "id" : "a47fd133-6ba5-4870-af1b-9a17b76be404", - "name" : "view-consent", - "description" : "${role_view-consent}", - "composite" : false, - "clientRole" : true, - "containerId" : "8bd89baf-08f6-4e4b-8394-6b4dd6050ed2", - "attributes" : { } - }, { - "id" : "36ac4d35-7384-40c3-a877-7a2934bc9250", - "name" : "manage-account-links", - "description" : "${role_manage-account-links}", - "composite" : false, - "clientRole" : true, - "containerId" : "8bd89baf-08f6-4e4b-8394-6b4dd6050ed2", - "attributes" : { } - }, { - "id" : "3e5612a2-7c5c-4026-a6ac-7a332e266aab", - "name" : "manage-account", - "description" : "${role_manage-account}", - "composite" : true, - "composites" : { - "client" : { - "account" : [ "manage-account-links" ] - } - }, - "clientRole" : true, - "containerId" : "8bd89baf-08f6-4e4b-8394-6b4dd6050ed2", - "attributes" : { } - }, { - "id" : "1062c184-cad0-462d-ad3a-d51d5208536c", - "name" : "delete-account", - "description" : "${role_delete-account}", - "composite" : false, - "clientRole" : true, - "containerId" : "8bd89baf-08f6-4e4b-8394-6b4dd6050ed2", - "attributes" : { } - }, { - "id" : "d1a2381b-d165-43fb-a79d-8c614c46b96e", - "name" : "view-profile", - "description" : "${role_view-profile}", - "composite" : false, - "clientRole" : true, - "containerId" : "8bd89baf-08f6-4e4b-8394-6b4dd6050ed2", - "attributes" : { } - } ] - } - }, - "groups" : [ { - "id" : "b18d27ac-f4dc-4e3b-b488-e59e3af21eb5", - "name" : "TestCloudService", - "path" : "/TestCloudService", - "attributes" : { - "cloudserviceid" : [ "cf52d866-993f-11ec-b909-0242ac120002" ] - }, - "realmRoles" : [ ], - "clientRoles" : { }, - "subGroups" : [ ] - }, { - "id" : "fe88c642-63e3-4223-ab55-ded3d4edc650", - "name" : "TestCloudService2", - "path" : "/TestCloudService2", - "attributes" : { - "cloudserviceid" : [ "793dcdfe-9940-11ec-b909-0242ac120002" ] - }, - "realmRoles" : [ ], - "clientRoles" : { }, - "subGroups" : [ ] - } ], - "defaultRoles" : [ "offline_access", "uma_authorization" ], - "requiredCredentials" : [ "password" ], - "otpPolicyType" : "totp", - "otpPolicyAlgorithm" : "HmacSHA1", - "otpPolicyInitialCounter" : 0, - "otpPolicyDigits" : 6, - "otpPolicyLookAheadWindow" : 1, - "otpPolicyPeriod" : 30, - "otpSupportedApplications" : [ "FreeOTP", "Google Authenticator" ], - "webAuthnPolicyRpEntityName" : "keycloak", - "webAuthnPolicySignatureAlgorithms" : [ "ES256" ], - "webAuthnPolicyRpId" : "", - "webAuthnPolicyAttestationConveyancePreference" : "not specified", - "webAuthnPolicyAuthenticatorAttachment" : "not specified", - "webAuthnPolicyRequireResidentKey" : "not specified", - "webAuthnPolicyUserVerificationRequirement" : "not specified", - "webAuthnPolicyCreateTimeout" : 0, - "webAuthnPolicyAvoidSameAuthenticatorRegister" : false, - "webAuthnPolicyAcceptableAaguids" : [ ], - "webAuthnPolicyPasswordlessRpEntityName" : "keycloak", - "webAuthnPolicyPasswordlessSignatureAlgorithms" : [ "ES256" ], - "webAuthnPolicyPasswordlessRpId" : "", - "webAuthnPolicyPasswordlessAttestationConveyancePreference" : "not specified", - "webAuthnPolicyPasswordlessAuthenticatorAttachment" : "not specified", - "webAuthnPolicyPasswordlessRequireResidentKey" : "not specified", - "webAuthnPolicyPasswordlessUserVerificationRequirement" : "not specified", - "webAuthnPolicyPasswordlessCreateTimeout" : 0, - "webAuthnPolicyPasswordlessAvoidSameAuthenticatorRegister" : false, - "webAuthnPolicyPasswordlessAcceptableAaguids" : [ ], - "users" : [ { - "id" : "bb6244c3-35ec-4908-b4e0-73b159cc7a04", - "createdTimestamp" : 1646126460390, - "username" : "admin", - "enabled" : true, - "totp" : false, - "emailVerified" : true, - "firstName" : "admin", - "email" : "admin@localhost", - "credentials" : [ { - "id" : "4525a467-f0db-47e7-9f5a-edae4109844a", - "type" : "password", - "createdDate" : 1646126469027, - "secretData" : "{\"value\":\"BaRnqXmvxOYEu8fmlMYD+tpEIhbvW6m4KR9lzAl4f02Lt2WBUK2v7S/QobMoYEXqGWQxLpJnpsUcKlY9YGSiMw==\",\"salt\":\"rjK2JqIKXPdb1A03p8VcQw==\",\"additionalParameters\":{}}", - "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" - } ], - "disableableCredentialTypes" : [ ], - "requiredActions" : [ ], - "realmRoles" : [ "ROLE_USER", "offline_access", "Auditor", "uma_authorization", "ROLE_ADMIN", "Compliance Manager" ], - "clientRoles" : { - "raof" : [ "engine" ], - "integrated-ui" : [ "user" ], - "account" : [ "manage-account", "view-profile" ] - }, - "notBefore" : 0, - "groups" : [ "/TestCloudService2" ] - }, { - "id" : "08fbe789-4ada-4b3a-bcf1-dc20b469911b", - "createdTimestamp" : 1646739467160, - "username" : "amoe_test", - "enabled" : true, - "totp" : false, - "emailVerified" : false, - "credentials" : [ { - "id" : "da7be389-1b6a-42fa-8eb6-95fc83dc1cfa", - "type" : "password", - "createdDate" : 1646739496443, - "secretData" : "{\"value\":\"lTtYEaVM4t3lHrJFxAYu3MY54718QfBIva07Xd86InMCQE1D9jZY2bUCQJ15q+PdYerIU69YLRzXFkurv+BjLA==\",\"salt\":\"pKFJXLTaUzNsEouOGiIDVg==\",\"additionalParameters\":{}}", - "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" - } ], - "disableableCredentialTypes" : [ ], - "requiredActions" : [ ], - "realmRoles" : [ "offline_access", "uma_authorization" ], - "clientRoles" : { - "account" : [ "manage-account", "view-profile" ] - }, - "notBefore" : 0, - "groups" : [ ] - }, { - "id" : "5b083c04-bbda-48be-8441-fbe16968902b", - "createdTimestamp" : 1650710929018, - "username" : "cnr-user", - "enabled" : true, - "totp" : false, - "emailVerified" : false, - "firstName" : "Stefano", - "lastName" : "Fagnano", - "email" : "stefano.fagnano@me.com", - "credentials" : [ { - "id" : "fe14429e-56cf-4810-8ca2-7fab0ea81a80", - "type" : "password", - "createdDate" : 1650710973177, - "secretData" : "{\"value\":\"t+/Zdw3TRlptIsNjJh22t1t2rJmNsanwsZkqfgI0++tKxhnq8pMZCHmX8RTLuotokLNPjzC+oWTxpOjdQwJ5vg==\",\"salt\":\"7NvfqfUVIqeY9uVBwG5+kw==\",\"additionalParameters\":{}}", - "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" - } ], - "disableableCredentialTypes" : [ ], - "requiredActions" : [ ], - "realmRoles" : [ "offline_access", "uma_authorization" ], - "clientRoles" : { - "raof" : [ "engine" ], - "integrated-ui" : [ "user" ], - "account" : [ "manage-account", "view-profile" ] - }, - "notBefore" : 0, - "groups" : [ ] - }, { - "id" : "1247915b-d17c-4b5b-aad6-889c24225420", - "createdTimestamp" : 1646842473867, - "username" : "fabasoftpe", - "enabled" : true, - "totp" : false, - "emailVerified" : false, - "credentials" : [ { - "id" : "99ea9dc6-b4b3-4e0b-8aa9-2ecf58daa670", - "type" : "password", - "createdDate" : 1646842549296, - "secretData" : "{\"value\":\"rjCSXoy+G2SbrGgLqP8Qtx9eJYGheRLzVaZ2W7tZ7SO14I9K7W0GZFK7gg/wwZe7fNCT4c+kTWuuK42cR7JAiA==\",\"salt\":\"ViuDtUVx++5GGlqT+Kajvg==\",\"additionalParameters\":{}}", - "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" - } ], - "disableableCredentialTypes" : [ ], - "requiredActions" : [ ], - "realmRoles" : [ "offline_access", "uma_authorization", "Compliance Manager" ], - "clientRoles" : { - "account" : [ "manage-account", "view-profile" ] - }, - "notBefore" : 0, - "groups" : [ ] - }, { - "id" : "dbdb2c43-a90d-4bd8-a29a-c23d00e8a5fc", - "createdTimestamp" : 1646842573862, - "username" : "lawexpert", - "enabled" : true, - "totp" : false, - "emailVerified" : false, - "credentials" : [ { - "id" : "47c67cc2-9fec-471f-aee3-b93cb8fb50d4", - "type" : "password", - "createdDate" : 1646842584938, - "secretData" : "{\"value\":\"4u0v3JqYQ/m7qYSuG8gcxfdMveQyTLkOK1t9YTXsdH9b6XWmcmx+eemKvvZzlhGLrZ2JoyRv3Emr7E3gacWvbw==\",\"salt\":\"hKwIjTGtDpDCPw0r7xFMyA==\",\"additionalParameters\":{}}", - "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" - } ], - "disableableCredentialTypes" : [ ], - "requiredActions" : [ ], - "realmRoles" : [ "offline_access", "uma_authorization", "Compliance Manager" ], - "clientRoles" : { - "account" : [ "manage-account", "view-profile" ] - }, - "notBefore" : 0, - "groups" : [ ] - }, { - "id" : "5459884f-0e81-4541-b0f7-039143074658", - "createdTimestamp" : 1647939833771, - "username" : "nl2cnl_test", - "enabled" : true, - "totp" : false, - "emailVerified" : false, - "credentials" : [ { - "id" : "4e0de4fc-6cc3-41d8-a47c-f227054b51c8", - "type" : "password", - "createdDate" : 1647967133486, - "secretData" : "{\"value\":\"X93ciaDawh7DTl22Z7IUFdC5frMNfPQf20ozhaUjMVHg0yXsQyG16kZVY7BfTWj43CamWVxnJ3fAJ3nm/DjGmA==\",\"salt\":\"bHm4jda9dLNZLfl5wjYZoQ==\",\"additionalParameters\":{}}", - "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" - } ], - "disableableCredentialTypes" : [ ], - "requiredActions" : [ ], - "realmRoles" : [ "offline_access", "uma_authorization" ], - "clientRoles" : { - "account" : [ "manage-account", "view-profile" ] - }, - "notBefore" : 0, - "groups" : [ ] - }, { - "id" : "bb6d0c7f-e4ea-4f42-9375-f741b1ebac97", - "createdTimestamp" : 1646841881112, - "username" : "policyexpert", - "enabled" : true, - "totp" : false, - "emailVerified" : false, - "credentials" : [ { - "id" : "f9c4ca91-072f-418e-8bfb-0ef499620490", - "type" : "password", - "createdDate" : 1646841889121, - "secretData" : "{\"value\":\"6OlHWWs4Bad2qqMXi7PdiCAsNLjQTmbhgssnGuFAlTeMJeI/k48B8ahGyrJ2RYO4WcM29yBCEBZoZOWx7QUXEQ==\",\"salt\":\"FUl+Hwy2OqSWb+po3PvAGQ==\",\"additionalParameters\":{}}", - "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" - } ], - "disableableCredentialTypes" : [ ], - "requiredActions" : [ ], - "realmRoles" : [ "offline_access", "uma_authorization", "Compliance Manager" ], - "clientRoles" : { - "account" : [ "manage-account", "view-profile" ] - }, - "notBefore" : 0, - "groups" : [ ] - }, { - "id" : "7fcfeba8-2512-4c10-b1e8-fac6d623a83e", - "createdTimestamp" : 1647940816157, - "username" : "service-account-admin-cli", - "enabled" : true, - "totp" : false, - "emailVerified" : false, - "serviceAccountClientId" : "admin-cli", - "credentials" : [ ], - "disableableCredentialTypes" : [ ], - "requiredActions" : [ ], - "realmRoles" : [ "offline_access", "uma_authorization" ], - "clientRoles" : { - "account" : [ "manage-account", "view-profile" ] - }, - "notBefore" : 0, - "groups" : [ ] - }, { - "id" : "465eb553-71ea-47bb-8557-3753e1679b0b", - "createdTimestamp" : 1648629087836, - "username" : "service-account-api-swagger", - "enabled" : true, - "totp" : false, - "emailVerified" : false, - "serviceAccountClientId" : "api-swagger", - "credentials" : [ ], - "disableableCredentialTypes" : [ ], - "requiredActions" : [ ], - "realmRoles" : [ "offline_access", "uma_authorization" ], - "clientRoles" : { - "api-swagger" : [ "uma_protection" ], - "account" : [ "manage-account", "view-profile" ] - }, - "notBefore" : 0, - "groups" : [ ] - }, { - "id" : "4ccb51e5-5911-4052-914b-41120086c8ef", - "createdTimestamp" : 1648043982626, - "username" : "service-account-catalogue-backend", - "enabled" : true, - "totp" : false, - "emailVerified" : false, - "serviceAccountClientId" : "catalogue-backend", - "credentials" : [ ], - "disableableCredentialTypes" : [ ], - "requiredActions" : [ ], - "realmRoles" : [ "offline_access", "uma_authorization" ], - "clientRoles" : { - "account" : [ "manage-account", "view-profile" ] - }, - "notBefore" : 0, - "groups" : [ ] - }, { - "id" : "72b2d795-8d27-4aa7-a935-4c1ce274f27d", - "createdTimestamp" : 1650355454172, - "username" : "service-account-cce-dev", - "enabled" : true, - "totp" : false, - "emailVerified" : false, - "serviceAccountClientId" : "cce-dev", - "credentials" : [ ], - "disableableCredentialTypes" : [ ], - "requiredActions" : [ ], - "realmRoles" : [ "offline_access", "uma_authorization" ], - "clientRoles" : { - "cce-dev" : [ "uma_protection" ], - "account" : [ "manage-account", "view-profile" ] - }, - "notBefore" : 0, - "groups" : [ ] - }, { - "id" : "4aafc668-9855-44b2-a079-a271a3c4a515", - "createdTimestamp" : 1646860326928, - "username" : "service-account-clouditor-assessment", - "enabled" : true, - "totp" : false, - "emailVerified" : false, - "serviceAccountClientId" : "clouditor-assessment", - "credentials" : [ ], - "disableableCredentialTypes" : [ ], - "requiredActions" : [ ], - "realmRoles" : [ "offline_access", "uma_authorization" ], - "clientRoles" : { - "account" : [ "manage-account", "view-profile" ] - }, - "notBefore" : 0, - "groups" : [ ] - }, { - "id" : "89145876-b402-435f-bcfc-1a5da1f948ac", - "createdTimestamp" : 1646860316152, - "username" : "service-account-clouditor-discovery", - "enabled" : true, - "totp" : false, - "emailVerified" : false, - "serviceAccountClientId" : "clouditor-discovery", - "credentials" : [ ], - "disableableCredentialTypes" : [ ], - "requiredActions" : [ ], - "realmRoles" : [ "offline_access", "uma_authorization" ], - "clientRoles" : { - "account" : [ "manage-account", "view-profile" ] - }, - "notBefore" : 0, - "groups" : [ ] - }, { - "id" : "a5916f7c-3494-4b8b-a899-d6424762a7e8", - "createdTimestamp" : 1646917353062, - "username" : "service-account-codyze", - "enabled" : true, - "totp" : false, - "emailVerified" : false, - "serviceAccountClientId" : "codyze", - "credentials" : [ ], - "disableableCredentialTypes" : [ ], - "requiredActions" : [ ], - "realmRoles" : [ "offline_access", "uma_authorization" ], - "clientRoles" : { - "account" : [ "manage-account", "view-profile" ] - }, - "notBefore" : 0, - "groups" : [ ] - }, { - "id" : "6e8ff208-0ede-436c-b1ee-b853d33c3d81", - "createdTimestamp" : 1646998107929, - "username" : "service-account-life-cycle-manager", - "enabled" : true, - "totp" : false, - "emailVerified" : false, - "serviceAccountClientId" : "life-cycle-manager", - "credentials" : [ ], - "disableableCredentialTypes" : [ ], - "requiredActions" : [ ], - "realmRoles" : [ "offline_access", "uma_authorization" ], - "clientRoles" : { - "account" : [ "manage-account", "view-profile" ] - }, - "notBefore" : 0, - "groups" : [ ] - }, { - "id" : "7cdaece4-9f13-4a89-9e46-f56a3cee862e", - "createdTimestamp" : 1647940729928, - "username" : "service-account-nl2cnl-translator-client", - "enabled" : true, - "totp" : false, - "emailVerified" : false, - "serviceAccountClientId" : "nl2cnl-translator-client", - "credentials" : [ ], - "disableableCredentialTypes" : [ ], - "requiredActions" : [ ], - "realmRoles" : [ "offline_access", "uma_authorization" ], - "clientRoles" : { - "nl2cnl-translator-client" : [ "uma_protection" ], - "account" : [ "manage-account", "view-profile" ] - }, - "notBefore" : 0, - "groups" : [ ] - }, { - "id" : "20913f11-a80b-4b95-9e9c-3b7318275a9f", - "createdTimestamp" : 1650445410351, - "username" : "service-account-raof", - "enabled" : true, - "totp" : false, - "emailVerified" : false, - "serviceAccountClientId" : "raof", - "credentials" : [ ], - "disableableCredentialTypes" : [ ], - "requiredActions" : [ ], - "realmRoles" : [ "offline_access", "uma_authorization" ], - "clientRoles" : { - "raof" : [ "uma_protection" ], - "account" : [ "manage-account", "view-profile" ] - }, - "notBefore" : 0, - "groups" : [ ] - }, { - "id" : "43256450-bcb4-4115-ae7b-952462768dde", - "createdTimestamp" : 1650957338070, - "username" : "service-account-raof-app", - "enabled" : true, - "totp" : false, - "emailVerified" : false, - "serviceAccountClientId" : "raof-app", - "credentials" : [ ], - "disableableCredentialTypes" : [ ], - "requiredActions" : [ ], - "realmRoles" : [ "offline_access", "uma_authorization" ], - "clientRoles" : { - "raof-app" : [ "uma_protection" ], - "account" : [ "manage-account", "view-profile" ] - }, - "notBefore" : 0, - "groups" : [ ] - }, { - "id" : "d12a0ea0-d7d4-4194-b8f7-6e1190bbfcff", - "createdTimestamp" : 1650377634668, - "username" : "service-account-wazuh-vat-evidence-collector-dev", - "enabled" : true, - "totp" : false, - "emailVerified" : false, - "serviceAccountClientId" : "wazuh-vat-evidence-collector-dev", - "credentials" : [ ], - "disableableCredentialTypes" : [ ], - "requiredActions" : [ ], - "realmRoles" : [ "offline_access", "uma_authorization" ], - "clientRoles" : { - "wazuh-vat-evidence-collector-dev" : [ "uma_protection" ], - "account" : [ "manage-account", "view-profile" ] - }, - "notBefore" : 0, - "groups" : [ ] - }, { - "id" : "388c9e25-e443-4e6f-b99d-0eafe23def6d", - "createdTimestamp" : 1649755577157, - "username" : "tqqyslvjxn8oaaxkrkukjemcx3dfuu4muiukirgxgf8=", - "enabled" : true, - "totp" : false, - "emailVerified" : false, - "firstName" : "Patrick", - "lastName" : "Weiss", - "email" : "patrick.weiss3@de.bosch.com", - "credentials" : [ ], - "disableableCredentialTypes" : [ ], - "requiredActions" : [ ], - "federatedIdentities" : [ { - "identityProvider" : "oidc", - "userId" : "TQQySlVjXN8OaaXkrKUKJEMCx3dfuu4MuIuKiRgXgF8=", - "userName" : "tqqyslvjxn8oaaxkrkukjemcx3dfuu4muiukirgxgf8=" - } ], - "realmRoles" : [ "offline_access", "uma_authorization", "Compliance Manager" ], - "clientRoles" : { - "integrated-ui" : [ "user", "admin" ], - "account" : [ "manage-account", "view-profile" ] - }, - "notBefore" : 0, - "groups" : [ ] - }, { - "id" : "a2d9c454-960f-47e9-860e-e1876cdd81e7", - "createdTimestamp" : 1648054983093, - "username" : "user", - "enabled" : true, - "totp" : false, - "emailVerified" : false, - "firstName" : "U.", - "lastName" : "Ser", - "email" : "user@localhost", - "credentials" : [ { - "id" : "b6a60d24-da76-47f4-a07b-885bac646b7a", - "type" : "password", - "createdDate" : 1650406346090, - "secretData" : "{\"value\":\"NTNpm0k7ky3gLf9pcYTklGY8qn0LPwCrhUYu94nhHVUl1vp5IHb5eSjgFJjpFaKKObNDcz7qJFWjyJ/mWCtwGA==\",\"salt\":\"fQAJhWFTktzewkFQ5ypbRQ==\",\"additionalParameters\":{}}", - "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" - } ], - "disableableCredentialTypes" : [ ], - "requiredActions" : [ ], - "realmRoles" : [ "ROLE_USER", "offline_access", "Auditor", "uma_authorization" ], - "clientRoles" : { - "account" : [ "manage-account", "view-profile" ] - }, - "notBefore" : 0, - "groups" : [ ] - } ], - "scopeMappings" : [ { - "clientScope" : "offline_access", - "roles" : [ "offline_access" ] - } ], - "clientScopeMappings" : { - "account" : [ { - "client" : "account-console", - "roles" : [ "manage-account" ] - } ] - }, - "clients" : [ { - "id" : "8bd89baf-08f6-4e4b-8394-6b4dd6050ed2", - "clientId" : "account", - "name" : "${client_account}", - "rootUrl" : "${authBaseUrl}", - "baseUrl" : "/realms/medina/account/", - "surrogateAuthRequired" : false, - "enabled" : true, - "alwaysDisplayInConsole" : false, - "clientAuthenticatorType" : "client-secret", - "secret" : "533f8bfc-73ca-4950-a17e-29510052e70a", - "defaultRoles" : [ "manage-account", "view-profile" ], - "redirectUris" : [ "/realms/medina/account/*" ], - "webOrigins" : [ ], - "notBefore" : 0, - "bearerOnly" : false, - "consentRequired" : false, - "standardFlowEnabled" : true, - "implicitFlowEnabled" : false, - "directAccessGrantsEnabled" : false, - "serviceAccountsEnabled" : false, - "publicClient" : false, - "frontchannelLogout" : false, - "protocol" : "openid-connect", - "attributes" : { }, - "authenticationFlowBindingOverrides" : { }, - "fullScopeAllowed" : false, - "nodeReRegistrationTimeout" : 0, - "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], - "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] - }, { - "id" : "8f7fee7a-d32e-4c08-85fd-0a92ace43970", - "clientId" : "account-console", - "name" : "${client_account-console}", - "rootUrl" : "${authBaseUrl}", - "baseUrl" : "/realms/medina/account/", - "surrogateAuthRequired" : false, - "enabled" : true, - "alwaysDisplayInConsole" : false, - "clientAuthenticatorType" : "client-secret", - "secret" : "0ffbdc8a-e2b4-4693-abc0-cf08d0a3127e", - "redirectUris" : [ "/realms/medina/account/*" ], - "webOrigins" : [ ], - "notBefore" : 0, - "bearerOnly" : false, - "consentRequired" : false, - "standardFlowEnabled" : true, - "implicitFlowEnabled" : false, - "directAccessGrantsEnabled" : false, - "serviceAccountsEnabled" : false, - "publicClient" : true, - "frontchannelLogout" : false, - "protocol" : "openid-connect", - "attributes" : { - "pkce.code.challenge.method" : "S256" - }, - "authenticationFlowBindingOverrides" : { }, - "fullScopeAllowed" : false, - "nodeReRegistrationTimeout" : 0, - "protocolMappers" : [ { - "id" : "edc42cad-bd34-4811-8354-0adaee774340", - "name" : "audience resolve", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-audience-resolve-mapper", - "consentRequired" : false, - "config" : { } - } ], - "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], - "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] - }, { - "id" : "24244b46-4845-4734-a061-bcb8ec91b84c", - "clientId" : "admin-cli", - "name" : "${client_admin-cli}", - "surrogateAuthRequired" : false, - "enabled" : true, - "alwaysDisplayInConsole" : false, - "clientAuthenticatorType" : "client-secret", - "secret" : "c29d2164-1f3d-476b-951c-c5eea7518fd6", - "redirectUris" : [ ], - "webOrigins" : [ ], - "notBefore" : 0, - "bearerOnly" : false, - "consentRequired" : false, - "standardFlowEnabled" : false, - "implicitFlowEnabled" : false, - "directAccessGrantsEnabled" : true, - "serviceAccountsEnabled" : true, - "publicClient" : false, - "frontchannelLogout" : false, - "protocol" : "openid-connect", - "attributes" : { - "saml.assertion.signature" : "false", - "saml.force.post.binding" : "false", - "saml.multivalued.roles" : "false", - "saml.encrypt" : "false", - "backchannel.logout.revoke.offline.tokens" : "false", - "saml.server.signature" : "false", - "saml.server.signature.keyinfo.ext" : "false", - "exclude.session.state.from.auth.response" : "false", - "backchannel.logout.session.required" : "false", - "client_credentials.use_refresh_token" : "false", - "saml_force_name_id_format" : "false", - "saml.client.signature" : "false", - "tls.client.certificate.bound.access.tokens" : "false", - "saml.authnstatement" : "false", - "display.on.consent.screen" : "false", - "saml.onetimeuse.condition" : "false" - }, - "authenticationFlowBindingOverrides" : { }, - "fullScopeAllowed" : true, - "nodeReRegistrationTimeout" : 0, - "protocolMappers" : [ { - "id" : "8b8f8749-0adc-492d-a73d-3029413881be", - "name" : "Client ID", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientId", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientId", - "jsonType.label" : "String" - } - }, { - "id" : "6117fb7e-ecbe-4f0f-90da-d5a5c805e5d7", - "name" : "Client IP Address", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientAddress", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientAddress", - "jsonType.label" : "String" - } - }, { - "id" : "786a08b5-a459-43d0-b0d4-1d45a084a14a", - "name" : "Client Host", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientHost", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientHost", - "jsonType.label" : "String" - } - } ], - "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], - "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] - }, { - "id" : "a25b15fc-202b-4dc6-9340-fcc94f491a24", - "clientId" : "amoe-client", - "rootUrl" : "https://api-assessment-and-management-of-organisational-evidences-dev.k8s.medina.esilab.org/", - "adminUrl" : "https://api-assessment-and-management-of-organisational-evidences-dev.k8s.medina.esilab.org/", - "surrogateAuthRequired" : false, - "enabled" : true, - "alwaysDisplayInConsole" : false, - "clientAuthenticatorType" : "client-secret", - "secret" : "54d58c5f-dfd7-4902-819c-5b316ca13770", - "redirectUris" : [ "*" ], - "webOrigins" : [ "*" ], - "notBefore" : 0, - "bearerOnly" : false, - "consentRequired" : false, - "standardFlowEnabled" : true, - "implicitFlowEnabled" : false, - "directAccessGrantsEnabled" : true, - "serviceAccountsEnabled" : false, - "publicClient" : false, - "frontchannelLogout" : false, - "protocol" : "openid-connect", - "attributes" : { - "saml.assertion.signature" : "false", - "saml.force.post.binding" : "false", - "saml.multivalued.roles" : "false", - "saml.encrypt" : "false", - "backchannel.logout.revoke.offline.tokens" : "false", - "saml.server.signature" : "false", - "saml.server.signature.keyinfo.ext" : "false", - "exclude.session.state.from.auth.response" : "false", - "backchannel.logout.session.required" : "true", - "client_credentials.use_refresh_token" : "false", - "saml_force_name_id_format" : "false", - "saml.client.signature" : "false", - "tls.client.certificate.bound.access.tokens" : "false", - "saml.authnstatement" : "false", - "display.on.consent.screen" : "false", - "saml.onetimeuse.condition" : "false" - }, - "authenticationFlowBindingOverrides" : { }, - "fullScopeAllowed" : true, - "nodeReRegistrationTimeout" : -1, - "protocolMappers" : [ { - "id" : "7adfc5e5-5248-4737-8b84-78567a897980", - "name" : "Client Host", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientHost", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientHost", - "jsonType.label" : "String" - } - }, { - "id" : "f96e6e25-77e4-4ffe-a4ca-5081f6dd3488", - "name" : "Client ID", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientId", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientId", - "jsonType.label" : "String" - } - }, { - "id" : "0078d78f-a368-41c5-9c41-16ba08b0dd64", - "name" : "Client IP Address", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientAddress", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientAddress", - "jsonType.label" : "String" - } - } ], - "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], - "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] - }, { - "id" : "a08fc1fe-7c85-4c1c-9d04-604c6e35faa8", - "clientId" : "api-swagger", - "rootUrl" : "https://api-swagger-dev.k8s.medina.esilab.org", - "adminUrl" : "https://api-swagger-dev.k8s.medina.esilab.org", - "surrogateAuthRequired" : false, - "enabled" : true, - "alwaysDisplayInConsole" : false, - "clientAuthenticatorType" : "client-secret", - "secret" : "c29a5cf2-52c0-4fa2-89fc-8951fa80ce84", - "redirectUris" : [ "https://api-swagger-dev.k8s.medina.esilab.org/*" ], - "webOrigins" : [ "https://api-swagger-dev.k8s.medina.esilab.org" ], - "notBefore" : 0, - "bearerOnly" : false, - "consentRequired" : false, - "standardFlowEnabled" : true, - "implicitFlowEnabled" : false, - "directAccessGrantsEnabled" : true, - "serviceAccountsEnabled" : true, - "authorizationServicesEnabled" : true, - "publicClient" : false, - "frontchannelLogout" : false, - "protocol" : "openid-connect", - "attributes" : { - "saml.assertion.signature" : "false", - "saml.force.post.binding" : "false", - "saml.multivalued.roles" : "false", - "saml.encrypt" : "false", - "backchannel.logout.revoke.offline.tokens" : "false", - "saml.server.signature" : "false", - "saml.server.signature.keyinfo.ext" : "false", - "exclude.session.state.from.auth.response" : "false", - "backchannel.logout.session.required" : "true", - "client_credentials.use_refresh_token" : "false", - "saml_force_name_id_format" : "false", - "saml.client.signature" : "false", - "tls.client.certificate.bound.access.tokens" : "false", - "saml.authnstatement" : "false", - "display.on.consent.screen" : "false", - "saml.onetimeuse.condition" : "false" - }, - "authenticationFlowBindingOverrides" : { }, - "fullScopeAllowed" : true, - "nodeReRegistrationTimeout" : -1, - "protocolMappers" : [ { - "id" : "a1b33188-ca81-44c0-ba56-772581a94038", - "name" : "Client IP Address", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientAddress", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientAddress", - "jsonType.label" : "String" - } - }, { - "id" : "7455b7e4-2b73-4a6d-b7e6-8434370a7a85", - "name" : "Client Host", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientHost", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientHost", - "jsonType.label" : "String" - } - }, { - "id" : "d9167dc9-6937-4bea-bc20-6e885857ccd0", - "name" : "Client ID", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientId", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientId", - "jsonType.label" : "String" - } - } ], - "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], - "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ], - "authorizationSettings" : { - "allowRemoteResourceManagement" : true, - "policyEnforcementMode" : "ENFORCING", - "resources" : [ { - "name" : "Default Resource", - "type" : "urn:api-swagger:resources:default", - "ownerManagedAccess" : false, - "attributes" : { }, - "_id" : "b8d55282-f977-4e89-9e8e-2b3e8ef07200", - "uris" : [ "/*" ] - } ], - "policies" : [ { - "id" : "9dc0a736-90a6-4428-be5a-0695b9153f93", - "name" : "Default Policy", - "description" : "A policy that grants access only for users within this realm", - "type" : "js", - "logic" : "POSITIVE", - "decisionStrategy" : "AFFIRMATIVE", - "config" : { - "code" : "// by default, grants any permission associated with this policy\n$evaluation.grant();\n" - } - }, { - "id" : "4058b893-6396-4351-ae9c-e4ecf5329d18", - "name" : "Default Permission", - "description" : "A permission that applies to the default resource type", - "type" : "resource", - "logic" : "POSITIVE", - "decisionStrategy" : "UNANIMOUS", - "config" : { - "defaultResourceType" : "urn:api-swagger:resources:default", - "applyPolicies" : "[\"Default Policy\"]" - } - } ], - "scopes" : [ ], - "decisionStrategy" : "UNANIMOUS" - } - }, { - "id" : "8d1a867d-537c-433e-8234-b3582127cc54", - "clientId" : "broker", - "name" : "${client_broker}", - "surrogateAuthRequired" : false, - "enabled" : true, - "alwaysDisplayInConsole" : false, - "clientAuthenticatorType" : "client-secret", - "secret" : "4293f846-3a76-4628-a9a4-810bebcdc51b", - "redirectUris" : [ ], - "webOrigins" : [ ], - "notBefore" : 0, - "bearerOnly" : false, - "consentRequired" : false, - "standardFlowEnabled" : true, - "implicitFlowEnabled" : false, - "directAccessGrantsEnabled" : false, - "serviceAccountsEnabled" : false, - "publicClient" : false, - "frontchannelLogout" : false, - "protocol" : "openid-connect", - "attributes" : { }, - "authenticationFlowBindingOverrides" : { }, - "fullScopeAllowed" : false, - "nodeReRegistrationTimeout" : 0, - "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], - "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] - }, { - "id" : "df274002-83dd-4c7f-b64b-8cf7b90d9a97", - "clientId" : "catalogue-backend", - "surrogateAuthRequired" : false, - "enabled" : true, - "alwaysDisplayInConsole" : false, - "clientAuthenticatorType" : "client-secret", - "secret" : "47b59168-f965-4a6f-941c-ae7ee1ba463c", - "redirectUris" : [ ], - "webOrigins" : [ ], - "notBefore" : 0, - "bearerOnly" : false, - "consentRequired" : false, - "standardFlowEnabled" : false, - "implicitFlowEnabled" : false, - "directAccessGrantsEnabled" : false, - "serviceAccountsEnabled" : true, - "publicClient" : false, - "frontchannelLogout" : false, - "protocol" : "openid-connect", - "attributes" : { - "saml.assertion.signature" : "false", - "saml.force.post.binding" : "false", - "saml.multivalued.roles" : "false", - "saml.encrypt" : "false", - "backchannel.logout.revoke.offline.tokens" : "false", - "saml.server.signature" : "false", - "saml.server.signature.keyinfo.ext" : "false", - "exclude.session.state.from.auth.response" : "false", - "backchannel.logout.session.required" : "true", - "client_credentials.use_refresh_token" : "false", - "saml_force_name_id_format" : "false", - "saml.client.signature" : "false", - "tls.client.certificate.bound.access.tokens" : "false", - "saml.authnstatement" : "false", - "display.on.consent.screen" : "false", - "saml.onetimeuse.condition" : "false" - }, - "authenticationFlowBindingOverrides" : { }, - "fullScopeAllowed" : true, - "nodeReRegistrationTimeout" : -1, - "protocolMappers" : [ { - "id" : "6ea5df11-551c-44e4-a4e7-74e787bea43e", - "name" : "Client Host", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientHost", - "userinfo.token.claim" : "true", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientHost", - "jsonType.label" : "String" - } - }, { - "id" : "0544b98a-f678-4395-b3cf-bdb0529a5661", - "name" : "Client IP Address", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientAddress", - "userinfo.token.claim" : "true", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientAddress", - "jsonType.label" : "String" - } - }, { - "id" : "adace2ba-512e-4856-a187-75031220377d", - "name" : "Client ID", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientId", - "userinfo.token.claim" : "true", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientId", - "jsonType.label" : "String" - } - } ], - "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], - "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] - }, { - "id" : "fa074dc3-e8de-4f34-9437-dc5d93f60f9a", - "clientId" : "catalogue-gateway", - "rootUrl" : "https://catalogue-dev.k8s.medina.esilab.org", - "adminUrl" : "https://catalogue-dev.k8s.medina.esilab.org", - "surrogateAuthRequired" : false, - "enabled" : true, - "alwaysDisplayInConsole" : false, - "clientAuthenticatorType" : "client-secret", - "secret" : "1895c8be-10f2-4243-a7da-8443aa1a2851", - "redirectUris" : [ "*" ], - "webOrigins" : [ "*" ], - "notBefore" : 0, - "bearerOnly" : false, - "consentRequired" : false, - "standardFlowEnabled" : true, - "implicitFlowEnabled" : true, - "directAccessGrantsEnabled" : false, - "serviceAccountsEnabled" : false, - "publicClient" : true, - "frontchannelLogout" : false, - "protocol" : "openid-connect", - "attributes" : { - "saml.assertion.signature" : "false", - "saml.force.post.binding" : "false", - "saml.multivalued.roles" : "false", - "saml.encrypt" : "false", - "backchannel.logout.revoke.offline.tokens" : "false", - "saml.server.signature" : "false", - "saml.server.signature.keyinfo.ext" : "false", - "exclude.session.state.from.auth.response" : "false", - "backchannel.logout.session.required" : "true", - "client_credentials.use_refresh_token" : "false", - "saml_force_name_id_format" : "false", - "saml.client.signature" : "false", - "tls.client.certificate.bound.access.tokens" : "false", - "saml.authnstatement" : "false", - "display.on.consent.screen" : "false", - "saml.onetimeuse.condition" : "false" - }, - "authenticationFlowBindingOverrides" : { }, - "fullScopeAllowed" : true, - "nodeReRegistrationTimeout" : -1, - "defaultClientScopes" : [ "web-origins", "jhipster", "role_list", "profile", "roles", "email" ], - "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] - }, { - "id" : "b7769853-8605-4a36-9352-7633d3be0f22", - "clientId" : "catalogue-jhipster-control-center", - "rootUrl" : "http://localhost:7419", - "adminUrl" : "http://localhost:7419", - "surrogateAuthRequired" : false, - "enabled" : true, - "alwaysDisplayInConsole" : false, - "clientAuthenticatorType" : "client-secret", - "secret" : "a77e5efc-e542-4ed2-b8a2-535fe4c4fb34", - "redirectUris" : [ "dev.localhost.ionic:*", "http://127.0.0.1:*", "http://localhost:*", "https://127.0.0.1:*", "https://localhost:*" ], - "webOrigins" : [ "*" ], - "notBefore" : 0, - "bearerOnly" : false, - "consentRequired" : false, - "standardFlowEnabled" : true, - "implicitFlowEnabled" : true, - "directAccessGrantsEnabled" : false, - "serviceAccountsEnabled" : false, - "publicClient" : true, - "frontchannelLogout" : false, - "protocol" : "openid-connect", - "attributes" : { - "saml.assertion.signature" : "false", - "saml.force.post.binding" : "false", - "saml.multivalued.roles" : "false", - "saml.encrypt" : "false", - "backchannel.logout.revoke.offline.tokens" : "false", - "saml.server.signature" : "false", - "saml.server.signature.keyinfo.ext" : "false", - "exclude.session.state.from.auth.response" : "false", - "backchannel.logout.session.required" : "true", - "saml_force_name_id_format" : "false", - "saml.client.signature" : "false", - "tls.client.certificate.bound.access.tokens" : "false", - "saml.authnstatement" : "false", - "display.on.consent.screen" : "false", - "saml.onetimeuse.condition" : "false" - }, - "authenticationFlowBindingOverrides" : { }, - "fullScopeAllowed" : true, - "nodeReRegistrationTimeout" : -1, - "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], - "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] - }, { - "id" : "645cf799-be24-42fd-a169-f9d5fc39be31", - "clientId" : "catalogue-registry", - "rootUrl" : "https://catalogue-registry-dev.k8s.medina.esilab.org", - "adminUrl" : "https://catalogue-registry-dev.k8s.medina.esilab.org", - "surrogateAuthRequired" : false, - "enabled" : true, - "alwaysDisplayInConsole" : false, - "clientAuthenticatorType" : "client-secret", - "secret" : "ff31a06d-d850-48d2-8355-6723e856c1b6", - "redirectUris" : [ "*" ], - "webOrigins" : [ "*" ], - "notBefore" : 0, - "bearerOnly" : false, - "consentRequired" : false, - "standardFlowEnabled" : true, - "implicitFlowEnabled" : false, - "directAccessGrantsEnabled" : true, - "serviceAccountsEnabled" : false, - "publicClient" : true, - "frontchannelLogout" : false, - "protocol" : "openid-connect", - "attributes" : { - "saml.assertion.signature" : "false", - "saml.force.post.binding" : "false", - "saml.multivalued.roles" : "false", - "saml.encrypt" : "false", - "backchannel.logout.revoke.offline.tokens" : "false", - "saml.server.signature" : "false", - "saml.server.signature.keyinfo.ext" : "false", - "exclude.session.state.from.auth.response" : "false", - "backchannel.logout.session.required" : "true", - "saml_force_name_id_format" : "false", - "saml.client.signature" : "false", - "tls.client.certificate.bound.access.tokens" : "false", - "saml.authnstatement" : "false", - "display.on.consent.screen" : "false", - "saml.onetimeuse.condition" : "false" - }, - "authenticationFlowBindingOverrides" : { }, - "fullScopeAllowed" : true, - "nodeReRegistrationTimeout" : -1, - "defaultClientScopes" : [ "web-origins", "jhipster", "role_list", "roles", "profile", "email" ], - "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] - }, { - "id" : "12d63192-94cd-4692-b557-ab76a331eaa6", - "clientId" : "ccd-client", - "name" : "Company compliance dashboard", - "surrogateAuthRequired" : false, - "enabled" : true, - "alwaysDisplayInConsole" : false, - "clientAuthenticatorType" : "client-secret", - "secret" : "cc728558-1c40-48ae-8be4-e48b582a727a", - "redirectUris" : [ "http://localhost:8080/" ], - "webOrigins" : [ ], - "notBefore" : 0, - "bearerOnly" : false, - "consentRequired" : false, - "standardFlowEnabled" : true, - "implicitFlowEnabled" : false, - "directAccessGrantsEnabled" : true, - "serviceAccountsEnabled" : false, - "publicClient" : false, - "frontchannelLogout" : false, - "protocol" : "openid-connect", - "attributes" : { - "saml.assertion.signature" : "false", - "saml.force.post.binding" : "false", - "saml.multivalued.roles" : "false", - "saml.encrypt" : "false", - "backchannel.logout.revoke.offline.tokens" : "false", - "saml.server.signature" : "false", - "saml.server.signature.keyinfo.ext" : "false", - "exclude.session.state.from.auth.response" : "false", - "backchannel.logout.session.required" : "true", - "client_credentials.use_refresh_token" : "false", - "saml_force_name_id_format" : "false", - "saml.client.signature" : "false", - "tls.client.certificate.bound.access.tokens" : "false", - "saml.authnstatement" : "false", - "display.on.consent.screen" : "false", - "saml.onetimeuse.condition" : "false" - }, - "authenticationFlowBindingOverrides" : { }, - "fullScopeAllowed" : true, - "nodeReRegistrationTimeout" : -1, - "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], - "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] - }, { - "id" : "dc64b28b-a696-4b0c-8e24-2aeae138c3e5", - "clientId" : "cce-dev", - "rootUrl" : "http://cce-api-dev.k8s.medina.esilab.org/", - "adminUrl" : "http://cce-api-dev.k8s.medina.esilab.org/", - "surrogateAuthRequired" : false, - "enabled" : true, - "alwaysDisplayInConsole" : false, - "clientAuthenticatorType" : "client-secret", - "secret" : "efe3acb8-b4c1-43f0-a3a2-b75402e76afc", - "redirectUris" : [ "http://cce-api-dev.k8s.medina.esilab.org/*" ], - "webOrigins" : [ "http://cce-api-dev.k8s.medina.esilab.org" ], - "notBefore" : 0, - "bearerOnly" : false, - "consentRequired" : false, - "standardFlowEnabled" : true, - "implicitFlowEnabled" : false, - "directAccessGrantsEnabled" : true, - "serviceAccountsEnabled" : true, - "authorizationServicesEnabled" : true, - "publicClient" : false, - "frontchannelLogout" : false, - "protocol" : "openid-connect", - "attributes" : { - "saml.assertion.signature" : "false", - "saml.force.post.binding" : "false", - "saml.multivalued.roles" : "false", - "saml.encrypt" : "false", - "backchannel.logout.revoke.offline.tokens" : "false", - "saml.server.signature" : "false", - "saml.server.signature.keyinfo.ext" : "false", - "exclude.session.state.from.auth.response" : "false", - "backchannel.logout.session.required" : "true", - "client_credentials.use_refresh_token" : "false", - "saml_force_name_id_format" : "false", - "saml.client.signature" : "false", - "tls.client.certificate.bound.access.tokens" : "false", - "saml.authnstatement" : "false", - "display.on.consent.screen" : "false", - "saml.onetimeuse.condition" : "false" - }, - "authenticationFlowBindingOverrides" : { }, - "fullScopeAllowed" : true, - "nodeReRegistrationTimeout" : -1, - "protocolMappers" : [ { - "id" : "12f94f61-bb5e-41dc-ae0b-20206ff6173c", - "name" : "Client IP Address", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientAddress", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientAddress", - "jsonType.label" : "String" - } - }, { - "id" : "3920d8ac-45ea-4bf5-a203-1c831cb845ab", - "name" : "Client Host", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientHost", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientHost", - "jsonType.label" : "String" - } - }, { - "id" : "5f427941-d12d-432c-b883-ac39fe209705", - "name" : "Client ID", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientId", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientId", - "jsonType.label" : "String" - } - } ], - "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], - "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ], - "authorizationSettings" : { - "allowRemoteResourceManagement" : true, - "policyEnforcementMode" : "ENFORCING", - "resources" : [ { - "name" : "Default Resource", - "type" : "urn:cce-dev:resources:default", - "ownerManagedAccess" : false, - "attributes" : { }, - "_id" : "ef475897-65aa-4813-a810-340268090336", - "uris" : [ "/*" ] - } ], - "policies" : [ { - "id" : "ff85e02d-5048-473c-8bd0-fa22b6574852", - "name" : "Default Policy", - "description" : "A policy that grants access only for users within this realm", - "type" : "js", - "logic" : "POSITIVE", - "decisionStrategy" : "AFFIRMATIVE", - "config" : { - "code" : "// by default, grants any permission associated with this policy\n$evaluation.grant();\n" - } - }, { - "id" : "043cee90-99a8-4f2b-9ad2-3f37ce518483", - "name" : "Default Permission", - "description" : "A permission that applies to the default resource type", - "type" : "resource", - "logic" : "POSITIVE", - "decisionStrategy" : "UNANIMOUS", - "config" : { - "defaultResourceType" : "urn:cce-dev:resources:default", - "applyPolicies" : "[\"Default Policy\"]" - } - } ], - "scopes" : [ ], - "decisionStrategy" : "UNANIMOUS" - } - }, { - "id" : "4a57f2cd-5b99-4b78-ba31-d994521abd30", - "clientId" : "clouditor-assessment", - "surrogateAuthRequired" : false, - "enabled" : true, - "alwaysDisplayInConsole" : false, - "clientAuthenticatorType" : "client-secret", - "secret" : "4a47f42a-df33-418f-b687-64e7c8ffbbda", - "redirectUris" : [ "https://security-assessment-dev.k8s.medina.esilab.org" ], - "webOrigins" : [ ], - "notBefore" : 0, - "bearerOnly" : false, - "consentRequired" : false, - "standardFlowEnabled" : false, - "implicitFlowEnabled" : false, - "directAccessGrantsEnabled" : false, - "serviceAccountsEnabled" : true, - "publicClient" : false, - "frontchannelLogout" : false, - "protocol" : "openid-connect", - "attributes" : { - "saml.assertion.signature" : "false", - "saml.force.post.binding" : "false", - "saml.multivalued.roles" : "false", - "saml.encrypt" : "false", - "backchannel.logout.revoke.offline.tokens" : "false", - "saml.server.signature" : "false", - "saml.server.signature.keyinfo.ext" : "false", - "exclude.session.state.from.auth.response" : "false", - "backchannel.logout.session.required" : "true", - "client_credentials.use_refresh_token" : "false", - "saml_force_name_id_format" : "false", - "saml.client.signature" : "false", - "tls.client.certificate.bound.access.tokens" : "false", - "saml.authnstatement" : "false", - "display.on.consent.screen" : "false", - "saml.onetimeuse.condition" : "false" - }, - "authenticationFlowBindingOverrides" : { }, - "fullScopeAllowed" : true, - "nodeReRegistrationTimeout" : -1, - "protocolMappers" : [ { - "id" : "caf7c5a7-f72e-44d8-aa9d-37c185e415ca", - "name" : "Client ID", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientId", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientId", - "jsonType.label" : "String" - } - }, { - "id" : "7dde8113-bf11-4cb4-be6b-d342ed64b1b6", - "name" : "Client Host", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientHost", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientHost", - "jsonType.label" : "String" - } - }, { - "id" : "1261d141-6010-4868-b659-2ce26e1680b4", - "name" : "Client IP Address", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientAddress", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientAddress", - "jsonType.label" : "String" - } - } ], - "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], - "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] - }, { - "id" : "69bba521-b088-45a6-9e56-bd29e557cea4", - "clientId" : "clouditor-cli", - "surrogateAuthRequired" : false, - "enabled" : true, - "alwaysDisplayInConsole" : false, - "clientAuthenticatorType" : "client-secret", - "secret" : "c3228efe-8dc3-4c09-bc89-8bdc362ae878", - "redirectUris" : [ "http://localhost:10000/callback" ], - "webOrigins" : [ ], - "notBefore" : 0, - "bearerOnly" : false, - "consentRequired" : false, - "standardFlowEnabled" : true, - "implicitFlowEnabled" : false, - "directAccessGrantsEnabled" : false, - "serviceAccountsEnabled" : false, - "publicClient" : true, - "frontchannelLogout" : false, - "protocol" : "openid-connect", - "attributes" : { - "saml.assertion.signature" : "false", - "saml.force.post.binding" : "false", - "saml.multivalued.roles" : "false", - "saml.encrypt" : "false", - "backchannel.logout.revoke.offline.tokens" : "false", - "saml.server.signature" : "false", - "saml.server.signature.keyinfo.ext" : "false", - "exclude.session.state.from.auth.response" : "false", - "backchannel.logout.session.required" : "true", - "client_credentials.use_refresh_token" : "false", - "saml_force_name_id_format" : "false", - "saml.client.signature" : "false", - "tls.client.certificate.bound.access.tokens" : "false", - "saml.authnstatement" : "false", - "display.on.consent.screen" : "false", - "saml.onetimeuse.condition" : "false" - }, - "authenticationFlowBindingOverrides" : { }, - "fullScopeAllowed" : true, - "nodeReRegistrationTimeout" : -1, - "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], - "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] - }, { - "id" : "8fedfacb-2df9-4342-be33-7d3e18dc316f", - "clientId" : "clouditor-discovery", - "surrogateAuthRequired" : false, - "enabled" : true, - "alwaysDisplayInConsole" : false, - "clientAuthenticatorType" : "client-secret", - "secret" : "2f38b7bd-c3fa-4e7b-af59-5b8d67ddd8c1", - "redirectUris" : [ "https://orchestrator-dev.k8s.medina.esilab.org/" ], - "webOrigins" : [ ], - "notBefore" : 0, - "bearerOnly" : false, - "consentRequired" : false, - "standardFlowEnabled" : false, - "implicitFlowEnabled" : false, - "directAccessGrantsEnabled" : false, - "serviceAccountsEnabled" : true, - "publicClient" : false, - "frontchannelLogout" : false, - "protocol" : "openid-connect", - "attributes" : { - "saml.assertion.signature" : "false", - "saml.force.post.binding" : "false", - "saml.multivalued.roles" : "false", - "saml.encrypt" : "false", - "backchannel.logout.revoke.offline.tokens" : "false", - "saml.server.signature" : "false", - "saml.server.signature.keyinfo.ext" : "false", - "exclude.session.state.from.auth.response" : "false", - "backchannel.logout.session.required" : "true", - "client_credentials.use_refresh_token" : "false", - "saml_force_name_id_format" : "false", - "saml.client.signature" : "false", - "tls.client.certificate.bound.access.tokens" : "false", - "saml.authnstatement" : "false", - "display.on.consent.screen" : "false", - "saml.onetimeuse.condition" : "false" - }, - "authenticationFlowBindingOverrides" : { }, - "fullScopeAllowed" : true, - "nodeReRegistrationTimeout" : -1, - "protocolMappers" : [ { - "id" : "8dfab4e0-512c-4879-8878-c949ba32a641", - "name" : "Client Host", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientHost", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientHost", - "jsonType.label" : "String" - } - }, { - "id" : "9bba24ce-80f6-4a69-844d-7406c39d678b", - "name" : "Client ID", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientId", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientId", - "jsonType.label" : "String" - } - }, { - "id" : "112001f6-9584-4949-9d79-4d8e337bb9eb", - "name" : "Client IP Address", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientAddress", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientAddress", - "jsonType.label" : "String" - } - } ], - "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], - "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] - }, { - "id" : "fcf4c413-07b8-40e1-9ee0-2ffa646dfdf5", - "clientId" : "clouditor-ui", - "rootUrl" : "https://orchestrator-dev.k8s.medina.esilab.org", - "surrogateAuthRequired" : false, - "enabled" : true, - "alwaysDisplayInConsole" : false, - "clientAuthenticatorType" : "client-secret", - "secret" : "7a189e46-8e44-4968-9228-2115e84dbcdd", - "redirectUris" : [ "https://orchestrator-dev.k8s.medina.esilab.org/callback" ], - "webOrigins" : [ "https://orchestrator-dev.k8s.medina.esilab.org" ], - "notBefore" : 0, - "bearerOnly" : false, - "consentRequired" : false, - "standardFlowEnabled" : true, - "implicitFlowEnabled" : false, - "directAccessGrantsEnabled" : false, - "serviceAccountsEnabled" : false, - "publicClient" : true, - "frontchannelLogout" : false, - "protocol" : "openid-connect", - "attributes" : { - "saml.assertion.signature" : "false", - "saml.force.post.binding" : "false", - "saml.multivalued.roles" : "false", - "saml.encrypt" : "false", - "backchannel.logout.revoke.offline.tokens" : "false", - "saml.server.signature" : "false", - "saml.server.signature.keyinfo.ext" : "false", - "exclude.session.state.from.auth.response" : "false", - "backchannel.logout.session.required" : "true", - "client_credentials.use_refresh_token" : "false", - "saml_force_name_id_format" : "false", - "saml.client.signature" : "false", - "tls.client.certificate.bound.access.tokens" : "false", - "saml.authnstatement" : "false", - "display.on.consent.screen" : "false", - "saml.onetimeuse.condition" : "false" - }, - "authenticationFlowBindingOverrides" : { }, - "fullScopeAllowed" : true, - "nodeReRegistrationTimeout" : -1, - "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], - "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] - }, { - "id" : "15a81bd1-4edd-4e2a-87ec-3bbcac30d2a3", - "clientId" : "cnl-editor-frontend", - "rootUrl" : "https://cnl-editor-frontend-dev.k8s.medina.esilab.org", - "adminUrl" : "https://cnl-editor-frontend-dev.k8s.medina.esilab.org", - "surrogateAuthRequired" : false, - "enabled" : true, - "alwaysDisplayInConsole" : false, - "clientAuthenticatorType" : "client-secret", - "secret" : "e6b76254-187d-441b-9061-cb6b03dd51a4", - "redirectUris" : [ "http://cnl-editor-frontend-dev.k8s.medina.esilab.org/*", "https://cnl-editor-frontend-dev.k8s.medina.esilab.org/*" ], - "webOrigins" : [ "https://cnl-editor-frontend-dev.k8s.medina.esilab.org" ], - "notBefore" : 0, - "bearerOnly" : false, - "consentRequired" : false, - "standardFlowEnabled" : true, - "implicitFlowEnabled" : false, - "directAccessGrantsEnabled" : true, - "serviceAccountsEnabled" : false, - "publicClient" : true, - "frontchannelLogout" : false, - "protocol" : "openid-connect", - "attributes" : { - "saml.assertion.signature" : "false", - "saml.force.post.binding" : "false", - "saml.multivalued.roles" : "false", - "saml.encrypt" : "false", - "backchannel.logout.revoke.offline.tokens" : "false", - "saml.server.signature" : "false", - "saml.server.signature.keyinfo.ext" : "false", - "exclude.session.state.from.auth.response" : "false", - "backchannel.logout.session.required" : "true", - "client_credentials.use_refresh_token" : "false", - "saml_force_name_id_format" : "false", - "saml.client.signature" : "false", - "tls.client.certificate.bound.access.tokens" : "false", - "saml.authnstatement" : "false", - "display.on.consent.screen" : "false", - "saml.onetimeuse.condition" : "false" - }, - "authenticationFlowBindingOverrides" : { }, - "fullScopeAllowed" : true, - "nodeReRegistrationTimeout" : -1, - "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], - "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] - }, { - "id" : "01fce0c3-2db7-46dd-af1c-115dc1800053", - "clientId" : "codyze", - "surrogateAuthRequired" : false, - "enabled" : true, - "alwaysDisplayInConsole" : false, - "clientAuthenticatorType" : "client-secret", - "secret" : "7ff65ca2-a54a-4093-84f3-3b5756cc4e5c", - "redirectUris" : [ ], - "webOrigins" : [ ], - "notBefore" : 0, - "bearerOnly" : false, - "consentRequired" : false, - "standardFlowEnabled" : false, - "implicitFlowEnabled" : false, - "directAccessGrantsEnabled" : false, - "serviceAccountsEnabled" : true, - "publicClient" : false, - "frontchannelLogout" : false, - "protocol" : "openid-connect", - "attributes" : { - "saml.assertion.signature" : "false", - "saml.force.post.binding" : "false", - "saml.multivalued.roles" : "false", - "saml.encrypt" : "false", - "backchannel.logout.revoke.offline.tokens" : "false", - "saml.server.signature" : "false", - "saml.server.signature.keyinfo.ext" : "false", - "exclude.session.state.from.auth.response" : "false", - "backchannel.logout.session.required" : "true", - "client_credentials.use_refresh_token" : "false", - "saml_force_name_id_format" : "false", - "saml.client.signature" : "false", - "tls.client.certificate.bound.access.tokens" : "false", - "saml.authnstatement" : "false", - "display.on.consent.screen" : "false", - "saml.onetimeuse.condition" : "false" - }, - "authenticationFlowBindingOverrides" : { }, - "fullScopeAllowed" : true, - "nodeReRegistrationTimeout" : -1, - "protocolMappers" : [ { - "id" : "43fbe8e9-8141-4868-b85c-91220bd5f08f", - "name" : "Client IP Address", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientAddress", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientAddress", - "jsonType.label" : "String" - } - }, { - "id" : "ab5e553c-34e4-4411-b6c2-23235f3d7f84", - "name" : "Client ID", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientId", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientId", - "jsonType.label" : "String" - } - }, { - "id" : "8d070365-134e-4302-b0bd-e6ce82b1c2db", - "name" : "Client Host", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientHost", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientHost", - "jsonType.label" : "String" - } - } ], - "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], - "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] - }, { - "id" : "1150f83f-37bc-4b14-98a0-e179aaee0f6c", - "clientId" : "integrated-ui", - "rootUrl" : "https://integrated-ui-dev.k8s.medina.esilab.org", - "adminUrl" : "https://integrated-ui-dev.k8s.medina.esilab.org", - "surrogateAuthRequired" : false, - "enabled" : true, - "alwaysDisplayInConsole" : false, - "clientAuthenticatorType" : "client-secret", - "secret" : "9049e030-2e66-496e-accf-b7a5037bc0eb", - "redirectUris" : [ "https://integrated-ui-dev.k8s.medina.esilab.org/*" ], - "webOrigins" : [ "https://integrated-ui-dev.k8s.medina.esilab.org" ], - "notBefore" : 0, - "bearerOnly" : false, - "consentRequired" : false, - "standardFlowEnabled" : true, - "implicitFlowEnabled" : false, - "directAccessGrantsEnabled" : true, - "serviceAccountsEnabled" : false, - "publicClient" : true, - "frontchannelLogout" : false, - "protocol" : "openid-connect", - "attributes" : { - "backchannel.logout.session.required" : "true", - "backchannel.logout.revoke.offline.tokens" : "false" - }, - "authenticationFlowBindingOverrides" : { }, - "fullScopeAllowed" : true, - "nodeReRegistrationTimeout" : -1, - "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], - "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] - }, { - "id" : "095fac49-b0b4-4c44-b5b9-fa22bed6d160", - "clientId" : "life-cycle-manager", - "surrogateAuthRequired" : false, - "enabled" : true, - "alwaysDisplayInConsole" : false, - "clientAuthenticatorType" : "client-secret", - "secret" : "0191bfe6-1d93-4d89-b1e4-4b505d348057", - "redirectUris" : [ ], - "webOrigins" : [ ], - "notBefore" : 0, - "bearerOnly" : false, - "consentRequired" : false, - "standardFlowEnabled" : false, - "implicitFlowEnabled" : false, - "directAccessGrantsEnabled" : false, - "serviceAccountsEnabled" : true, - "publicClient" : false, - "frontchannelLogout" : false, - "protocol" : "openid-connect", - "attributes" : { - "saml.assertion.signature" : "false", - "saml.force.post.binding" : "false", - "saml.multivalued.roles" : "false", - "saml.encrypt" : "false", - "backchannel.logout.revoke.offline.tokens" : "false", - "saml.server.signature" : "false", - "saml.server.signature.keyinfo.ext" : "false", - "exclude.session.state.from.auth.response" : "false", - "backchannel.logout.session.required" : "true", - "client_credentials.use_refresh_token" : "false", - "saml_force_name_id_format" : "false", - "saml.client.signature" : "false", - "tls.client.certificate.bound.access.tokens" : "false", - "saml.authnstatement" : "false", - "display.on.consent.screen" : "false", - "saml.onetimeuse.condition" : "false" - }, - "authenticationFlowBindingOverrides" : { }, - "fullScopeAllowed" : true, - "nodeReRegistrationTimeout" : -1, - "protocolMappers" : [ { - "id" : "cdb336c7-b22f-44c6-b30b-9136364b8229", - "name" : "Client IP Address", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientAddress", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientAddress", - "jsonType.label" : "String" - } - }, { - "id" : "3c6e3fe1-37bb-4ef0-a162-720b0d78b3af", - "name" : "Client ID", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientId", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientId", - "jsonType.label" : "String" - } - }, { - "id" : "e39ee5e2-dd4a-4d0e-9fc3-a0a84b200143", - "name" : "Client Host", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientHost", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientHost", - "jsonType.label" : "String" - } - } ], - "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], - "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] - }, { - "id" : "9f7c65f7-9ae9-4c9e-9bd7-971d0cbe146d", - "clientId" : "nl2cnl-translator-client", - "rootUrl" : "https://nl2cnl-translator-dev.k8s.medina.esilab.org/", - "adminUrl" : "https://nl2cnl-translator-dev.k8s.medina.esilab.org/", - "surrogateAuthRequired" : false, - "enabled" : true, - "alwaysDisplayInConsole" : false, - "clientAuthenticatorType" : "client-secret", - "secret" : "b1d1d98d-b5e5-46ac-9b45-30502cfb53ab", - "redirectUris" : [ "https://nl2cnl-translator-dev.k8s.medina.esilab.org/*" ], - "webOrigins" : [ "https://nl2cnl-translator-dev.k8s.medina.esilab.org" ], - "notBefore" : 0, - "bearerOnly" : false, - "consentRequired" : false, - "standardFlowEnabled" : true, - "implicitFlowEnabled" : false, - "directAccessGrantsEnabled" : true, - "serviceAccountsEnabled" : true, - "authorizationServicesEnabled" : true, - "publicClient" : false, - "frontchannelLogout" : false, - "protocol" : "openid-connect", - "attributes" : { - "saml.assertion.signature" : "false", - "saml.force.post.binding" : "false", - "saml.multivalued.roles" : "false", - "saml.encrypt" : "false", - "backchannel.logout.revoke.offline.tokens" : "false", - "saml.server.signature" : "false", - "saml.server.signature.keyinfo.ext" : "false", - "exclude.session.state.from.auth.response" : "false", - "backchannel.logout.session.required" : "true", - "client_credentials.use_refresh_token" : "false", - "saml_force_name_id_format" : "false", - "saml.client.signature" : "false", - "tls.client.certificate.bound.access.tokens" : "false", - "saml.authnstatement" : "false", - "display.on.consent.screen" : "false", - "saml.onetimeuse.condition" : "false" - }, - "authenticationFlowBindingOverrides" : { }, - "fullScopeAllowed" : true, - "nodeReRegistrationTimeout" : -1, - "protocolMappers" : [ { - "id" : "ad2d1f98-62a8-4859-8cce-1ce4034b9920", - "name" : "Client Host", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientHost", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientHost", - "jsonType.label" : "String" - } - }, { - "id" : "480e69e8-ebca-4e89-8d20-24bba626bbce", - "name" : "Client ID", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientId", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientId", - "jsonType.label" : "String" - } - }, { - "id" : "42724a07-f05f-4d65-82cb-b1c2288810d8", - "name" : "Client IP Address", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientAddress", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientAddress", - "jsonType.label" : "String" - } - } ], - "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], - "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ], - "authorizationSettings" : { - "allowRemoteResourceManagement" : true, - "policyEnforcementMode" : "ENFORCING", - "resources" : [ { - "name" : "Default Resource", - "type" : "urn:nl2cnl-translator-client:resources:default", - "ownerManagedAccess" : false, - "attributes" : { }, - "_id" : "cf0de028-f233-4f59-83cb-3d60d34450a3", - "uris" : [ "/*" ] - } ], - "policies" : [ { - "id" : "46935297-5bfb-4a43-b493-b28efe8c863b", - "name" : "Default Policy", - "description" : "A policy that grants access only for users within this realm", - "type" : "js", - "logic" : "POSITIVE", - "decisionStrategy" : "AFFIRMATIVE", - "config" : { - "code" : "// by default, grants any permission associated with this policy\n$evaluation.grant();\n" - } - }, { - "id" : "9cd3da2f-0302-4033-a9ed-36758ffa7730", - "name" : "Default Permission", - "description" : "A permission that applies to the default resource type", - "type" : "resource", - "logic" : "POSITIVE", - "decisionStrategy" : "UNANIMOUS", - "config" : { - "defaultResourceType" : "urn:nl2cnl-translator-client:resources:default", - "applyPolicies" : "[\"Default Policy\"]" - } - } ], - "scopes" : [ ], - "decisionStrategy" : "UNANIMOUS" - } - }, { - "id" : "785a9f77-d06f-4a65-9ba9-341921fda61a", - "clientId" : "raof", - "rootUrl" : "http://risk-assessment-engine-dev.k8s.medina.esilab.org", - "adminUrl" : "http://risk-assessment-engine-dev.k8s.medina.esilab.org", - "surrogateAuthRequired" : false, - "enabled" : true, - "alwaysDisplayInConsole" : false, - "clientAuthenticatorType" : "client-secret", - "secret" : "92d45bca-073b-49e3-8b23-2615f7fcbb3e", - "redirectUris" : [ "http://risk-assessment-engine-dev.k8s.medina.esilab.org/*" ], - "webOrigins" : [ "http://risk-assessment-engine-dev.k8s.medina.esilab.org" ], - "notBefore" : 0, - "bearerOnly" : false, - "consentRequired" : false, - "standardFlowEnabled" : true, - "implicitFlowEnabled" : false, - "directAccessGrantsEnabled" : true, - "serviceAccountsEnabled" : true, - "publicClient" : true, - "frontchannelLogout" : false, - "protocol" : "openid-connect", - "attributes" : { - "saml.assertion.signature" : "false", - "saml.force.post.binding" : "false", - "saml.multivalued.roles" : "false", - "saml.encrypt" : "false", - "backchannel.logout.revoke.offline.tokens" : "false", - "saml.server.signature" : "false", - "saml.server.signature.keyinfo.ext" : "false", - "exclude.session.state.from.auth.response" : "false", - "backchannel.logout.session.required" : "true", - "client_credentials.use_refresh_token" : "false", - "saml_force_name_id_format" : "false", - "saml.client.signature" : "false", - "tls.client.certificate.bound.access.tokens" : "false", - "saml.authnstatement" : "false", - "display.on.consent.screen" : "false", - "saml.onetimeuse.condition" : "false" - }, - "authenticationFlowBindingOverrides" : { }, - "fullScopeAllowed" : true, - "nodeReRegistrationTimeout" : -1, - "protocolMappers" : [ { - "id" : "1fddcb23-2a23-4ce6-acd4-cb48155d9034", - "name" : "Client Host", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientHost", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientHost", - "jsonType.label" : "String" - } - }, { - "id" : "1b88c2af-c338-4cf2-ab8d-69d1a60837a2", - "name" : "Client IP Address", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientAddress", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientAddress", - "jsonType.label" : "String" - } - }, { - "id" : "1c4f9074-9c2a-40bc-b55e-07a4eccfedab", - "name" : "Client ID", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientId", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientId", - "jsonType.label" : "String" - } - } ], - "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], - "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] - }, { - "id" : "b1293ae0-e720-40cb-ae6f-db7fc9b1fe92", - "clientId" : "raof-app", - "rootUrl" : "http://localhost:9000", - "adminUrl" : "http://localhost:9000", - "surrogateAuthRequired" : false, - "enabled" : true, - "alwaysDisplayInConsole" : false, - "clientAuthenticatorType" : "client-secret", - "secret" : "d7ca4514-90bf-40c9-b824-05c78acd9c93", - "redirectUris" : [ "http://localhost:9000/*" ], - "webOrigins" : [ "http://localhost:9000" ], - "notBefore" : 0, - "bearerOnly" : false, - "consentRequired" : false, - "standardFlowEnabled" : true, - "implicitFlowEnabled" : false, - "directAccessGrantsEnabled" : true, - "serviceAccountsEnabled" : true, - "authorizationServicesEnabled" : true, - "publicClient" : false, - "frontchannelLogout" : false, - "protocol" : "openid-connect", - "attributes" : { - "saml.assertion.signature" : "false", - "saml.force.post.binding" : "false", - "saml.multivalued.roles" : "false", - "saml.encrypt" : "false", - "backchannel.logout.revoke.offline.tokens" : "false", - "saml.server.signature" : "false", - "saml.server.signature.keyinfo.ext" : "false", - "exclude.session.state.from.auth.response" : "false", - "backchannel.logout.session.required" : "true", - "client_credentials.use_refresh_token" : "false", - "saml_force_name_id_format" : "false", - "saml.client.signature" : "false", - "tls.client.certificate.bound.access.tokens" : "false", - "saml.authnstatement" : "false", - "display.on.consent.screen" : "false", - "saml.onetimeuse.condition" : "false" - }, - "authenticationFlowBindingOverrides" : { }, - "fullScopeAllowed" : true, - "nodeReRegistrationTimeout" : -1, - "protocolMappers" : [ { - "id" : "76f2834e-94f2-4d8d-9840-d4b363ba7a8b", - "name" : "Client Host", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientHost", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientHost", - "jsonType.label" : "String" - } - }, { - "id" : "8c8a582f-4e95-437f-a9c7-79d6e3f84a78", - "name" : "Client IP Address", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientAddress", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientAddress", - "jsonType.label" : "String" - } - }, { - "id" : "65c739a9-5e22-4825-85bd-0c9b7547a395", - "name" : "Client ID", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientId", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientId", - "jsonType.label" : "String" - } - } ], - "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], - "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ], - "authorizationSettings" : { - "allowRemoteResourceManagement" : true, - "policyEnforcementMode" : "ENFORCING", - "resources" : [ { - "name" : "Default Resource", - "type" : "urn:roaf-app:resources:default", - "ownerManagedAccess" : false, - "attributes" : { }, - "_id" : "83aa363b-796b-4081-b49f-69b88d87f3b2", - "uris" : [ "/*" ] - } ], - "policies" : [ { - "id" : "291bd70b-29f1-4806-9963-ebced36fa800", - "name" : "Default Policy", - "description" : "A policy that grants access only for users within this realm", - "type" : "js", - "logic" : "POSITIVE", - "decisionStrategy" : "AFFIRMATIVE", - "config" : { - "code" : "// by default, grants any permission associated with this policy\n$evaluation.grant();\n" - } - }, { - "id" : "3ba28abc-eeec-48bd-bca9-41b10c38525e", - "name" : "Default Permission", - "description" : "A permission that applies to the default resource type", - "type" : "resource", - "logic" : "POSITIVE", - "decisionStrategy" : "UNANIMOUS", - "config" : { - "defaultResourceType" : "urn:roaf-app:resources:default", - "applyPolicies" : "[\"Default Policy\"]" - } - } ], - "scopes" : [ ], - "decisionStrategy" : "UNANIMOUS" - } - }, { - "id" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", - "clientId" : "realm-management", - "name" : "${client_realm-management}", - "surrogateAuthRequired" : false, - "enabled" : true, - "alwaysDisplayInConsole" : false, - "clientAuthenticatorType" : "client-secret", - "secret" : "eac6413c-b76b-4d1a-b4dc-b217fe77326b", - "redirectUris" : [ ], - "webOrigins" : [ ], - "notBefore" : 0, - "bearerOnly" : true, - "consentRequired" : false, - "standardFlowEnabled" : true, - "implicitFlowEnabled" : false, - "directAccessGrantsEnabled" : false, - "serviceAccountsEnabled" : false, - "publicClient" : false, - "frontchannelLogout" : false, - "protocol" : "openid-connect", - "attributes" : { }, - "authenticationFlowBindingOverrides" : { }, - "fullScopeAllowed" : false, - "nodeReRegistrationTimeout" : 0, - "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], - "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] - }, { - "id" : "7d57284a-3eba-4ceb-8088-b13aeef3df24", - "clientId" : "security-admin-console", - "name" : "${client_security-admin-console}", - "rootUrl" : "${authAdminUrl}", - "baseUrl" : "/admin/medina/console/", - "surrogateAuthRequired" : false, - "enabled" : true, - "alwaysDisplayInConsole" : false, - "clientAuthenticatorType" : "client-secret", - "secret" : "11fb3ec1-97dc-46e4-aee3-7d61493a0184", - "redirectUris" : [ "/admin/medina/console/*" ], - "webOrigins" : [ "+" ], - "notBefore" : 0, - "bearerOnly" : false, - "consentRequired" : false, - "standardFlowEnabled" : true, - "implicitFlowEnabled" : false, - "directAccessGrantsEnabled" : false, - "serviceAccountsEnabled" : false, - "publicClient" : true, - "frontchannelLogout" : false, - "protocol" : "openid-connect", - "attributes" : { - "pkce.code.challenge.method" : "S256" - }, - "authenticationFlowBindingOverrides" : { }, - "fullScopeAllowed" : false, - "nodeReRegistrationTimeout" : 0, - "protocolMappers" : [ { - "id" : "ce06926e-1e52-49b7-86ea-ddfd7665b90b", - "name" : "locale", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usermodel-attribute-mapper", - "consentRequired" : false, - "config" : { - "userinfo.token.claim" : "true", - "user.attribute" : "locale", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "locale", - "jsonType.label" : "String" - } - } ], - "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], - "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] - }, { - "id" : "aa18689d-6d81-4b92-8b9e-291eb4733408", - "clientId" : "wazuh-vat-evidence-collector-dev", - "rootUrl" : "http://wazuh-vat-evidence-collector-dev.k8s.medina.esilab.org/", - "adminUrl" : "http://wazuh-vat-evidence-collector-dev.k8s.medina.esilab.org/", - "surrogateAuthRequired" : false, - "enabled" : true, - "alwaysDisplayInConsole" : false, - "clientAuthenticatorType" : "client-secret", - "secret" : "68dec932-77fc-4322-8089-d64c3a3317bf", - "redirectUris" : [ "http://wazuh-vat-evidence-collector-dev.k8s.medina.esilab.org/*" ], - "webOrigins" : [ "http://wazuh-vat-evidence-collector-dev.k8s.medina.esilab.org" ], - "notBefore" : 0, - "bearerOnly" : false, - "consentRequired" : false, - "standardFlowEnabled" : true, - "implicitFlowEnabled" : false, - "directAccessGrantsEnabled" : true, - "serviceAccountsEnabled" : true, - "authorizationServicesEnabled" : true, - "publicClient" : false, - "frontchannelLogout" : false, - "protocol" : "openid-connect", - "attributes" : { - "saml.assertion.signature" : "false", - "saml.force.post.binding" : "false", - "saml.multivalued.roles" : "false", - "saml.encrypt" : "false", - "backchannel.logout.revoke.offline.tokens" : "false", - "saml.server.signature" : "false", - "saml.server.signature.keyinfo.ext" : "false", - "exclude.session.state.from.auth.response" : "false", - "backchannel.logout.session.required" : "true", - "client_credentials.use_refresh_token" : "false", - "saml_force_name_id_format" : "false", - "saml.client.signature" : "false", - "tls.client.certificate.bound.access.tokens" : "false", - "saml.authnstatement" : "false", - "display.on.consent.screen" : "false", - "saml.onetimeuse.condition" : "false" - }, - "authenticationFlowBindingOverrides" : { }, - "fullScopeAllowed" : true, - "nodeReRegistrationTimeout" : -1, - "protocolMappers" : [ { - "id" : "21e80b89-4ab6-4eb1-b1b1-1a44c133e922", - "name" : "Client IP Address", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientAddress", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientAddress", - "jsonType.label" : "String" - } - }, { - "id" : "f9117947-484b-4486-9299-97a1bac403bc", - "name" : "Client Host", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientHost", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientHost", - "jsonType.label" : "String" - } - }, { - "id" : "a610e8bf-64c2-4c57-ba45-f576d1dbd1b9", - "name" : "Client ID", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientId", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientId", - "jsonType.label" : "String" - } - } ], - "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], - "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ], - "authorizationSettings" : { - "allowRemoteResourceManagement" : true, - "policyEnforcementMode" : "ENFORCING", - "resources" : [ { - "name" : "Default Resource", - "type" : "urn:wazuh-vat-evidence-collector-dev:resources:default", - "ownerManagedAccess" : false, - "attributes" : { }, - "_id" : "9b151dde-64db-48eb-a5c8-1cb76dbda106", - "uris" : [ "/*" ] - } ], - "policies" : [ { - "id" : "ea4d0471-d8e0-4eb3-b978-5e08ed330193", - "name" : "Default Policy", - "description" : "A policy that grants access only for users within this realm", - "type" : "js", - "logic" : "POSITIVE", - "decisionStrategy" : "AFFIRMATIVE", - "config" : { - "code" : "// by default, grants any permission associated with this policy\n$evaluation.grant();\n" - } - }, { - "id" : "d56c4a80-9aea-4527-80b8-fa8736d55cbe", - "name" : "Default Permission", - "description" : "A permission that applies to the default resource type", - "type" : "resource", - "logic" : "POSITIVE", - "decisionStrategy" : "UNANIMOUS", - "config" : { - "defaultResourceType" : "urn:wazuh-vat-evidence-collector-dev:resources:default", - "applyPolicies" : "[\"Default Policy\"]" - } - } ], - "scopes" : [ ], - "decisionStrategy" : "UNANIMOUS" - } - } ], - "clientScopes" : [ { - "id" : "448d9d12-2046-483f-9951-9cfb26270957", - "name" : "address", - "description" : "OpenID Connect built-in scope: address", - "protocol" : "openid-connect", - "attributes" : { - "include.in.token.scope" : "true", - "display.on.consent.screen" : "true", - "consent.screen.text" : "${addressScopeConsentText}" - }, - "protocolMappers" : [ { - "id" : "d9a1907f-8701-4b47-85a8-b7d959c37d52", - "name" : "address", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-address-mapper", - "consentRequired" : false, - "config" : { - "user.attribute.formatted" : "formatted", - "user.attribute.country" : "country", - "user.attribute.postal_code" : "postal_code", - "userinfo.token.claim" : "true", - "user.attribute.street" : "street", - "id.token.claim" : "true", - "user.attribute.region" : "region", - "access.token.claim" : "true", - "user.attribute.locality" : "locality" - } - } ] - }, { - "id" : "275d79c9-b59c-40f6-bea2-ce277f3bb3e0", - "name" : "email", - "description" : "OpenID Connect built-in scope: email", - "protocol" : "openid-connect", - "attributes" : { - "include.in.token.scope" : "true", - "display.on.consent.screen" : "true", - "consent.screen.text" : "${emailScopeConsentText}" - }, - "protocolMappers" : [ { - "id" : "e2e140c5-e12f-4a38-ad55-dbeb73558260", - "name" : "email", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usermodel-property-mapper", - "consentRequired" : false, - "config" : { - "userinfo.token.claim" : "true", - "user.attribute" : "email", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "email", - "jsonType.label" : "String" - } - }, { - "id" : "a22524be-6358-4d93-beaa-38faed65e198", - "name" : "email verified", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usermodel-property-mapper", - "consentRequired" : false, - "config" : { - "userinfo.token.claim" : "true", - "user.attribute" : "emailVerified", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "email_verified", - "jsonType.label" : "boolean" - } - } ] - }, { - "id" : "bbfebad4-3f48-432f-9696-1529017fd411", - "name" : "jhipster", - "description" : "Jhipster specific claims", - "protocol" : "openid-connect", - "attributes" : { - "include.in.token.scope" : "true", - "display.on.consent.screen" : "true" - }, - "protocolMappers" : [ { - "id" : "71c49d92-db9e-4669-b945-a6dd790b8b00", - "name" : "langKey", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usermodel-attribute-mapper", - "consentRequired" : false, - "config" : { - "userinfo.token.claim" : "true", - "user.attribute" : "langKey", - "id.token.claim" : "false", - "access.token.claim" : "false", - "claim.name" : "langKey", - "jsonType.label" : "String" - } - }, { - "id" : "79e9563d-3c27-4cb3-b8c7-cb11bc43ebc9", - "name" : "login", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usermodel-attribute-mapper", - "consentRequired" : false, - "config" : { - "userinfo.token.claim" : "true", - "user.attribute" : "preferred_username", - "id.token.claim" : "false", - "access.token.claim" : "false", - "claim.name" : "login", - "jsonType.label" : "String" - } - }, { - "id" : "d8ce7859-d0c3-4e55-9415-438c81bfdaa2", - "name" : "roles", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usermodel-realm-role-mapper", - "consentRequired" : false, - "config" : { - "multivalued" : "true", - "userinfo.token.claim" : "true", - "id.token.claim" : "false", - "access.token.claim" : "true", - "claim.name" : "roles", - "jsonType.label" : "String" - } - } ] - }, { - "id" : "3dd12f9d-3af5-4757-b89c-4d2a8c448316", - "name" : "microprofile-jwt", - "description" : "Microprofile - JWT built-in scope", - "protocol" : "openid-connect", - "attributes" : { - "include.in.token.scope" : "true", - "display.on.consent.screen" : "false" - }, - "protocolMappers" : [ { - "id" : "995d9d7f-97af-4c01-81d8-8ca11aa34553", - "name" : "groups", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usermodel-realm-role-mapper", - "consentRequired" : false, - "config" : { - "multivalued" : "true", - "user.attribute" : "foo", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "groups", - "jsonType.label" : "String" - } - }, { - "id" : "43df77e9-387b-4f80-bd3e-c2153178ee72", - "name" : "upn", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usermodel-property-mapper", - "consentRequired" : false, - "config" : { - "userinfo.token.claim" : "true", - "user.attribute" : "username", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "upn", - "jsonType.label" : "String" - } - } ] - }, { - "id" : "31c108bb-1587-4373-b46a-7d2f0d7acdba", - "name" : "offline_access", - "description" : "OpenID Connect built-in scope: offline_access", - "protocol" : "openid-connect", - "attributes" : { - "consent.screen.text" : "${offlineAccessScopeConsentText}", - "display.on.consent.screen" : "true" - } - }, { - "id" : "b8b09b9e-6096-46ae-8e90-3cd03d364a0a", - "name" : "phone", - "description" : "OpenID Connect built-in scope: phone", - "protocol" : "openid-connect", - "attributes" : { - "include.in.token.scope" : "true", - "display.on.consent.screen" : "true", - "consent.screen.text" : "${phoneScopeConsentText}" - }, - "protocolMappers" : [ { - "id" : "5464cfbe-e421-4034-8f6a-378e99476bf4", - "name" : "phone number", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usermodel-attribute-mapper", - "consentRequired" : false, - "config" : { - "userinfo.token.claim" : "true", - "user.attribute" : "phoneNumber", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "phone_number", - "jsonType.label" : "String" - } - }, { - "id" : "f8a484ce-7c5f-4562-8d61-ec161e2929f6", - "name" : "phone number verified", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usermodel-attribute-mapper", - "consentRequired" : false, - "config" : { - "userinfo.token.claim" : "true", - "user.attribute" : "phoneNumberVerified", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "phone_number_verified", - "jsonType.label" : "boolean" - } - } ] - }, { - "id" : "b188dc18-eca7-4941-ab04-d3e599e9aa93", - "name" : "profile", - "description" : "OpenID Connect built-in scope: profile", - "protocol" : "openid-connect", - "attributes" : { - "include.in.token.scope" : "true", - "display.on.consent.screen" : "true", - "consent.screen.text" : "${profileScopeConsentText}" - }, - "protocolMappers" : [ { - "id" : "0d52d80c-a7e1-45f9-a16e-1965220474d5", - "name" : "nickname", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usermodel-attribute-mapper", - "consentRequired" : false, - "config" : { - "userinfo.token.claim" : "true", - "user.attribute" : "nickname", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "nickname", - "jsonType.label" : "String" - } - }, { - "id" : "cf0e8f74-1996-4ad1-8bcc-3f331bea4e45", - "name" : "birthdate", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usermodel-attribute-mapper", - "consentRequired" : false, - "config" : { - "userinfo.token.claim" : "true", - "user.attribute" : "birthdate", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "birthdate", - "jsonType.label" : "String" - } - }, { - "id" : "c58346fb-1470-420c-a6cb-c115e833444b", - "name" : "full name", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-full-name-mapper", - "consentRequired" : false, - "config" : { - "id.token.claim" : "true", - "access.token.claim" : "true", - "userinfo.token.claim" : "true" - } - }, { - "id" : "bdfca3bd-1dda-4ebe-993c-ea11c674c919", - "name" : "gender", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usermodel-attribute-mapper", - "consentRequired" : false, - "config" : { - "userinfo.token.claim" : "true", - "user.attribute" : "gender", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "gender", - "jsonType.label" : "String" - } - }, { - "id" : "1299560c-f37d-47d2-96f7-712761cf679a", - "name" : "middle name", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usermodel-attribute-mapper", - "consentRequired" : false, - "config" : { - "userinfo.token.claim" : "true", - "user.attribute" : "middleName", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "middle_name", - "jsonType.label" : "String" - } - }, { - "id" : "c67dab67-c3b4-40c4-91fe-7c9ce61fca5f", - "name" : "zoneinfo", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usermodel-attribute-mapper", - "consentRequired" : false, - "config" : { - "userinfo.token.claim" : "true", - "user.attribute" : "zoneinfo", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "zoneinfo", - "jsonType.label" : "String" - } - }, { - "id" : "8682ba32-def5-4111-b2ab-79cd865844d0", - "name" : "family name", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usermodel-property-mapper", - "consentRequired" : false, - "config" : { - "userinfo.token.claim" : "true", - "user.attribute" : "lastName", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "family_name", - "jsonType.label" : "String" - } - }, { - "id" : "0ee61bf2-d022-420a-aa6d-c7e8bd60e24f", - "name" : "picture", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usermodel-attribute-mapper", - "consentRequired" : false, - "config" : { - "userinfo.token.claim" : "true", - "user.attribute" : "picture", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "picture", - "jsonType.label" : "String" - } - }, { - "id" : "3acdc903-7ceb-40b8-8516-ebbc7874d6e4", - "name" : "given name", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usermodel-property-mapper", - "consentRequired" : false, - "config" : { - "userinfo.token.claim" : "true", - "user.attribute" : "firstName", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "given_name", - "jsonType.label" : "String" - } - }, { - "id" : "d1fe9f83-141c-4c8c-9635-20367c7e5218", - "name" : "locale", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usermodel-attribute-mapper", - "consentRequired" : false, - "config" : { - "userinfo.token.claim" : "true", - "user.attribute" : "locale", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "locale", - "jsonType.label" : "String" - } - }, { - "id" : "502de8c4-4cdf-402b-8453-d407a7b666da", - "name" : "username", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usermodel-property-mapper", - "consentRequired" : false, - "config" : { - "userinfo.token.claim" : "true", - "user.attribute" : "username", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "preferred_username", - "jsonType.label" : "String" - } - }, { - "id" : "1603ac87-6a50-4205-b9b9-4ba4d3224d83", - "name" : "website", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usermodel-attribute-mapper", - "consentRequired" : false, - "config" : { - "userinfo.token.claim" : "true", - "user.attribute" : "website", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "website", - "jsonType.label" : "String" - } - }, { - "id" : "f2c9d6f6-06b7-415a-87b3-c872a26ab921", - "name" : "updated at", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usermodel-attribute-mapper", - "consentRequired" : false, - "config" : { - "userinfo.token.claim" : "true", - "user.attribute" : "updatedAt", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "updated_at", - "jsonType.label" : "String" - } - }, { - "id" : "ee586b78-b33e-4a0b-842f-9bd7059a747a", - "name" : "profile", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usermodel-attribute-mapper", - "consentRequired" : false, - "config" : { - "userinfo.token.claim" : "true", - "user.attribute" : "profile", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "profile", - "jsonType.label" : "String" - } - } ] - }, { - "id" : "83717992-b174-46c3-99f1-1a097b02e99c", - "name" : "role_list", - "description" : "SAML role list", - "protocol" : "saml", - "attributes" : { - "consent.screen.text" : "${samlRoleListScopeConsentText}", - "display.on.consent.screen" : "true" - }, - "protocolMappers" : [ { - "id" : "0c0b8746-2e89-4ede-9ea6-ac76d2c66f33", - "name" : "role list", - "protocol" : "saml", - "protocolMapper" : "saml-role-list-mapper", - "consentRequired" : false, - "config" : { - "single" : "false", - "attribute.nameformat" : "Basic", - "attribute.name" : "Role" - } - } ] - }, { - "id" : "da1df8bb-b502-44fb-94a4-cff04b190a8c", - "name" : "roles", - "description" : "OpenID Connect scope for add user roles to the access token", - "protocol" : "openid-connect", - "attributes" : { - "include.in.token.scope" : "false", - "display.on.consent.screen" : "true", - "consent.screen.text" : "${rolesScopeConsentText}" - }, - "protocolMappers" : [ { - "id" : "cef58889-d64f-4405-a1f9-4978962472aa", - "name" : "realm roles", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usermodel-realm-role-mapper", - "consentRequired" : false, - "config" : { - "user.attribute" : "foo", - "access.token.claim" : "true", - "claim.name" : "realm_access.roles", - "jsonType.label" : "String", - "multivalued" : "true" - } - }, { - "id" : "44e1ccc5-63d0-464f-a88c-535864dba161", - "name" : "audience resolve", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-audience-resolve-mapper", - "consentRequired" : false, - "config" : { } - }, { - "id" : "fc7ab48f-7268-4f85-874c-8b35d00d5fb1", - "name" : "client roles", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usermodel-client-role-mapper", - "consentRequired" : false, - "config" : { - "user.attribute" : "foo", - "access.token.claim" : "true", - "claim.name" : "resource_access.${client_id}.roles", - "jsonType.label" : "String", - "multivalued" : "true" - } - } ] - }, { - "id" : "cab2790d-6362-4d1a-96cb-427e906ea1d0", - "name" : "web-origins", - "description" : "OpenID Connect scope for add allowed web origins to the access token", - "protocol" : "openid-connect", - "attributes" : { - "include.in.token.scope" : "false", - "display.on.consent.screen" : "false", - "consent.screen.text" : "" - }, - "protocolMappers" : [ { - "id" : "e8c45111-ab73-4a68-a793-fdcc71c4f2ad", - "name" : "allowed web origins", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-allowed-origins-mapper", - "consentRequired" : false, - "config" : { } - } ] - } ], - "defaultDefaultClientScopes" : [ "role_list", "profile", "email", "roles", "web-origins" ], - "defaultOptionalClientScopes" : [ "offline_access", "address", "phone", "microprofile-jwt" ], - "browserSecurityHeaders" : { - "contentSecurityPolicyReportOnly" : "", - "xContentTypeOptions" : "nosniff", - "xRobotsTag" : "none", - "xFrameOptions" : "ALLOW-FROM https://integrated-ui-dev.k8s.medina.esilab.org", - "contentSecurityPolicy" : "ADD MANUALLY", - "xXSSProtection" : "1; mode=block", - "strictTransportSecurity" : "max-age=31536000; includeSubDomains" - }, - "smtpServer" : { - "password" : "medinaPassword", - "starttls" : "", - "auth" : "true", - "host" : "smtp.gmail.com", - "from" : "medinatestuser@gmail.com", - "ssl" : "true", - "user" : "medinatestuser@gmail.com" - }, - "eventsEnabled" : false, - "eventsListeners" : [ "jboss-logging" ], - "enabledEventTypes" : [ ], - "adminEventsEnabled" : false, - "adminEventsDetailsEnabled" : false, - "identityProviders" : [ { - "alias" : "oidc", - "displayName" : "Bosch Login", - "internalId" : "0a60d4b9-c19c-4df7-9d55-f27547b90af0", - "providerId" : "oidc", - "enabled" : true, - "updateProfileFirstLoginMode" : "on", - "trustEmail" : false, - "storeToken" : false, - "addReadTokenRoleOnCreate" : false, - "authenticateByDefault" : false, - "linkOnly" : false, - "firstBrokerLoginFlowAlias" : "first broker login", - "config" : { - "userInfoUrl" : "https://stfs.test-bosch.com/adfs/userinfo", - "validateSignature" : "true", - "clientId" : "acfbc2ab-64e4-4b64-ad0e-204ec212cbbf", - "tokenUrl" : "https://stfs.test-bosch.com/adfs/oauth2/token/", - "jwksUrl" : "https://stfs.test-bosch.com/adfs/discovery/keys", - "issuer" : "https://stfs.test-bosch.com/adfs", - "useJwksUrl" : "true", - "authorizationUrl" : "https://stfs.test-bosch.com/adfs/oauth2/authorize/", - "clientAuthMethod" : "client_secret_post", - "disableUserInfo" : "true", - "logoutUrl" : "https://stfs.test-bosch.com/adfs/oauth2/logout", - "syncMode" : "IMPORT", - "clientSecret" : "Iog6MCAS2DoU0tLURqTVOME5p_Fq-LY_eewuOye4" - } - } ], - "identityProviderMappers" : [ { - "id" : "eac64953-04e3-4720-bb21-c09750b6a42a", - "name" : "Default Compliance Manager mapper", - "identityProviderAlias" : "oidc", - "identityProviderMapper" : "oidc-hardcoded-role-idp-mapper", - "config" : { - "syncMode" : "INHERIT", - "role" : "Compliance Manager" - } - } ], - "components" : { - "org.keycloak.services.clientregistration.policy.ClientRegistrationPolicy" : [ { - "id" : "fbccf871-d01e-4d47-99d0-3bdce3bfa12c", - "name" : "Allowed Client Scopes", - "providerId" : "allowed-client-templates", - "subType" : "anonymous", - "subComponents" : { }, - "config" : { - "allow-default-scopes" : [ "true" ] - } - }, { - "id" : "611a0a79-84c4-4d2d-9d11-01eb58141a46", - "name" : "Trusted Hosts", - "providerId" : "trusted-hosts", - "subType" : "anonymous", - "subComponents" : { }, - "config" : { - "host-sending-registration-request-must-match" : [ "true" ], - "client-uris-must-match" : [ "true" ] - } - }, { - "id" : "2124ff56-7c6f-4095-ba92-ae335222f88c", - "name" : "Full Scope Disabled", - "providerId" : "scope", - "subType" : "anonymous", - "subComponents" : { }, - "config" : { } - }, { - "id" : "b8f02611-098d-402f-90a6-a1f09afcdb22", - "name" : "Allowed Protocol Mapper Types", - "providerId" : "allowed-protocol-mappers", - "subType" : "anonymous", - "subComponents" : { }, - "config" : { - "allowed-protocol-mapper-types" : [ "oidc-sha256-pairwise-sub-mapper", "saml-role-list-mapper", "saml-user-property-mapper", "saml-user-attribute-mapper", "oidc-usermodel-property-mapper", "oidc-address-mapper", "oidc-usermodel-attribute-mapper", "oidc-full-name-mapper" ] - } - }, { - "id" : "cca940dd-d866-44db-a211-0ed1bc682ae7", - "name" : "Allowed Protocol Mapper Types", - "providerId" : "allowed-protocol-mappers", - "subType" : "authenticated", - "subComponents" : { }, - "config" : { - "allowed-protocol-mapper-types" : [ "oidc-full-name-mapper", "oidc-usermodel-property-mapper", "saml-role-list-mapper", "oidc-address-mapper", "saml-user-property-mapper", "saml-user-attribute-mapper", "oidc-sha256-pairwise-sub-mapper", "oidc-usermodel-attribute-mapper" ] - } - }, { - "id" : "dfb48f4f-8760-419e-9337-15eb81a41fdb", - "name" : "Max Clients Limit", - "providerId" : "max-clients", - "subType" : "anonymous", - "subComponents" : { }, - "config" : { - "max-clients" : [ "200" ] - } - }, { - "id" : "dfbcfdd0-4628-4a27-927a-4a476017ca56", - "name" : "Allowed Client Scopes", - "providerId" : "allowed-client-templates", - "subType" : "authenticated", - "subComponents" : { }, - "config" : { - "allow-default-scopes" : [ "true" ] - } - }, { - "id" : "cb8bff43-35e8-4fbc-9758-02da2892008d", - "name" : "Consent Required", - "providerId" : "consent-required", - "subType" : "anonymous", - "subComponents" : { }, - "config" : { } - } ], - "org.keycloak.keys.KeyProvider" : [ { - "id" : "4fcc8a9a-8dac-4051-8c34-748bf12d011d", - "name" : "rsa-generated", - "providerId" : "rsa-generated", - "subComponents" : { }, - "config" : { - "privateKey" : [ "MIIEpAIBAAKCAQEAqpMWsm7G85cM6j1jJCxmM6UAssq+oVsfdFUNEXJPpjy4FGRo4cIzaSPjqLAHn1xrBY4wWoPQU+4h2RRurXw0ELLhCIy+LIfUU0djB/5v0s5vqzaj/v8nSKQuKT2NY04b1oNTSeUuL1/sopo8ZcvtOdD2gTlVE2qDQJvJuKxIK9D4r2h2E7Kh7GwI0VIuywi0Ehdbwm21LTZlcrrmNu1pzN8oodjz0uYRIQ/p+AJCa0b+RhFQWN40XTmW1hmERE/J21ZK8sMcmO0vKcg5v2yzDOMQUcTMVVA1MHER8Q08yTYWmyQNP6E3xobVhqwCeClzcNCw1SdNfOVTuqCiZOWQWQIDAQABAoIBAEhcYbKMYAYSPD5akGZWF30tMGCotboJyAw30HVoQvXIqGauOfgbxGeD/B4hnvox4IzYxxZ++K/CQ8Wtb05VdFjpKaHQ4xRNAvvZOt+3RoTtYl4FrgiNAYNFcve3zvUju5eC2qBsgu1CCkbom1qr6hUu2oPzaG32L3wHGsom++7p4YE7FAzfqrEhntlVouMf9oW2477823gcr4LtX3tz2uIw8ZtSGsAxPGWfunxtX9qTgEVzXUFYou94fn7u6vRbRKSqq/udjQcSRaPzdrdto98oH6Y+3rm0PKj5sTkJf8SJHJFCPTgIgnG/7VZm8ZVJAoGLLUGzNC6pgEFdYjDmhSkCgYEA+mQYOKF6f8c5axsrUXtHHoWKYjZCXnWCH+P+DJQAHFSvdPAZgLJ6odKS8tFhujh8murE5WGsVkXxqZOHwXqBHrWrpJhfO8otHPEklhjn2MAhrxWxHEVokdUJjfUzoK0S6RVni/4hZIFkj3322lW7KXdSoeM5dfe9hFKxYM8G+jMCgYEArmVGSJtOzrIAzRZCmMwXwW/rV9Hi8QQOJRy8IM5zLvQutZa3RbqGPjOnq8XjsT98L6w4tM6WsTXWmGxOKDFzPhtg3pxz0ghFC895WaDqz1EL3Wjzp0p1a0mqo8zA+vOh9h+0YQs649eOPHkdr5AvMqenpxIwhu7nG0WOK+OKl0MCgYEAzcYiza+PP6GXg3kxkWYRnXi7sFjNFFnX1aOF7gpXSPEjvKNxIf4LoB+w2lLO0L6JULstkyFBAym6H9V5lLy7jmRYqgz6/uT5TDa1DZFsQAot5HicNBKqjGaa0oo3oo155AnOLhNsl+9qmC46B1a7WKmSRC6700IFAtD+qwOYxVcCgYB1892ToietOUu9ar7kZbXziWUd4sGhzeJbS5Iahkf1jAZDn4qZyMyfKYTQc2nLKmsuO0enUsstVIKuWSKLoNaXPSFJr3vOpPU+RbeH3YSzb9eciy2xCnVceVjGrOghU8NJmqv/rv7Ht7VmRWzEn7qsgiSspWrY+KCrG2JLYP0NzQKBgQDtcbX43N7aGMs/wP2Y/PDoTPeIB6f0+D7rdoHBmK6nUxQ9V70uAyYC4WtJudrKkVKUKAK8oOgbD2Qne2t02pbYKxQQDyBGQObuyC28fA5DHl9F8j6jx2u+He1s23V9HZhxj36TOVIjdjctRCDGTg32RMLGZlli0St2hK9EWSrUvQ==" ], - "certificate" : [ "MIICmzCCAYMCBgF/LGg1XzANBgkqhkiG9w0BAQsFADARMQ8wDQYDVQQDDAZtZWRpbmEwHhcNMjIwMjI0MTU0MzIxWhcNMzIwMjI0MTU0NTAxWjARMQ8wDQYDVQQDDAZtZWRpbmEwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCqkxaybsbzlwzqPWMkLGYzpQCyyr6hWx90VQ0Rck+mPLgUZGjhwjNpI+OosAefXGsFjjBag9BT7iHZFG6tfDQQsuEIjL4sh9RTR2MH/m/Szm+rNqP+/ydIpC4pPY1jThvWg1NJ5S4vX+yimjxly+050PaBOVUTaoNAm8m4rEgr0PivaHYTsqHsbAjRUi7LCLQSF1vCbbUtNmVyuuY27WnM3yih2PPS5hEhD+n4AkJrRv5GEVBY3jRdOZbWGYRET8nbVkrywxyY7S8pyDm/bLMM4xBRxMxVUDUwcRHxDTzJNhabJA0/oTfGhtWGrAJ4KXNw0LDVJ0185VO6oKJk5ZBZAgMBAAEwDQYJKoZIhvcNAQELBQADggEBAD7yJ2HegJ3/LzAmn/JIDXH1qfZ2DgGyfFQk82tWmFnsxVaLrv0sehS7Ufza5JRsudmzL6I8LHTgYuS1zyDZ1kmEB4gIpmw+ZI4M+isIpuzGRz8B3t2y3jOnEKjykjTWWYQrINYQiqPKU8LSFwe+Uqtcqga0TqgZ2fO8tkeP74a7JVk1hd4JD50shuPIInPx5PfqN7xAUebyPeJk91RQVC4tSpIIlFyd13MFQOzocj9uB685SE6DT3vjguYod6tv7JIUme0+JZIhd67hBlZS71ebL2B0gcX7+9jKZi3oeGFX+2k5CWCHZUf7KBvY3WaxxZTlFCtRcNbWKkMUmVTjRJ8=" ], - "priority" : [ "100" ] - } - }, { - "id" : "025383fb-ebfe-4e5d-b82e-ada254fff0fc", - "name" : "hmac-generated", - "providerId" : "hmac-generated", - "subComponents" : { }, - "config" : { - "kid" : [ "672cf3de-8a6e-43a9-bbb3-3b4cda7477a5" ], - "secret" : [ "lxJLgn2fZb9sMr0OZOzv98PC9GZWRJRGrNP86lb99Ded4XqqVXPU5HGxdn6RCxXdJxZyydNbrCnzDhZSpYLJDw" ], - "priority" : [ "100" ], - "algorithm" : [ "HS256" ] - } - }, { - "id" : "9e25e190-e32d-4bc8-9c9d-f5683ba8d2c3", - "name" : "aes-generated", - "providerId" : "aes-generated", - "subComponents" : { }, - "config" : { - "kid" : [ "5fe1d9fe-f688-4e7b-8871-176b5cf97cd4" ], - "secret" : [ "o_z-vBEGNLSgbqxfgun_sg" ], - "priority" : [ "100" ] - } - } ] - }, - "internationalizationEnabled" : false, - "supportedLocales" : [ ], - "authenticationFlows" : [ { - "id" : "354f002d-8a77-4e21-bd29-5c1fc8685a0f", - "alias" : "Account verification options", - "description" : "Method with which to verity the existing account", - "providerId" : "basic-flow", - "topLevel" : false, - "builtIn" : true, - "authenticationExecutions" : [ { - "authenticator" : "idp-email-verification", - "requirement" : "ALTERNATIVE", - "priority" : 10, - "userSetupAllowed" : false, - "autheticatorFlow" : false - }, { - "requirement" : "ALTERNATIVE", - "priority" : 20, - "flowAlias" : "Verify Existing Account by Re-authentication", - "userSetupAllowed" : false, - "autheticatorFlow" : true - } ] - }, { - "id" : "9882e4d3-d9cd-4af1-bfe8-a8f73a1fa086", - "alias" : "Authentication Options", - "description" : "Authentication options.", - "providerId" : "basic-flow", - "topLevel" : false, - "builtIn" : true, - "authenticationExecutions" : [ { - "authenticator" : "basic-auth", - "requirement" : "REQUIRED", - "priority" : 10, - "userSetupAllowed" : false, - "autheticatorFlow" : false - }, { - "authenticator" : "basic-auth-otp", - "requirement" : "DISABLED", - "priority" : 20, - "userSetupAllowed" : false, - "autheticatorFlow" : false - }, { - "authenticator" : "auth-spnego", - "requirement" : "DISABLED", - "priority" : 30, - "userSetupAllowed" : false, - "autheticatorFlow" : false - } ] - }, { - "id" : "8e0d8a31-5418-47ab-befb-afeb7abf9322", - "alias" : "Browser - Conditional OTP", - "description" : "Flow to determine if the OTP is required for the authentication", - "providerId" : "basic-flow", - "topLevel" : false, - "builtIn" : true, - "authenticationExecutions" : [ { - "authenticator" : "conditional-user-configured", - "requirement" : "REQUIRED", - "priority" : 10, - "userSetupAllowed" : false, - "autheticatorFlow" : false - }, { - "authenticator" : "auth-otp-form", - "requirement" : "REQUIRED", - "priority" : 20, - "userSetupAllowed" : false, - "autheticatorFlow" : false - } ] - }, { - "id" : "676fcbe9-45bb-4455-9f12-0593ff40176f", - "alias" : "Direct Grant - Conditional OTP", - "description" : "Flow to determine if the OTP is required for the authentication", - "providerId" : "basic-flow", - "topLevel" : false, - "builtIn" : true, - "authenticationExecutions" : [ { - "authenticator" : "conditional-user-configured", - "requirement" : "REQUIRED", - "priority" : 10, - "userSetupAllowed" : false, - "autheticatorFlow" : false - }, { - "authenticator" : "direct-grant-validate-otp", - "requirement" : "REQUIRED", - "priority" : 20, - "userSetupAllowed" : false, - "autheticatorFlow" : false - } ] - }, { - "id" : "c1bca04e-0854-4c03-8386-3877bb028606", - "alias" : "First broker login - Conditional OTP", - "description" : "Flow to determine if the OTP is required for the authentication", - "providerId" : "basic-flow", - "topLevel" : false, - "builtIn" : true, - "authenticationExecutions" : [ { - "authenticator" : "conditional-user-configured", - "requirement" : "REQUIRED", - "priority" : 10, - "userSetupAllowed" : false, - "autheticatorFlow" : false - }, { - "authenticator" : "auth-otp-form", - "requirement" : "REQUIRED", - "priority" : 20, - "userSetupAllowed" : false, - "autheticatorFlow" : false - } ] - }, { - "id" : "4b63e991-30c5-4679-973a-0ee570dd9638", - "alias" : "Handle Existing Account", - "description" : "Handle what to do if there is existing account with same email/username like authenticated identity provider", - "providerId" : "basic-flow", - "topLevel" : false, - "builtIn" : true, - "authenticationExecutions" : [ { - "authenticator" : "idp-confirm-link", - "requirement" : "REQUIRED", - "priority" : 10, - "userSetupAllowed" : false, - "autheticatorFlow" : false - }, { - "requirement" : "REQUIRED", - "priority" : 20, - "flowAlias" : "Account verification options", - "userSetupAllowed" : false, - "autheticatorFlow" : true - } ] - }, { - "id" : "a106d5a7-3b1e-4325-a1a6-2f2a0eeedd62", - "alias" : "Reset - Conditional OTP", - "description" : "Flow to determine if the OTP should be reset or not. Set to REQUIRED to force.", - "providerId" : "basic-flow", - "topLevel" : false, - "builtIn" : true, - "authenticationExecutions" : [ { - "authenticator" : "conditional-user-configured", - "requirement" : "REQUIRED", - "priority" : 10, - "userSetupAllowed" : false, - "autheticatorFlow" : false - }, { - "authenticator" : "reset-otp", - "requirement" : "REQUIRED", - "priority" : 20, - "userSetupAllowed" : false, - "autheticatorFlow" : false - } ] - }, { - "id" : "d47a6e57-0348-4266-a214-89d44297aead", - "alias" : "User creation or linking", - "description" : "Flow for the existing/non-existing user alternatives", - "providerId" : "basic-flow", - "topLevel" : false, - "builtIn" : true, - "authenticationExecutions" : [ { - "authenticatorConfig" : "create unique user config", - "authenticator" : "idp-create-user-if-unique", - "requirement" : "ALTERNATIVE", - "priority" : 10, - "userSetupAllowed" : false, - "autheticatorFlow" : false - }, { - "requirement" : "ALTERNATIVE", - "priority" : 20, - "flowAlias" : "Handle Existing Account", - "userSetupAllowed" : false, - "autheticatorFlow" : true - } ] - }, { - "id" : "245da857-b7af-437c-88d4-7398b3d2d45a", - "alias" : "Verify Existing Account by Re-authentication", - "description" : "Reauthentication of existing account", - "providerId" : "basic-flow", - "topLevel" : false, - "builtIn" : true, - "authenticationExecutions" : [ { - "authenticator" : "idp-username-password-form", - "requirement" : "REQUIRED", - "priority" : 10, - "userSetupAllowed" : false, - "autheticatorFlow" : false - }, { - "requirement" : "CONDITIONAL", - "priority" : 20, - "flowAlias" : "First broker login - Conditional OTP", - "userSetupAllowed" : false, - "autheticatorFlow" : true - } ] - }, { - "id" : "de6e0cd8-a95c-4023-9e6c-c77fe186db35", - "alias" : "browser", - "description" : "browser based authentication", - "providerId" : "basic-flow", - "topLevel" : true, - "builtIn" : true, - "authenticationExecutions" : [ { - "authenticator" : "auth-cookie", - "requirement" : "ALTERNATIVE", - "priority" : 10, - "userSetupAllowed" : false, - "autheticatorFlow" : false - }, { - "authenticator" : "auth-spnego", - "requirement" : "DISABLED", - "priority" : 20, - "userSetupAllowed" : false, - "autheticatorFlow" : false - }, { - "authenticator" : "identity-provider-redirector", - "requirement" : "ALTERNATIVE", - "priority" : 25, - "userSetupAllowed" : false, - "autheticatorFlow" : false - }, { - "requirement" : "ALTERNATIVE", - "priority" : 30, - "flowAlias" : "forms", - "userSetupAllowed" : false, - "autheticatorFlow" : true - } ] - }, { - "id" : "f6c25350-2637-4086-b681-60e5151ac98d", - "alias" : "clients", - "description" : "Base authentication for clients", - "providerId" : "client-flow", - "topLevel" : true, - "builtIn" : true, - "authenticationExecutions" : [ { - "authenticator" : "client-secret", - "requirement" : "ALTERNATIVE", - "priority" : 10, - "userSetupAllowed" : false, - "autheticatorFlow" : false - }, { - "authenticator" : "client-jwt", - "requirement" : "ALTERNATIVE", - "priority" : 20, - "userSetupAllowed" : false, - "autheticatorFlow" : false - }, { - "authenticator" : "client-secret-jwt", - "requirement" : "ALTERNATIVE", - "priority" : 30, - "userSetupAllowed" : false, - "autheticatorFlow" : false - }, { - "authenticator" : "client-x509", - "requirement" : "ALTERNATIVE", - "priority" : 40, - "userSetupAllowed" : false, - "autheticatorFlow" : false - } ] - }, { - "id" : "aed0a710-7542-4431-8d52-0bb12b3a2df5", - "alias" : "direct grant", - "description" : "OpenID Connect Resource Owner Grant", - "providerId" : "basic-flow", - "topLevel" : true, - "builtIn" : true, - "authenticationExecutions" : [ { - "authenticator" : "direct-grant-validate-username", - "requirement" : "REQUIRED", - "priority" : 10, - "userSetupAllowed" : false, - "autheticatorFlow" : false - }, { - "authenticator" : "direct-grant-validate-password", - "requirement" : "REQUIRED", - "priority" : 20, - "userSetupAllowed" : false, - "autheticatorFlow" : false - }, { - "requirement" : "CONDITIONAL", - "priority" : 30, - "flowAlias" : "Direct Grant - Conditional OTP", - "userSetupAllowed" : false, - "autheticatorFlow" : true - } ] - }, { - "id" : "9d5ea5e5-6e65-47bc-b105-9a1a1bebac11", - "alias" : "docker auth", - "description" : "Used by Docker clients to authenticate against the IDP", - "providerId" : "basic-flow", - "topLevel" : true, - "builtIn" : true, - "authenticationExecutions" : [ { - "authenticator" : "docker-http-basic-authenticator", - "requirement" : "REQUIRED", - "priority" : 10, - "userSetupAllowed" : false, - "autheticatorFlow" : false - } ] - }, { - "id" : "8660561d-943b-4b20-9c6a-7ac9e4ca00e5", - "alias" : "first broker login", - "description" : "Actions taken after first broker login with identity provider account, which is not yet linked to any Keycloak account", - "providerId" : "basic-flow", - "topLevel" : true, - "builtIn" : true, - "authenticationExecutions" : [ { - "authenticatorConfig" : "review profile config", - "authenticator" : "idp-review-profile", - "requirement" : "REQUIRED", - "priority" : 10, - "userSetupAllowed" : false, - "autheticatorFlow" : false - }, { - "requirement" : "REQUIRED", - "priority" : 20, - "flowAlias" : "User creation or linking", - "userSetupAllowed" : false, - "autheticatorFlow" : true - } ] - }, { - "id" : "75c3dc38-54e0-4421-8ab2-0c590437d0c5", - "alias" : "forms", - "description" : "Username, password, otp and other auth forms.", - "providerId" : "basic-flow", - "topLevel" : false, - "builtIn" : true, - "authenticationExecutions" : [ { - "authenticator" : "auth-username-password-form", - "requirement" : "REQUIRED", - "priority" : 10, - "userSetupAllowed" : false, - "autheticatorFlow" : false - }, { - "requirement" : "CONDITIONAL", - "priority" : 20, - "flowAlias" : "Browser - Conditional OTP", - "userSetupAllowed" : false, - "autheticatorFlow" : true - } ] - }, { - "id" : "4c848397-5bfd-4a05-9ce1-b3ee4c655d52", - "alias" : "http challenge", - "description" : "An authentication flow based on challenge-response HTTP Authentication Schemes", - "providerId" : "basic-flow", - "topLevel" : true, - "builtIn" : true, - "authenticationExecutions" : [ { - "authenticator" : "no-cookie-redirect", - "requirement" : "REQUIRED", - "priority" : 10, - "userSetupAllowed" : false, - "autheticatorFlow" : false - }, { - "requirement" : "REQUIRED", - "priority" : 20, - "flowAlias" : "Authentication Options", - "userSetupAllowed" : false, - "autheticatorFlow" : true - } ] - }, { - "id" : "9e6bae92-80ac-4714-ab65-708dc1c08d4e", - "alias" : "registration", - "description" : "registration flow", - "providerId" : "basic-flow", - "topLevel" : true, - "builtIn" : true, - "authenticationExecutions" : [ { - "authenticator" : "registration-page-form", - "requirement" : "REQUIRED", - "priority" : 10, - "flowAlias" : "registration form", - "userSetupAllowed" : false, - "autheticatorFlow" : true - } ] - }, { - "id" : "7ca21b11-88fc-44a6-915a-6690086d51fa", - "alias" : "registration form", - "description" : "registration form", - "providerId" : "form-flow", - "topLevel" : false, - "builtIn" : true, - "authenticationExecutions" : [ { - "authenticator" : "registration-user-creation", - "requirement" : "REQUIRED", - "priority" : 20, - "userSetupAllowed" : false, - "autheticatorFlow" : false - }, { - "authenticator" : "registration-profile-action", - "requirement" : "REQUIRED", - "priority" : 40, - "userSetupAllowed" : false, - "autheticatorFlow" : false - }, { - "authenticator" : "registration-password-action", - "requirement" : "REQUIRED", - "priority" : 50, - "userSetupAllowed" : false, - "autheticatorFlow" : false - }, { - "authenticator" : "registration-recaptcha-action", - "requirement" : "DISABLED", - "priority" : 60, - "userSetupAllowed" : false, - "autheticatorFlow" : false - } ] - }, { - "id" : "91b8df64-8790-4cc7-916a-549144cd1cb1", - "alias" : "reset credentials", - "description" : "Reset credentials for a user if they forgot their password or something", - "providerId" : "basic-flow", - "topLevel" : true, - "builtIn" : true, - "authenticationExecutions" : [ { - "authenticator" : "reset-credentials-choose-user", - "requirement" : "REQUIRED", - "priority" : 10, - "userSetupAllowed" : false, - "autheticatorFlow" : false - }, { - "authenticator" : "reset-credential-email", - "requirement" : "REQUIRED", - "priority" : 20, - "userSetupAllowed" : false, - "autheticatorFlow" : false - }, { - "authenticator" : "reset-password", - "requirement" : "REQUIRED", - "priority" : 30, - "userSetupAllowed" : false, - "autheticatorFlow" : false - }, { - "requirement" : "CONDITIONAL", - "priority" : 40, - "flowAlias" : "Reset - Conditional OTP", - "userSetupAllowed" : false, - "autheticatorFlow" : true - } ] - }, { - "id" : "15dce0c8-895b-4e06-a405-707be49326b5", - "alias" : "saml ecp", - "description" : "SAML ECP Profile Authentication Flow", - "providerId" : "basic-flow", - "topLevel" : true, - "builtIn" : true, - "authenticationExecutions" : [ { - "authenticator" : "http-basic-authenticator", - "requirement" : "REQUIRED", - "priority" : 10, - "userSetupAllowed" : false, - "autheticatorFlow" : false - } ] - } ], - "authenticatorConfig" : [ { - "id" : "a538254e-ef65-4316-b432-2b9f37b842a0", - "alias" : "create unique user config", - "config" : { - "require.password.update.after.registration" : "false" - } - }, { - "id" : "218ba7cc-4f94-4782-802c-819ee6054f56", - "alias" : "review profile config", - "config" : { - "update.profile.on.first.login" : "missing" - } - } ], - "requiredActions" : [ { - "alias" : "CONFIGURE_TOTP", - "name" : "Configure OTP", - "providerId" : "CONFIGURE_TOTP", - "enabled" : true, - "defaultAction" : false, - "priority" : 10, - "config" : { } - }, { - "alias" : "terms_and_conditions", - "name" : "Terms and Conditions", - "providerId" : "terms_and_conditions", - "enabled" : false, - "defaultAction" : false, - "priority" : 20, - "config" : { } - }, { - "alias" : "UPDATE_PASSWORD", - "name" : "Update Password", - "providerId" : "UPDATE_PASSWORD", - "enabled" : true, - "defaultAction" : false, - "priority" : 30, - "config" : { } - }, { - "alias" : "UPDATE_PROFILE", - "name" : "Update Profile", - "providerId" : "UPDATE_PROFILE", - "enabled" : true, - "defaultAction" : false, - "priority" : 40, - "config" : { } - }, { - "alias" : "VERIFY_EMAIL", - "name" : "Verify Email", - "providerId" : "VERIFY_EMAIL", - "enabled" : true, - "defaultAction" : false, - "priority" : 50, - "config" : { } - }, { - "alias" : "delete_account", - "name" : "Delete Account", - "providerId" : "delete_account", - "enabled" : false, - "defaultAction" : false, - "priority" : 60, - "config" : { } - }, { - "alias" : "update_user_locale", - "name" : "Update User Locale", - "providerId" : "update_user_locale", - "enabled" : true, - "defaultAction" : false, - "priority" : 1000, - "config" : { } - } ], - "browserFlow" : "browser", - "registrationFlow" : "registration", - "directGrantFlow" : "direct grant", - "resetCredentialsFlow" : "reset credentials", - "clientAuthenticationFlow" : "clients", - "dockerAuthenticationFlow" : "docker auth", - "attributes" : { - "clientOfflineSessionMaxLifespan" : "0", - "clientSessionIdleTimeout" : "0", - "clientSessionMaxLifespan" : "0", - "frontendUrl" : "", - "clientOfflineSessionIdleTimeout" : "0" - }, - "keycloakVersion" : "12.0.4", - "userManagedAccessAllowed" : false +{ + "id" : "medina", + "realm" : "medina", + "displayName" : "", + "notBefore" : 1674222044, + "revokeRefreshToken" : false, + "refreshTokenMaxReuse" : 0, + "accessTokenLifespan" : 300, + "accessTokenLifespanForImplicitFlow" : 900, + "ssoSessionIdleTimeout" : 7200, + "ssoSessionMaxLifespan" : 36000, + "ssoSessionIdleTimeoutRememberMe" : 0, + "ssoSessionMaxLifespanRememberMe" : 0, + "offlineSessionIdleTimeout" : 2592000, + "offlineSessionMaxLifespanEnabled" : false, + "offlineSessionMaxLifespan" : 5184000, + "clientSessionIdleTimeout" : 0, + "clientSessionMaxLifespan" : 0, + "clientOfflineSessionIdleTimeout" : 0, + "clientOfflineSessionMaxLifespan" : 0, + "accessCodeLifespan" : 60, + "accessCodeLifespanUserAction" : 300, + "accessCodeLifespanLogin" : 1800, + "actionTokenGeneratedByAdminLifespan" : 43200, + "actionTokenGeneratedByUserLifespan" : 300, + "enabled" : true, + "sslRequired" : "external", + "registrationAllowed" : false, + "registrationEmailAsUsername" : false, + "rememberMe" : false, + "verifyEmail" : false, + "loginWithEmailAllowed" : true, + "duplicateEmailsAllowed" : false, + "resetPasswordAllowed" : false, + "editUsernameAllowed" : false, + "bruteForceProtected" : false, + "permanentLockout" : false, + "maxFailureWaitSeconds" : 900, + "minimumQuickLoginWaitSeconds" : 60, + "waitIncrementSeconds" : 60, + "quickLoginCheckMilliSeconds" : 1000, + "maxDeltaTimeSeconds" : 43200, + "failureFactor" : 30, + "roles" : { + "realm" : [ { + "id" : "2f6015a8-ddee-42f9-99c5-4760bd5fb5c7", + "name" : "ROLE_USER", + "description" : "temporary role for catalogue jhipster", + "composite" : false, + "clientRole" : false, + "containerId" : "medina", + "attributes" : { } + }, { + "id" : "9d96522b-ff58-498d-ad7f-11a747bd924e", + "name" : "offline_access", + "description" : "${role_offline-access}", + "composite" : false, + "clientRole" : false, + "containerId" : "medina", + "attributes" : { } + }, { + "id" : "417a650d-7309-41d2-aecd-cd179c656c65", + "name" : "Auditor", + "description" : "The Conformity Assessment Body (CAB) is a body that performs conformity assessment services with the goal of demonstrating that specified requirements are fulfilled.", + "composite" : true, + "composites" : { + "client" : { + "clouditor-orchestrator" : [ "Create", "Delete", "Read", "Update" ], + "api-swagger" : [ "user", "test-fake-role" ], + "integrated-ui" : [ "showCCE", "user", "showUser", "showOrchestrator", "admin" ] + } + }, + "clientRole" : false, + "containerId" : "medina", + "attributes" : { } + }, { + "id" : "aba5b760-352b-493c-8c2b-86657d5852aa", + "name" : "SecurityGovernance", + "description" : "IT Security Governance (UC1) - Its main objective is the protection of Bosch business models, products, services, and data.", + "composite" : true, + "composites" : { + "client" : { + "integrated-ui" : [ "showSATRA", "showCCE", "showAMOE", "showUser", "showCNL", "showCatalogue", "showOrchestrator", "admin" ] + } + }, + "clientRole" : false, + "containerId" : "medina", + "attributes" : { } + }, { + "id" : "9d2b69b9-28c2-4c79-bc75-316100a7027e", + "name" : "SecurityAnalyst", + "description" : "Security Analyst (UC1) - Responsible for ensuring that the Bosch Group’s digital assets and sensitive information are protected as well as evaluating and reporting on the efficiency of the security policies in place.", + "composite" : false, + "clientRole" : false, + "containerId" : "medina", + "attributes" : { } + }, { + "id" : "dca59f95-5177-4721-92b4-b817c7c5d423", + "name" : "ProductOwner", + "description" : "Product and Service Owner (UC1) - The Product & Service Owner is the central point of contact for all questions concerning a specific Bosch IT product or service.", + "composite" : true, + "composites" : { + "client" : { + "integrated-ui" : [ "showSATRA", "showCCE", "showAMOE", "user", "showUser", "showCNL", "showCatalogue", "showOrchestrator", "admin" ] + } + }, + "clientRole" : false, + "containerId" : "medina", + "attributes" : { } + }, { + "id" : "0f08df2b-4b64-487c-9e51-2580a02ae0ef", + "name" : "Customer", + "description" : "The customer is either a company consuming cloud products or services (B2B, business-to-business context), or an individual (B2C, business-to-customer context).", + "composite" : false, + "clientRole" : false, + "containerId" : "medina", + "attributes" : { } + }, { + "id" : "dac0890c-0957-40ed-b72f-37ca91a59d6e", + "name" : "Company", + "description" : "Most of the defined roles are employed by the company. Products of company are being audited", + "composite" : true, + "composites" : { + "client" : { + "integrated-ui" : [ "showSATRA", "showCCE", "showAMOE", "user", "showUser", "showCNL", "showCatalogue", "showOrchestrator" ] + } + }, + "clientRole" : false, + "containerId" : "medina", + "attributes" : { } + }, { + "id" : "f4c52c7f-c34d-4101-8c11-523dbc526d72", + "name" : "ICO", + "description" : "Internal Control Owner - Responsible for creating internal controls. Executing the internal controls.", + "composite" : false, + "clientRole" : false, + "containerId" : "medina", + "attributes" : { } + }, { + "id" : "a73d220e-2c6b-4451-a80d-7689f6722884", + "name" : "ProductSecurityEng", + "description" : "Product (Security) Engineer (UC1) - Oversees the build, deploy, and run of a product and its system components.", + "composite" : true, + "composites" : { + "client" : { + "integrated-ui" : [ "showSATRA", "showCCE", "showAMOE", "user", "showUser", "showCNL", "showCatalogue", "showOrchestrator", "admin" ] + } + }, + "clientRole" : false, + "containerId" : "medina", + "attributes" : { } + }, { + "id" : "ec325a48-83c2-4b16-96be-305dc4767132", + "name" : "uma_authorization", + "description" : "${role_uma_authorization}", + "composite" : false, + "clientRole" : false, + "containerId" : "medina", + "attributes" : { } + }, { + "id" : "a45d5e5d-b5a5-4a2d-8026-a2371ad84577", + "name" : "DomainGovernance", + "description" : "Domain Governance (UC1) - Acts as the core competence holder and responsible topic owner for product security", + "composite" : true, + "composites" : { + "client" : { + "integrated-ui" : [ "showSATRA", "showCCE", "showAMOE", "user", "showUser", "showCNL", "showCatalogue", "showOrchestrator", "admin" ] + } + }, + "clientRole" : false, + "containerId" : "medina", + "attributes" : { } + }, { + "id" : "64dbcf9f-4231-4163-828a-5fa4fe9db278", + "name" : "CISO", + "description" : "Chief Information Security Officer - Responsible for security in the company, chooses what security controls should be implemented", + "composite" : true, + "composites" : { + "client" : { + "integrated-ui" : [ "showSATRA", "showCCE", "showAMOE", "user", "showUser", "showCNL", "showCatalogue", "showOrchestrator" ] + } + }, + "clientRole" : false, + "containerId" : "medina", + "attributes" : { } + }, { + "id" : "acdc368d-14d9-4478-b102-b67cfadebf49", + "name" : "test-role-1", + "composite" : false, + "clientRole" : false, + "containerId" : "medina", + "attributes" : { } + }, { + "id" : "e7c3caa6-1e16-4cf6-9484-b0af649117df", + "name" : "Compliance Manager", + "description" : "Responsible for the implementation of security control frameworks.\nResponsible for the correct implementation of the internal controls.\nResponsible for incident management.\nResponsible for performing internal audits.", + "composite" : true, + "composites" : { + "realm" : [ "ROLE_USER", "ROLE_ADMIN" ], + "client" : { + "raof" : [ "engine", "uma_protection" ], + "cnl-editor-frontend" : [ "user" ], + "integrated-ui" : [ "user", "showSATRA", "showCCE", "showAMOE", "showUser", "showCNL", "showCatalogue", "showOrchestrator", "admin", "showSSI" ], + "nl2cnl-translator-client" : [ "user" ] + } + }, + "clientRole" : false, + "containerId" : "medina", + "attributes" : { } + }, { + "id" : "fd93daa9-1357-4ba3-989d-7bf4b7ba2a07", + "name" : "ROLE_ADMIN", + "description" : "temporary role for catalogue jhipster", + "composite" : false, + "clientRole" : false, + "containerId" : "medina", + "attributes" : { } + } ], + "client" : { + "catalogue-backend" : [ ], + "cce" : [ { + "id" : "aa5844fb-a4f8-4cfa-8514-1f4033e8bd9c", + "name" : "uma_protection", + "composite" : false, + "clientRole" : true, + "containerId" : "dc64b28b-a696-4b0c-8e24-2aeae138c3e5", + "attributes" : { } + } ], + "raof-app" : [ { + "id" : "e08ef386-bb91-4ce8-8a02-8f65755d0612", + "name" : "uma_protection", + "composite" : false, + "clientRole" : true, + "containerId" : "1c198016-f44c-4620-b2f6-821173bc2e54", + "attributes" : { } + } ], + "security-admin-console" : [ ], + "trustworthiness_verification" : [ ], + "wazuh-vat-evidence-collector-dev" : [ { + "id" : "3c40a84f-dc61-43d1-a607-e3fad0df3766", + "name" : "uma_protection", + "composite" : false, + "clientRole" : true, + "containerId" : "aa18689d-6d81-4b92-8b9e-291eb4733408", + "attributes" : { } + } ], + "clouditor-assessment" : [ ], + "account-console" : [ ], + "cce-frontend" : [ ], + "ssi-frontend" : [ ], + "amoe-client" : [ ], + "dsl-mapper-client" : [ { + "id" : "16f2a92a-594f-420a-92c7-e39fbee9901a", + "name" : "user", + "composite" : false, + "clientRole" : true, + "containerId" : "4cb90bba-1483-48f8-85c3-af800943c740", + "attributes" : { } + }, { + "id" : "e2b8af2e-38b0-4018-9a79-794fb47acd59", + "name" : "uma_protection", + "composite" : false, + "clientRole" : true, + "containerId" : "4cb90bba-1483-48f8-85c3-af800943c740", + "attributes" : { } + } ], + "clouditor-cli" : [ ], + "codyze" : [ ], + "admin-cli" : [ ], + "catalogue-jhipster-control-center" : [ ], + "catalogue-registry" : [ ], + "clouditor-orchestrator" : [ { + "id" : "d0e4fbcd-ae45-48c3-89d5-29b1b5f35107", + "name" : "Create", + "composite" : false, + "clientRole" : true, + "containerId" : "fb2b3d0e-e2d7-4cb2-819d-bab9043f0d11", + "attributes" : { } + }, { + "id" : "22de6b01-a691-4b28-8f1d-95050048ade7", + "name" : "Delete", + "composite" : false, + "clientRole" : true, + "containerId" : "fb2b3d0e-e2d7-4cb2-819d-bab9043f0d11", + "attributes" : { } + }, { + "id" : "49d1cb98-55b9-48b3-a21c-4c7e8638cc19", + "name" : "Read", + "composite" : false, + "clientRole" : true, + "containerId" : "fb2b3d0e-e2d7-4cb2-819d-bab9043f0d11", + "attributes" : { } + }, { + "id" : "11bd1875-8f19-4216-8a2c-6dd2a5895c00", + "name" : "Update", + "composite" : false, + "clientRole" : true, + "containerId" : "fb2b3d0e-e2d7-4cb2-819d-bab9043f0d11", + "attributes" : { } + } ], + "realm-management" : [ { + "id" : "e02ce89a-c0b9-43b5-b6be-5c515624927a", + "name" : "manage-clients", + "description" : "${role_manage-clients}", + "composite" : false, + "clientRole" : true, + "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", + "attributes" : { } + }, { + "id" : "5bc05c8b-6d6a-45a1-92f7-cc33f4fe57bd", + "name" : "view-authorization", + "description" : "${role_view-authorization}", + "composite" : false, + "clientRole" : true, + "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", + "attributes" : { } + }, { + "id" : "0ee5608f-ab3a-4a8e-889b-e0d230a2fc86", + "name" : "view-clients", + "description" : "${role_view-clients}", + "composite" : true, + "composites" : { + "client" : { + "realm-management" : [ "query-clients" ] + } + }, + "clientRole" : true, + "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", + "attributes" : { } + }, { + "id" : "c2bd9190-451c-45d7-9588-412e1c40d5fd", + "name" : "manage-authorization", + "description" : "${role_manage-authorization}", + "composite" : false, + "clientRole" : true, + "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", + "attributes" : { } + }, { + "id" : "83e3e683-50b5-4050-b88b-2178342a13f8", + "name" : "manage-events", + "description" : "${role_manage-events}", + "composite" : false, + "clientRole" : true, + "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", + "attributes" : { } + }, { + "id" : "4e9c2113-f0d3-4691-bb66-49e3ca218d63", + "name" : "query-clients", + "description" : "${role_query-clients}", + "composite" : false, + "clientRole" : true, + "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", + "attributes" : { } + }, { + "id" : "cdca2718-5853-4969-9b63-2186e0382085", + "name" : "query-realms", + "description" : "${role_query-realms}", + "composite" : false, + "clientRole" : true, + "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", + "attributes" : { } + }, { + "id" : "33eb311b-fdbc-4ccf-b367-ae2b1c8c2e55", + "name" : "view-users", + "description" : "${role_view-users}", + "composite" : true, + "composites" : { + "client" : { + "realm-management" : [ "query-users", "query-groups" ] + } + }, + "clientRole" : true, + "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", + "attributes" : { } + }, { + "id" : "56382323-69f8-4eca-b433-aa14ccc83be3", + "name" : "manage-identity-providers", + "description" : "${role_manage-identity-providers}", + "composite" : false, + "clientRole" : true, + "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", + "attributes" : { } + }, { + "id" : "2db34bf8-3fac-4fb8-8ed4-b7f44cadcb2e", + "name" : "create-client", + "description" : "${role_create-client}", + "composite" : false, + "clientRole" : true, + "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", + "attributes" : { } + }, { + "id" : "ae7b03e5-747f-4341-8add-1c872658bec4", + "name" : "view-events", + "description" : "${role_view-events}", + "composite" : false, + "clientRole" : true, + "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", + "attributes" : { } + }, { + "id" : "a607a195-5e2c-4701-855d-d202ba52a313", + "name" : "manage-users", + "description" : "${role_manage-users}", + "composite" : false, + "clientRole" : true, + "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", + "attributes" : { } + }, { + "id" : "3f2bf59d-4b3f-425a-a75f-e6b8c6d27af0", + "name" : "view-realm", + "description" : "${role_view-realm}", + "composite" : false, + "clientRole" : true, + "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", + "attributes" : { } + }, { + "id" : "d23239ef-028a-4409-b965-e20ea6ac8795", + "name" : "impersonation", + "description" : "${role_impersonation}", + "composite" : false, + "clientRole" : true, + "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", + "attributes" : { } + }, { + "id" : "f724e1e9-a878-4ae3-9bc8-995767add1a3", + "name" : "manage-realm", + "description" : "${role_manage-realm}", + "composite" : false, + "clientRole" : true, + "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", + "attributes" : { } + }, { + "id" : "e6b7421d-7d5c-4f1c-bb48-0a873c9870c4", + "name" : "query-users", + "description" : "${role_query-users}", + "composite" : false, + "clientRole" : true, + "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", + "attributes" : { } + }, { + "id" : "7a81ec99-e710-409d-bd34-ae3642a1912d", + "name" : "view-identity-providers", + "description" : "${role_view-identity-providers}", + "composite" : false, + "clientRole" : true, + "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", + "attributes" : { } + }, { + "id" : "fbeca797-27ee-44a0-8566-bec5666e6bcc", + "name" : "query-groups", + "description" : "${role_query-groups}", + "composite" : false, + "clientRole" : true, + "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", + "attributes" : { } + }, { + "id" : "f9ea5c84-0690-47f4-b887-a3351ca800de", + "name" : "realm-admin", + "description" : "${role_realm-admin}", + "composite" : true, + "composites" : { + "client" : { + "realm-management" : [ "manage-clients", "view-authorization", "view-clients", "manage-authorization", "manage-events", "query-clients", "query-realms", "view-users", "manage-identity-providers", "create-client", "view-events", "manage-users", "view-realm", "impersonation", "manage-realm", "query-users", "view-identity-providers", "query-groups" ] + } + }, + "clientRole" : true, + "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", + "attributes" : { } + } ], + "api-swagger" : [ { + "id" : "a7aa8c9f-7cc5-4c91-8657-31b74ba02a1a", + "name" : "uma_protection", + "composite" : false, + "clientRole" : true, + "containerId" : "a08fc1fe-7c85-4c1c-9d04-604c6e35faa8", + "attributes" : { } + }, { + "id" : "88fa7113-8fd5-4dd4-940d-e0e2e06471d4", + "name" : "user", + "composite" : false, + "clientRole" : true, + "containerId" : "a08fc1fe-7c85-4c1c-9d04-604c6e35faa8", + "attributes" : { } + }, { + "id" : "08979d05-5713-4826-a036-39a25cbbcba6", + "name" : "test-fake-role", + "description" : "this is a fake role, for testing purpose", + "composite" : false, + "clientRole" : true, + "containerId" : "a08fc1fe-7c85-4c1c-9d04-604c6e35faa8", + "attributes" : { } + } ], + "cnl-editor-frontend" : [ { + "id" : "910ffe29-95b3-4b82-a734-b24bff7cfa8d", + "name" : "user", + "composite" : false, + "clientRole" : true, + "containerId" : "15a81bd1-4edd-4e2a-87ec-3bbcac30d2a3", + "attributes" : { } + } ], + "life-cycle-manager" : [ ], + "integrated-ui" : [ { + "id" : "644bda67-3674-4a93-968d-8a7bb9679e50", + "name" : "showSATRA", + "composite" : false, + "clientRole" : true, + "containerId" : "1150f83f-37bc-4b14-98a0-e179aaee0f6c", + "attributes" : { } + }, { + "id" : "58b0ddb9-373c-47d1-889a-9adacc414bf0", + "name" : "showCCE", + "composite" : false, + "clientRole" : true, + "containerId" : "1150f83f-37bc-4b14-98a0-e179aaee0f6c", + "attributes" : { } + }, { + "id" : "eb0a3413-b986-4cb6-a49c-9148d89df25a", + "name" : "showAMOE", + "composite" : false, + "clientRole" : true, + "containerId" : "1150f83f-37bc-4b14-98a0-e179aaee0f6c", + "attributes" : { } + }, { + "id" : "258c00de-d88c-4239-908b-be79f895c3b0", + "name" : "user", + "composite" : false, + "clientRole" : true, + "containerId" : "1150f83f-37bc-4b14-98a0-e179aaee0f6c", + "attributes" : { } + }, { + "id" : "8309ecee-a10c-440b-909c-5c36d12c6e2e", + "name" : "showUser", + "composite" : false, + "clientRole" : true, + "containerId" : "1150f83f-37bc-4b14-98a0-e179aaee0f6c", + "attributes" : { } + }, { + "id" : "77ecaa02-0d8e-4544-8235-21c07c48d251", + "name" : "showCNL", + "composite" : false, + "clientRole" : true, + "containerId" : "1150f83f-37bc-4b14-98a0-e179aaee0f6c", + "attributes" : { } + }, { + "id" : "a4309640-7f2f-45b5-a0ed-bb9977d6b2e7", + "name" : "showCatalogue", + "composite" : false, + "clientRole" : true, + "containerId" : "1150f83f-37bc-4b14-98a0-e179aaee0f6c", + "attributes" : { } + }, { + "id" : "ceae1740-d2ed-414f-b316-651d192adef3", + "name" : "showOrchestrator", + "composite" : false, + "clientRole" : true, + "containerId" : "1150f83f-37bc-4b14-98a0-e179aaee0f6c", + "attributes" : { } + }, { + "id" : "ae424f76-ac11-4a9b-939d-67ab55a0fc5a", + "name" : "admin", + "composite" : false, + "clientRole" : true, + "containerId" : "1150f83f-37bc-4b14-98a0-e179aaee0f6c", + "attributes" : { } + }, { + "id" : "e779ba09-8cc8-4b87-8289-f96a6de40d24", + "name" : "showSSI", + "composite" : false, + "clientRole" : true, + "containerId" : "1150f83f-37bc-4b14-98a0-e179aaee0f6c", + "attributes" : { } + } ], + "ccd-client" : [ ], + "broker" : [ { + "id" : "381e01c5-2dce-4da6-854b-334d015e7224", + "name" : "read-token", + "description" : "${role_read-token}", + "composite" : false, + "clientRole" : true, + "containerId" : "8d1a867d-537c-433e-8234-b3582127cc54", + "attributes" : { } + } ], + "clouditor-ui" : [ ], + "raof" : [ { + "id" : "6de07826-dc41-4208-bc5e-8d64d38cfec2", + "name" : "engine", + "composite" : false, + "clientRole" : true, + "containerId" : "785a9f77-d06f-4a65-9ba9-341921fda61a", + "attributes" : { } + }, { + "id" : "9ecb4267-a5d3-421e-9aad-9b329fe4701d", + "name" : "uma_protection", + "composite" : false, + "clientRole" : true, + "containerId" : "785a9f77-d06f-4a65-9ba9-341921fda61a", + "attributes" : { } + } ], + "nl2cnl-translator-client" : [ { + "id" : "8fdf06d3-6c44-4aa3-bb0a-80dc589ced1c", + "name" : "uma_protection", + "composite" : false, + "clientRole" : true, + "containerId" : "9f7c65f7-9ae9-4c9e-9bd7-971d0cbe146d", + "attributes" : { } + }, { + "id" : "4486610d-0195-463c-bf2f-cf4cd10001c8", + "name" : "user", + "composite" : false, + "clientRole" : true, + "containerId" : "9f7c65f7-9ae9-4c9e-9bd7-971d0cbe146d", + "attributes" : { } + } ], + "catalogue-gateway" : [ ], + "clouditor-discovery" : [ ], + "account" : [ { + "id" : "ad76fbd3-fd48-4820-8454-c9e6e8b21da5", + "name" : "manage-consent", + "description" : "${role_manage-consent}", + "composite" : true, + "composites" : { + "client" : { + "account" : [ "view-consent" ] + } + }, + "clientRole" : true, + "containerId" : "8bd89baf-08f6-4e4b-8394-6b4dd6050ed2", + "attributes" : { } + }, { + "id" : "3cf9ad63-38af-430f-86da-bf7455dfb668", + "name" : "view-applications", + "description" : "${role_view-applications}", + "composite" : false, + "clientRole" : true, + "containerId" : "8bd89baf-08f6-4e4b-8394-6b4dd6050ed2", + "attributes" : { } + }, { + "id" : "a47fd133-6ba5-4870-af1b-9a17b76be404", + "name" : "view-consent", + "description" : "${role_view-consent}", + "composite" : false, + "clientRole" : true, + "containerId" : "8bd89baf-08f6-4e4b-8394-6b4dd6050ed2", + "attributes" : { } + }, { + "id" : "36ac4d35-7384-40c3-a877-7a2934bc9250", + "name" : "manage-account-links", + "description" : "${role_manage-account-links}", + "composite" : false, + "clientRole" : true, + "containerId" : "8bd89baf-08f6-4e4b-8394-6b4dd6050ed2", + "attributes" : { } + }, { + "id" : "3e5612a2-7c5c-4026-a6ac-7a332e266aab", + "name" : "manage-account", + "description" : "${role_manage-account}", + "composite" : true, + "composites" : { + "client" : { + "account" : [ "manage-account-links" ] + } + }, + "clientRole" : true, + "containerId" : "8bd89baf-08f6-4e4b-8394-6b4dd6050ed2", + "attributes" : { } + }, { + "id" : "1062c184-cad0-462d-ad3a-d51d5208536c", + "name" : "delete-account", + "description" : "${role_delete-account}", + "composite" : false, + "clientRole" : true, + "containerId" : "8bd89baf-08f6-4e4b-8394-6b4dd6050ed2", + "attributes" : { } + }, { + "id" : "d1a2381b-d165-43fb-a79d-8c614c46b96e", + "name" : "view-profile", + "description" : "${role_view-profile}", + "composite" : false, + "clientRole" : true, + "containerId" : "8bd89baf-08f6-4e4b-8394-6b4dd6050ed2", + "attributes" : { } + } ] + } + }, + "groups" : [ { + "id" : "8b3ee09d-0aa4-4382-be86-a8b84745b56a", + "name" : "AlwaysGreen", + "path" : "/AlwaysGreen", + "attributes" : { + "cloudserviceid" : [ "1b0d7b7e-a230-4d0c-8891-65d0b92e0fa1" ] + }, + "realmRoles" : [ ], + "clientRoles" : { }, + "subGroups" : [ ] + }, { + "id" : "e827087c-1649-47e6-a238-2acc1c81fe26", + "name" : "AlwaysGreenExceptOne", + "path" : "/AlwaysGreenExceptOne", + "attributes" : { + "cloudserviceid" : [ "e3a76767-0376-499a-a8b3-3ba1394fd5f5" ] + }, + "realmRoles" : [ ], + "clientRoles" : { }, + "subGroups" : [ ] + }, { + "id" : "5e615fa4-4770-455a-affa-4a4d51f27396", + "name" : "AlwaysRed", + "path" : "/AlwaysRed", + "attributes" : { + "cloudserviceid" : [ "2d645da4-9c45-40b4-b26f-12090cea4f6f" ] + }, + "realmRoles" : [ ], + "clientRoles" : { }, + "subGroups" : [ ] + }, { + "id" : "ed9dd061-e96c-47e0-95bd-fcc39e359c0c", + "name" : "CloudServiceProvidersGroup", + "path" : "/CloudServiceProvidersGroup", + "attributes" : { }, + "realmRoles" : [ ], + "clientRoles" : { }, + "subGroups" : [ { + "id" : "8e2617d0-5711-44d1-a93e-d05d4423a63b", + "name" : "Fabasoft Cloud Service Provider", + "path" : "/CloudServiceProvidersGroup/Fabasoft Cloud Service Provider", + "attributes" : { + "cloudserviceproviderid" : [ "Fabasoft" ] + }, + "realmRoles" : [ ], + "clientRoles" : { }, + "subGroups" : [ ] + }, { + "id" : "a9cae5cc-8824-47fc-9564-d3976b6ae0ff", + "name" : "CloudServiceProviderTest1", + "path" : "/CloudServiceProvidersGroup/CloudServiceProviderTest1", + "attributes" : { + "cloudserviceproviderid" : [ "CloudServiceProviderTest1ID" ] + }, + "realmRoles" : [ ], + "clientRoles" : { }, + "subGroups" : [ ] + }, { + "id" : "372d7fb2-acfd-4338-aa9a-c04c1fe139e7", + "name" : "Bosch Cloud Service Provider", + "path" : "/CloudServiceProvidersGroup/Bosch Cloud Service Provider", + "attributes" : { + "cloudserviceproviderid" : [ "Bosch" ] + }, + "realmRoles" : [ ], + "clientRoles" : { }, + "subGroups" : [ ] + } ] + }, { + "id" : "b8508c0d-57db-4136-a469-b70e1f6332cc", + "name" : "CloudServicesGroup", + "path" : "/CloudServicesGroup", + "attributes" : { }, + "realmRoles" : [ ], + "clientRoles" : { }, + "subGroups" : [ { + "id" : "b6421285-efcf-4a4e-9a71-432cf325e2e4", + "name" : "CloudServiceTest2", + "path" : "/CloudServicesGroup/CloudServiceTest2", + "attributes" : { + "cloudserviceid" : [ "CloudServiceTest2ID" ] + }, + "realmRoles" : [ ], + "clientRoles" : { }, + "subGroups" : [ ] + }, { + "id" : "6ff013fa-c765-43e0-b7d6-a0ab1cac5000", + "name" : "TestCCDCloudService", + "path" : "/CloudServicesGroup/TestCCDCloudService", + "attributes" : { + "cloudserviceid" : [ "73633f38-9509-4820-a867-68d49622c5f7" ] + }, + "realmRoles" : [ ], + "clientRoles" : { }, + "subGroups" : [ ] + }, { + "id" : "23bd87c3-c46f-47fa-9925-d26e7e8b3045", + "name" : "MichelaCS1", + "path" : "/CloudServicesGroup/MichelaCS1", + "attributes" : { + "cloudserviceid" : [ "71e9d06f-518c-4c95-be1b-011661220c4d" ] + }, + "realmRoles" : [ ], + "clientRoles" : { }, + "subGroups" : [ ] + }, { + "id" : "610a288f-b93b-4da2-ab58-a5e61b38dbc7", + "name" : "Fabasoft", + "path" : "/CloudServicesGroup/Fabasoft", + "attributes" : { + "cloudserviceid" : [ "27ec470e-952b-40e7-9167-a7c3e58bd53d" ] + }, + "realmRoles" : [ ], + "clientRoles" : { }, + "subGroups" : [ ] + }, { + "id" : "9dccce11-775b-4e2c-a471-90d91cc40dcf", + "name" : "Bosch", + "path" : "/CloudServicesGroup/Bosch", + "attributes" : { + "cloudserviceid" : [ "f712b8bc-5bd0-4df7-9e34-9e1fb2719763" ] + }, + "realmRoles" : [ ], + "clientRoles" : { }, + "subGroups" : [ ] + }, { + "id" : "c23dc3e7-334b-403f-a327-3f4761a8508a", + "name" : "Bosch_PaaS", + "path" : "/CloudServicesGroup/Bosch_PaaS", + "attributes" : { + "cloudserviceid" : [ "5a69a810-b523-4cb7-8f46-600098a9754f" ] + }, + "realmRoles" : [ ], + "clientRoles" : { }, + "subGroups" : [ ] + }, { + "id" : "fd59fb08-937f-4e3a-b9fd-cd3443781cad", + "name" : "DefaultCloudService", + "path" : "/CloudServicesGroup/DefaultCloudService", + "attributes" : { + "cloudserviceid" : [ "00000000-0000-0000-0000-000000000000" ] + }, + "realmRoles" : [ ], + "clientRoles" : { }, + "subGroups" : [ ] + }, { + "id" : "c7e191c6-ef16-4d6c-bc62-1cac4dbd8dc7", + "name" : "CloudServiceWithValidUUID", + "path" : "/CloudServicesGroup/CloudServiceWithValidUUID", + "attributes" : { + "cloudserviceid" : [ "813d82df-2d31-4ee1-9ca6-f38137bd1f14" ] + }, + "realmRoles" : [ ], + "clientRoles" : { }, + "subGroups" : [ ] + }, { + "id" : "3ae94354-6142-4999-a964-1c7fe5193657", + "name" : "Bosch_IaaS", + "path" : "/CloudServicesGroup/Bosch_IaaS", + "attributes" : { + "cloudserviceid" : [ "945d9c38-b2ad-4db5-9d33-cd10b7d5d840" ] + }, + "realmRoles" : [ ], + "clientRoles" : { }, + "subGroups" : [ ] + }, { + "id" : "f9da1040-2a1d-4dbb-b387-e68f159dd1b2", + "name" : "CloudServiceTest1", + "path" : "/CloudServicesGroup/CloudServiceTest1", + "attributes" : { + "cloudserviceid" : [ "CloudServiceTest1ID" ] + }, + "realmRoles" : [ ], + "clientRoles" : { }, + "subGroups" : [ ] + }, { + "id" : "f7822dbb-1b40-4992-903a-3102e83df6dc", + "name" : "hpe-csid1", + "path" : "/CloudServicesGroup/hpe-csid1", + "attributes" : { + "cloudserviceid" : [ "0000001-b2ad-4db5-9d33-cd10b7d5d840" ] + }, + "realmRoles" : [ ], + "clientRoles" : { }, + "subGroups" : [ ] + }, { + "id" : "7c09aad4-b0e8-4f00-8b40-05c8451de518", + "name" : "Bosch_SaaS", + "path" : "/CloudServicesGroup/Bosch_SaaS", + "attributes" : { + "cloudserviceid" : [ "35586422-bd0d-4a01-a467-7ced9c388748" ] + }, + "realmRoles" : [ ], + "clientRoles" : { }, + "subGroups" : [ ] + }, { + "id" : "d2fb3390-c515-41f9-9475-6abab61ae4d7", + "name" : "hpe-csid2", + "path" : "/CloudServicesGroup/hpe-csid2", + "attributes" : { + "cloudserviceid" : [ "00000002-b2ad-4db5-9d33-cd10b7d5d840" ] + }, + "realmRoles" : [ ], + "clientRoles" : { }, + "subGroups" : [ ] + } ] + }, { + "id" : "d6d56fa4-0c2c-4067-8e84-b705ebf2d788", + "name" : "NonPolicyService", + "path" : "/NonPolicyService", + "attributes" : { + "cloudserviceid" : [ "1d44a934-4783-4fda-9265-ec9f9bb145c5" ] + }, + "realmRoles" : [ ], + "clientRoles" : { }, + "subGroups" : [ ] + }, { + "id" : "515497a3-59d5-4020-ab57-d07d4bde9c74", + "name" : "OldDefaultCS", + "path" : "/OldDefaultCS", + "attributes" : { + "cloudserviceid" : [ "00000000-0000-0000-000000000000" ] + }, + "realmRoles" : [ ], + "clientRoles" : { }, + "subGroups" : [ ] + }, { + "id" : "3d01df79-5e32-4966-9ccb-a221bdd82b4e", + "name" : "is_admin", + "path" : "/is_admin", + "attributes" : { + "is_admin" : [ "TRUE" ] + }, + "realmRoles" : [ ], + "clientRoles" : { }, + "subGroups" : [ ] + } ], + "defaultRoles" : [ "offline_access", "uma_authorization" ], + "requiredCredentials" : [ "password" ], + "otpPolicyType" : "totp", + "otpPolicyAlgorithm" : "HmacSHA1", + "otpPolicyInitialCounter" : 0, + "otpPolicyDigits" : 6, + "otpPolicyLookAheadWindow" : 1, + "otpPolicyPeriod" : 30, + "otpSupportedApplications" : [ "FreeOTP", "Google Authenticator" ], + "webAuthnPolicyRpEntityName" : "keycloak", + "webAuthnPolicySignatureAlgorithms" : [ "ES256" ], + "webAuthnPolicyRpId" : "", + "webAuthnPolicyAttestationConveyancePreference" : "not specified", + "webAuthnPolicyAuthenticatorAttachment" : "not specified", + "webAuthnPolicyRequireResidentKey" : "not specified", + "webAuthnPolicyUserVerificationRequirement" : "not specified", + "webAuthnPolicyCreateTimeout" : 0, + "webAuthnPolicyAvoidSameAuthenticatorRegister" : false, + "webAuthnPolicyAcceptableAaguids" : [ ], + "webAuthnPolicyPasswordlessRpEntityName" : "keycloak", + "webAuthnPolicyPasswordlessSignatureAlgorithms" : [ "ES256" ], + "webAuthnPolicyPasswordlessRpId" : "", + "webAuthnPolicyPasswordlessAttestationConveyancePreference" : "not specified", + "webAuthnPolicyPasswordlessAuthenticatorAttachment" : "not specified", + "webAuthnPolicyPasswordlessRequireResidentKey" : "not specified", + "webAuthnPolicyPasswordlessUserVerificationRequirement" : "not specified", + "webAuthnPolicyPasswordlessCreateTimeout" : 0, + "webAuthnPolicyPasswordlessAvoidSameAuthenticatorRegister" : false, + "webAuthnPolicyPasswordlessAcceptableAaguids" : [ ], + "users" : [ { + "id" : "bb6244c3-35ec-4908-b4e0-73b159cc7a04", + "createdTimestamp" : 1646126460390, + "username" : "admin", + "enabled" : true, + "totp" : false, + "emailVerified" : true, + "firstName" : "admin", + "email" : "admin@localhost", + "attributes" : { + "cladmin" : [ "true" ] + }, + "credentials" : [ { + "id" : "0538b4a5-5a40-42f2-b92e-56cd9c6820f0", + "type" : "password", + "createdDate" : 1683189447590, + "secretData" : "{\"value\":\"aosiXWGkQS2nq7css2Bk39UvWjvuE6gfrmb/gajL3fRRqK0qzkYDcJvpR1nYo64XihoB8qKtyaAUdQ2LyfrpLA==\",\"salt\":\"FAbuyUYldOndssGKUHkiTA==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "ROLE_USER", "offline_access", "Auditor", "uma_authorization", "ROLE_ADMIN", "Compliance Manager" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ "/AlwaysGreen", "/AlwaysGreenExceptOne", "/AlwaysRed", "/CloudServicesGroup/Bosch", "/CloudServiceProvidersGroup/Bosch Cloud Service Provider", "/CloudServiceProvidersGroup/CloudServiceProviderTest1", "/CloudServicesGroup/CloudServiceTest1", "/CloudServicesGroup/CloudServiceTest2", "/CloudServicesGroup/CloudServiceWithValidUUID", "/CloudServicesGroup/DefaultCloudService", "/CloudServicesGroup/Fabasoft", "/CloudServiceProvidersGroup/Fabasoft Cloud Service Provider", "/NonPolicyService", "/OldDefaultCS", "/CloudServicesGroup/TestCCDCloudService", "/is_admin" ] + }, { + "id" : "08fbe789-4ada-4b3a-bcf1-dc20b469911b", + "createdTimestamp" : 1646739467160, + "username" : "amoe_test", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "firstName" : "First name of amoe_test", + "lastName" : "Last name of amoe_test", + "credentials" : [ { + "id" : "da7be389-1b6a-42fa-8eb6-95fc83dc1cfa", + "type" : "password", + "createdDate" : 1659086998243, + "secretData" : "{\"value\":\"t0KyuUWeAlO6kD1pr6T65d9XGn1dGPDLYHPlVWO2PLp8bdyfEw83swDl2DZxjLueSA2Ko9Oj9YjdkAzHGIFL0g==\",\"salt\":\"gMuE/1NUTwSHg5Wad0GfwA==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "ICO", "uma_authorization" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ "/AlwaysGreen", "/AlwaysGreenExceptOne", "/AlwaysRed", "/CloudServicesGroup/DefaultCloudService", "/CloudServicesGroup/Fabasoft" ] + }, { + "id" : "3c4f61ad-d73f-4f7e-9765-1423cdabab50", + "createdTimestamp" : 1652112647746, + "username" : "auditor", + "enabled" : true, + "totp" : false, + "emailVerified" : true, + "firstName" : "John", + "lastName" : "Doe", + "credentials" : [ { + "id" : "2f4b54a6-1156-4b45-a15a-9f82dc71f56b", + "type" : "password", + "createdDate" : 1652112667799, + "secretData" : "{\"value\":\"2d0Gsuw7tv/hqVqpyPgYvgZBhTFFjG4PzOvOPXyUjrQe51ObcPGrUQZnlcHv/eNAKGuIVpETuoDizmNtY0Q56A==\",\"salt\":\"0lLn1LPVUYiOqJvA4eUmBg==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "Auditor", "uma_authorization" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ "/CloudServiceProvidersGroup/CloudServiceProviderTest1", "/CloudServicesGroup/DefaultCloudService" ] + }, { + "id" : "02e668be-9d34-4eb5-ae44-a139de6f8f22", + "createdTimestamp" : 1652187672848, + "username" : "auditor_test", + "enabled" : true, + "totp" : false, + "emailVerified" : true, + "firstName" : "Test", + "lastName" : "Auditor", + "email" : "test@auditor.com", + "credentials" : [ { + "id" : "19bb6976-fb3c-4faa-909b-0391c123945c", + "type" : "password", + "createdDate" : 1652187687565, + "secretData" : "{\"value\":\"8id0z74ft3S127JZmjrj17SMlQFA5oRS50/JpzOSt5ivYc8d2XFcJEi/LgNQUPMc+OrBKzwGkqUOJAINGCgQ9w==\",\"salt\":\"jqiKjTRDRPABNeU1HRvUxw==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "Auditor", "uma_authorization" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "745cb22f-555b-4d93-8a77-f566494f1c12", + "createdTimestamp" : 1653297176816, + "username" : "bosch_test", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "email" : "michela.fazzolari@iit.cnr.it", + "credentials" : [ { + "id" : "b831343a-7f00-431b-b75f-852335d84347", + "type" : "password", + "createdDate" : 1653297431168, + "secretData" : "{\"value\":\"RY74rikcZ2dTQxWiMdtizGiTRHjH3uLjqrZR6o9NhQ3c3TMyl4u/BCKVwO3CGa1Y5BSBlUUb3u7PwgxkhCgwdw==\",\"salt\":\"fjV8yJwb94Raye/qg600vw==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "ROLE_USER", "offline_access", "Auditor", "uma_authorization", "Compliance Manager" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ "/CloudServicesGroup/Bosch", "/CloudServiceProvidersGroup/Bosch Cloud Service Provider" ] + }, { + "id" : "778ce3aa-e840-4fec-9b7a-52dde6a2f878", + "createdTimestamp" : 1671615249436, + "username" : "ccd_admin", + "enabled" : true, + "totp" : false, + "emailVerified" : true, + "firstName" : "CCD", + "lastName" : "Testuser", + "email" : "bernhard.cermak@fabasoft.com", + "credentials" : [ { + "id" : "b1f67032-d7da-4595-96fc-4d6f8073ba4d", + "type" : "password", + "userLabel" : "", + "createdDate" : 1671615440296, + "secretData" : "{\"value\":\"K+vbtk9rqKFZaD/Rs1p8t8uG+sz9xyyLs2KU89cXyWB7hFvdjsDD3VHz0/jzAWwAeN9Q6MOzCG3PtMCJJIlcsA==\",\"salt\":\"yUSxM8Vetd331zl/tfR+IQ==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "ROLE_USER", "offline_access", "Auditor", "uma_authorization", "CISO", "ROLE_ADMIN", "Compliance Manager" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ "/AlwaysGreen", "/AlwaysGreenExceptOne", "/AlwaysRed", "/CloudServicesGroup/DefaultCloudService", "/CloudServicesGroup/Fabasoft", "/CloudServiceProvidersGroup/Fabasoft Cloud Service Provider" ] + }, { + "id" : "beac8e83-64e4-4b47-8140-8a85fa36fd12", + "createdTimestamp" : 1668692868046, + "username" : "ciso", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "firstName" : "amoe read only", + "credentials" : [ { + "id" : "9b7d688c-f9e0-4210-9727-fe4313882715", + "type" : "password", + "createdDate" : 1668692879318, + "secretData" : "{\"value\":\"HmPYkMZRirfATQ1fCAI85xw/qm+/9Vkkjp6xSId7w8yCLQgBEPwruhRxbJ0GDou0xzoHGesKf9JMRLXbLsCVKg==\",\"salt\":\"FnMudEOWxeN+No1LB2wpXQ==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "ROLE_USER", "offline_access", "uma_authorization", "CISO" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ "/CloudServiceProvidersGroup/CloudServiceProviderTest1", "/CloudServicesGroup/DefaultCloudService" ] + }, { + "id" : "67bb2090-c670-4ce9-ac41-c48d8390a82d", + "createdTimestamp" : 1668528487642, + "username" : "cnledito-test", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "firstName" : "cnleditortest", + "lastName" : "test", + "email" : "cnleditortest@editor.com", + "credentials" : [ { + "id" : "5c044583-cf1e-4fad-92eb-9a1fa9f2c219", + "type" : "password", + "createdDate" : 1668528520774, + "secretData" : "{\"value\":\"u+/Bx8qHcKSTfJxsydwyihI4opGHi0eX7V2161D3xZy0XdtcLQj+wFLBZlRFRpvca7EJcr8d5XCkXQ1SVOvhSA==\",\"salt\":\"Ch9289q4Ljsl08F0qIGRPA==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization", "Compliance Manager" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "5b083c04-bbda-48be-8441-fbe16968902b", + "createdTimestamp" : 1650710929018, + "username" : "cnr-user", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "firstName" : "Stefano", + "lastName" : "Fagnano", + "email" : "stefano.fagnano@me.com", + "credentials" : [ { + "id" : "fe14429e-56cf-4810-8ca2-7fab0ea81a80", + "type" : "password", + "createdDate" : 1650710973177, + "secretData" : "{\"value\":\"t+/Zdw3TRlptIsNjJh22t1t2rJmNsanwsZkqfgI0++tKxhnq8pMZCHmX8RTLuotokLNPjzC+oWTxpOjdQwJ5vg==\",\"salt\":\"7NvfqfUVIqeY9uVBwG5+kw==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "ICO", "uma_authorization" ], + "clientRoles" : { + "raof" : [ "engine" ], + "raof-app" : [ "uma_protection" ], + "integrated-ui" : [ "user", "showSATRA", "showCCE", "showAMOE", "showUser", "showCNL", "showCatalogue", "showOrchestrator" ], + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 1660315722, + "groups" : [ ] + }, { + "id" : "efa7b51d-1c6a-4eb6-87ed-6e7afd3f5901", + "createdTimestamp" : 1651657436115, + "username" : "csp_test", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "credentials" : [ { + "id" : "02d21c6e-093f-4631-98fb-09a9315c8ee3", + "type" : "password", + "createdDate" : 1651657542422, + "secretData" : "{\"value\":\"PUExIha4Quy9RzbBQtRpXx5F5itYQrp3+fd5FcQuy3A4JjsRZ7DgZQ5abEvytgAKrI+vFUY9NvGeHR2vWijwoQ==\",\"salt\":\"EhGr0tjHnNSuKZp2hvNLHA==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization", "Compliance Manager" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "1247915b-d17c-4b5b-aad6-889c24225420", + "createdTimestamp" : 1646842473867, + "username" : "fabasoftpe", + "enabled" : true, + "totp" : false, + "emailVerified" : true, + "firstName" : "fabasoftpe", + "credentials" : [ { + "id" : "99ea9dc6-b4b3-4e0b-8aa9-2ecf58daa670", + "type" : "password", + "createdDate" : 1646842549296, + "secretData" : "{\"value\":\"rjCSXoy+G2SbrGgLqP8Qtx9eJYGheRLzVaZ2W7tZ7SO14I9K7W0GZFK7gg/wwZe7fNCT4c+kTWuuK42cR7JAiA==\",\"salt\":\"ViuDtUVx++5GGlqT+Kajvg==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "ROLE_USER", "offline_access", "Auditor", "uma_authorization", "Compliance Manager" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ "/CloudServicesGroup/Fabasoft", "/CloudServiceProvidersGroup/Fabasoft Cloud Service Provider" ] + }, { + "id" : "0f52f8dd-8347-4666-be72-2d44debec2d6", + "createdTimestamp" : 1675771346677, + "username" : "hpe-user1", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "credentials" : [ { + "id" : "cc5b9aa2-0fbb-44c6-a63d-4397bb117d7d", + "type" : "password", + "createdDate" : 1675771371499, + "secretData" : "{\"value\":\"BnLcEhRNKkj0UXexTGO0Jk7HvQp/uPP2P5M17MS9yHV/qGmrPnCX8bC7tU+bjnWfmS2lhtSXDTZIf8qZLtncWw==\",\"salt\":\"D9Ce0ExGm95QZ9jDZyO6hA==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "ROLE_USER", "offline_access", "uma_authorization", "Compliance Manager" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ "/CloudServicesGroup/hpe-csid1" ] + }, { + "id" : "3a3d32c9-6543-4ba7-b900-7dcabcf8457d", + "createdTimestamp" : 1675771545834, + "username" : "hpe-user2", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "credentials" : [ { + "id" : "9e9f5bf9-7378-4d2d-97cd-5904d72c83d2", + "type" : "password", + "createdDate" : 1675771558717, + "secretData" : "{\"value\":\"/dzDuLuAitMA1rzNf3+xUWI6/vrnkgS27tSyTLHQl8Ayn/8wSVwpEOU8dzeBPaNdYpyLs86v0Y0vVF0E0+KiEQ==\",\"salt\":\"VConj0TiO36bBTmmBTQUgg==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "ROLE_USER", "offline_access", "uma_authorization", "Compliance Manager" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ "/CloudServicesGroup/hpe-csid1", "/CloudServicesGroup/hpe-csid2" ] + }, { + "id" : "5cd36ec2-65fd-4373-aa16-9114d76d43da", + "createdTimestamp" : 1653465308946, + "username" : "jlunagar", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "firstName" : "Jesus", + "lastName" : "Luna", + "email" : "jesus.lunagarcia@de.bosch.com", + "credentials" : [ ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "federatedIdentities" : [ { + "identityProvider" : "oidc", + "userId" : "GKn0JglY4EuL/COIDpC4xtWS8XbWmlQcWNN1lxaxTMw=", + "userName" : "gkn0jgly4eul/coidpc4xtws8xbwmlqcwnn1lxaxtmw=" + } ], + "realmRoles" : [ "ROLE_USER", "offline_access", "uma_authorization", "Compliance Manager" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ "/CloudServicesGroup/Bosch", "/CloudServiceProvidersGroup/Bosch Cloud Service Provider" ] + }, { + "id" : "dbdb2c43-a90d-4bd8-a29a-c23d00e8a5fc", + "createdTimestamp" : 1646842573862, + "username" : "lawexpert", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "credentials" : [ { + "id" : "47c67cc2-9fec-471f-aee3-b93cb8fb50d4", + "type" : "password", + "createdDate" : 1646842584938, + "secretData" : "{\"value\":\"4u0v3JqYQ/m7qYSuG8gcxfdMveQyTLkOK1t9YTXsdH9b6XWmcmx+eemKvvZzlhGLrZ2JoyRv3Emr7E3gacWvbw==\",\"salt\":\"hKwIjTGtDpDCPw0r7xFMyA==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization", "Compliance Manager" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "c4eaac8d-860d-4f35-add0-00b52277deab", + "createdTimestamp" : 1668089005936, + "username" : "levilĂĽbbe", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "firstName" : "Levi", + "lastName" : "LĂĽbbe", + "email" : "fixed-term.levi.luebbe@de.bosch.com", + "credentials" : [ ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "federatedIdentities" : [ { + "identityProvider" : "oidc", + "userId" : "n/s6GK+IJlhIlRsPzqrQtbn5RmwurgRTzMuZh/9IFGg=", + "userName" : "n/s6gk+ijlhilrspzqrqtbn5rmwurgrtzmuzh/9ifgg=" + } ], + "realmRoles" : [ "offline_access", "uma_authorization", "Compliance Manager" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "1a127e64-49ea-47ae-bc94-e65d60cc044f", + "createdTimestamp" : 1656060420821, + "username" : "luca", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "email" : "lucapetrillo0@gmail.com", + "credentials" : [ { + "id" : "89606e04-593a-462c-b105-49291a314f46", + "type" : "password", + "createdDate" : 1657004701136, + "secretData" : "{\"value\":\"AGZxDoD8TnZQWbjQ8C10czzhedMZbhik22BZwizM1NOWf1G1Bgk9jhSo3FG8Y8dSznlkHhqkux6pto3pFeAinA==\",\"salt\":\"t1l9/JcGqu80EmyPCHVJrA==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ "UPDATE_PASSWORD" ], + "realmRoles" : [ "offline_access", "uma_authorization" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "5459884f-0e81-4541-b0f7-039143074658", + "createdTimestamp" : 1647939833771, + "username" : "nl2cnl_test", + "enabled" : true, + "totp" : false, + "emailVerified" : true, + "firstName" : "", + "email" : "m.fazzolari@iit.cnr.it", + "credentials" : [ { + "id" : "0950817c-a5b2-4b9b-b0cf-8b7ae79526c2", + "type" : "password", + "createdDate" : 1651654675240, + "secretData" : "{\"value\":\"H5hcwQTSDwABIRHvMOOywIvJFEEDhn5GXyGttQVDJpqnY7uQaRD7KxfbXIb5nE9m495A4kpG5L0/AFCwdgL+ZQ==\",\"salt\":\"1Z6UllkkiwS6jf7FKA312Q==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "ROLE_USER", "offline_access", "Auditor", "uma_authorization", "ROLE_ADMIN", "Compliance Manager" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ "/CloudServicesGroup/MichelaCS1", "/CloudServicesGroup/hpe-csid1" ] + }, { + "id" : "870ee3ee-7640-4ef3-8f37-c99306d7b02f", + "createdTimestamp" : 1668755928215, + "username" : "noroles", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "firstName" : "I have no", + "lastName" : "roles", + "credentials" : [ { + "id" : "d73fd5de-b5ec-4196-90eb-376cca300001", + "type" : "password", + "createdDate" : 1668755939191, + "secretData" : "{\"value\":\"j3HO2+EYY6HVOtKrdktKCRv+xf29S3ic14aU2e0+BG33E3AJGwbQ26u8QePXtaQvcnLjB9tgX3fzhiD8o2uXnw==\",\"salt\":\"pR9RdzE892uBElC3UbV0ng==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "78161698-ec9d-4fdc-ae05-d1b0b1dc0d97", + "createdTimestamp" : 1652873527037, + "username" : "patrick.weiss3@de.bosch.com", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "firstName" : "Patrick", + "lastName" : "Weiss", + "email" : "patrick.weiss3@de.bosch.com", + "credentials" : [ ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "federatedIdentities" : [ { + "identityProvider" : "oidc", + "userId" : "TQQySlVjXN8OaaXkrKUKJEMCx3dfuu4MuIuKiRgXgF8=", + "userName" : "tqqyslvjxn8oaaxkrkukjemcx3dfuu4muiukirgxgf8=" + } ], + "realmRoles" : [ "offline_access", "uma_authorization", "Compliance Manager" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "bb6d0c7f-e4ea-4f42-9375-f741b1ebac97", + "createdTimestamp" : 1646841881112, + "username" : "policyexpert", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "credentials" : [ { + "id" : "f9c4ca91-072f-418e-8bfb-0ef499620490", + "type" : "password", + "createdDate" : 1646841889121, + "secretData" : "{\"value\":\"6OlHWWs4Bad2qqMXi7PdiCAsNLjQTmbhgssnGuFAlTeMJeI/k48B8ahGyrJ2RYO4WcM29yBCEBZoZOWx7QUXEQ==\",\"salt\":\"FUl+Hwy2OqSWb+po3PvAGQ==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization", "Compliance Manager" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ "/CloudServiceProvidersGroup/CloudServiceProviderTest1", "/CloudServicesGroup/CloudServiceTest1", "/CloudServicesGroup/CloudServiceTest2" ] + }, { + "id" : "7fcfeba8-2512-4c10-b1e8-fac6d623a83e", + "createdTimestamp" : 1647940816157, + "username" : "service-account-admin-cli", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "serviceAccountClientId" : "admin-cli", + "credentials" : [ ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "465eb553-71ea-47bb-8557-3753e1679b0b", + "createdTimestamp" : 1648629087836, + "username" : "service-account-api-swagger", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "serviceAccountClientId" : "api-swagger", + "credentials" : [ ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization" ], + "clientRoles" : { + "api-swagger" : [ "uma_protection" ], + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "4ccb51e5-5911-4052-914b-41120086c8ef", + "createdTimestamp" : 1648043982626, + "username" : "service-account-catalogue-backend", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "serviceAccountClientId" : "catalogue-backend", + "credentials" : [ ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "72b2d795-8d27-4aa7-a935-4c1ce274f27d", + "createdTimestamp" : 1650355454172, + "username" : "service-account-cce", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "serviceAccountClientId" : "cce", + "credentials" : [ ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization" ], + "clientRoles" : { + "cce" : [ "uma_protection" ], + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "4aafc668-9855-44b2-a079-a271a3c4a515", + "createdTimestamp" : 1646860326928, + "username" : "service-account-clouditor-assessment", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "serviceAccountClientId" : "clouditor-assessment", + "credentials" : [ ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "89145876-b402-435f-bcfc-1a5da1f948ac", + "createdTimestamp" : 1646860316152, + "username" : "service-account-clouditor-discovery", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "serviceAccountClientId" : "clouditor-discovery", + "credentials" : [ ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "7a3be6fa-aa06-4d47-92fe-0c7dbdcf081e", + "createdTimestamp" : 1652269527099, + "username" : "service-account-clouditor-orchestrator", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "serviceAccountClientId" : "clouditor-orchestrator", + "credentials" : [ ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "a5916f7c-3494-4b8b-a899-d6424762a7e8", + "createdTimestamp" : 1646917353062, + "username" : "service-account-codyze", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "serviceAccountClientId" : "codyze", + "credentials" : [ ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "b5130ada-9590-42ef-a690-ba7ff12f35bd", + "createdTimestamp" : 1657201467930, + "username" : "service-account-dsl-mapper-client", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "serviceAccountClientId" : "dsl-mapper-client", + "credentials" : [ ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ], + "dsl-mapper-client" : [ "uma_protection" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "6e8ff208-0ede-436c-b1ee-b853d33c3d81", + "createdTimestamp" : 1646998107929, + "username" : "service-account-life-cycle-manager", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "serviceAccountClientId" : "life-cycle-manager", + "credentials" : [ ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "7cdaece4-9f13-4a89-9e46-f56a3cee862e", + "createdTimestamp" : 1647940729928, + "username" : "service-account-nl2cnl-translator-client", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "serviceAccountClientId" : "nl2cnl-translator-client", + "credentials" : [ ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization" ], + "clientRoles" : { + "nl2cnl-translator-client" : [ "uma_protection" ], + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "20913f11-a80b-4b95-9e9c-3b7318275a9f", + "createdTimestamp" : 1650445410351, + "username" : "service-account-raof", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "serviceAccountClientId" : "raof", + "credentials" : [ ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization" ], + "clientRoles" : { + "raof" : [ "uma_protection" ], + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "42584464-92a0-40b9-a9ff-0a43a6358956", + "createdTimestamp" : 1651501788820, + "username" : "service-account-raof-app", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "serviceAccountClientId" : "raof-app", + "credentials" : [ ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization" ], + "clientRoles" : { + "raof-app" : [ "uma_protection" ], + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "d12a0ea0-d7d4-4194-b8f7-6e1190bbfcff", + "createdTimestamp" : 1650377634668, + "username" : "service-account-wazuh-vat-evidence-collector-dev", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "serviceAccountClientId" : "wazuh-vat-evidence-collector-dev", + "credentials" : [ ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization" ], + "clientRoles" : { + "wazuh-vat-evidence-collector-dev" : [ "uma_protection" ], + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "9c57f6db-6643-48b4-8fc8-cb48c627e6df", + "createdTimestamp" : 1674719353111, + "username" : "ssi-user", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "firstName" : "Aitor", + "lastName" : "GG", + "email" : "aitor.gomez@tecnalia.com", + "credentials" : [ { + "id" : "40582145-880c-4421-991f-8deaa243ffc4", + "type" : "password", + "createdDate" : 1674719424557, + "secretData" : "{\"value\":\"cDkRTyBio4JGyNnbmeJxuoXU3XA07VJ/A1jsrfZX93HXWqM2rfQdWDFl5wlqvyvaHLH+m5UICNPzPMhUg2qhfQ==\",\"salt\":\"ZM/7ntKfebO0NJ3/aOeZDg==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "ROLE_USER", "offline_access", "Auditor", "uma_authorization", "Compliance Manager" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "77bce8b9-706d-4249-a4cc-cacfa5a5b91b", + "createdTimestamp" : 1671626314628, + "username" : "t2", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "credentials" : [ { + "id" : "cbb382dd-a160-4202-a8c0-861afb87cf02", + "type" : "password", + "createdDate" : 1671626348428, + "secretData" : "{\"value\":\"dHUuLiejLrygJr6HaIwDqrwxu/ssA9/VIj9m51hSxnauSOp9hpmIGRmCYCZic0zvta/3mw1N2XUVfCW5KWR/Sw==\",\"salt\":\"bYGVI+Zooj2/GvXZ2MEStQ==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "ROLE_USER", "offline_access", "uma_authorization", "ROLE_ADMIN", "Compliance Manager" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "2ea72f64-2701-4b3b-ba1d-532149d37202", + "createdTimestamp" : 1652186093284, + "username" : "test_compliance_manager", + "enabled" : true, + "totp" : true, + "emailVerified" : true, + "firstName" : "Test", + "lastName" : "Manager", + "email" : "test@manager.com", + "credentials" : [ { + "id" : "70348399-c811-4b3e-96a3-991579b32bb7", + "type" : "password", + "createdDate" : 1652186110401, + "secretData" : "{\"value\":\"7bYUhg72bGCJCY+PRnuL0yO496Miksy+Psc+YGGWPtD0OJdzIvhGW0B6wnj6YInAQEfh8TN/h/FqLDkQMIYWcg==\",\"salt\":\"TGfGXtzLm0dPGXjuT2dCnw==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + }, { + "id" : "1d57e74b-6017-4d55-bb0d-25d434748402", + "type" : "otp", + "userLabel" : "Mobile Phone", + "createdDate" : 1652186263250, + "secretData" : "{\"value\":\"Dgk5BqB0qJ1k9Afll5mj\"}", + "credentialData" : "{\"subType\":\"totp\",\"digits\":6,\"counter\":0,\"period\":30,\"algorithm\":\"HmacSHA1\"}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization", "Compliance Manager" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "e19545f8-3579-483f-9004-790d578dddfa", + "createdTimestamp" : 1674145886816, + "username" : "uc1_auditor", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "credentials" : [ { + "id" : "70d94477-ceec-4932-9935-4ee984d14389", + "type" : "password", + "createdDate" : 1674145904588, + "secretData" : "{\"value\":\"ksIULvCzo+bvULy0jirrF8rtvbbWAfyzSy/eMfuqF5mnziIGqxWyIC+KwAQTqhys8l7rTaGZLNzdyn17r1/K0Q==\",\"salt\":\"RvlSLO78qi1K8lGMxOhNHg==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "Auditor", "uma_authorization" ], + "clientRoles" : { + "raof" : [ "engine" ], + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ "/CloudServicesGroup/Bosch_IaaS", "/CloudServicesGroup/Bosch_PaaS" ] + }, { + "id" : "6d6d63b1-e1fd-461e-9427-d2891934f2c8", + "createdTimestamp" : 1674145751069, + "username" : "uc1_ciso", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "credentials" : [ { + "id" : "fb3515d2-cb63-4755-9891-a59bfe03de91", + "type" : "password", + "createdDate" : 1674145765210, + "secretData" : "{\"value\":\"YpfIVnyCtPFS0eIw6hOvrR6IN5KtejRLRaS+uOvp1MTUTXqzBSi7eeJyBFs2f/LEuwW2M2+1MocaJDmT+AOZCg==\",\"salt\":\"cTW2gbBBk6chX9YZcQZNEg==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization", "CISO" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ "/AlwaysGreen", "/AlwaysGreenExceptOne", "/AlwaysRed", "/CloudServicesGroup/Bosch", "/CloudServiceProvidersGroup/Bosch Cloud Service Provider", "/CloudServicesGroup/Bosch_IaaS", "/CloudServicesGroup/Bosch_PaaS", "/CloudServicesGroup/Bosch_SaaS", "/CloudServiceProvidersGroup/CloudServiceProviderTest1", "/CloudServicesGroup/CloudServiceTest1", "/CloudServicesGroup/CloudServiceTest2", "/CloudServicesGroup/CloudServiceWithValidUUID", "/CloudServicesGroup/DefaultCloudService", "/CloudServicesGroup/Fabasoft", "/CloudServiceProvidersGroup/Fabasoft Cloud Service Provider", "/CloudServicesGroup/MichelaCS1", "/CloudServicesGroup/TestCCDCloudService", "/CloudServicesGroup/hpe-csid1", "/CloudServicesGroup/hpe-csid2" ] + }, { + "id" : "a297bee2-1e9e-4c2b-aee8-9895816ab47c", + "createdTimestamp" : 1674145341569, + "username" : "uc1_domgov", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "credentials" : [ { + "id" : "5b4aad96-5016-42df-afec-f9893e280c4d", + "type" : "password", + "createdDate" : 1674145359184, + "secretData" : "{\"value\":\"N6w0KcmWLsMENdat9eaMRoM34QZAxPjEiT55YVvnmEF6v2j6RNqHVv17hXWyXsEkNalyRi7jaERxOF3IQGF0kA==\",\"salt\":\"8jkW8WDLldHOJ1h5F7oGKg==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "SecurityGovernance", "uma_authorization" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ "/CloudServicesGroup/Bosch_IaaS", "/CloudServicesGroup/Bosch_PaaS" ] + }, { + "id" : "d7b43b52-b048-4fea-a90b-ce6388b18831", + "createdTimestamp" : 1674145455906, + "username" : "uc1_prodown", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "credentials" : [ { + "id" : "0544042d-3b6d-4995-a680-30c8f398e688", + "type" : "password", + "createdDate" : 1674145475221, + "secretData" : "{\"value\":\"RwVqLSQax/flyOgNk1cHoYoAmA0+uhE4K7jrn+hgTZ2k/CPuuhWcXTh8C/QjO0TmiSKj9tew1SiWDjY+vdr8AQ==\",\"salt\":\"MRKS4kOhNIhivhjPFgVxVA==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization", "ProductOwner" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ "/CloudServicesGroup/Bosch_IaaS" ] + }, { + "id" : "027b55fb-dec7-4ae2-a9e6-eaf6a3cd0f50", + "createdTimestamp" : 1674145592731, + "username" : "uc1_prodsec", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "credentials" : [ { + "id" : "e8bb2853-4cdc-4392-bde3-03549222999f", + "type" : "password", + "createdDate" : 1674145608293, + "secretData" : "{\"value\":\"tQcf31ARRsR2FMO9NsadvUG+TVtVrL3krEebP0C2aX3HfyT3yKc9WWK9vB7jg5eyEsj8cJ2bVyo0jXkw5xnfrg==\",\"salt\":\"qYccy+Nsyj9+uJ56Jf9NmQ==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "ProductSecurityEng", "uma_authorization" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ "/CloudServicesGroup/Bosch_IaaS" ] + }, { + "id" : "8cd26e6b-af60-4192-9962-489ac1a586c2", + "createdTimestamp" : 1674144766118, + "username" : "uc1_secanalyst", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "credentials" : [ { + "id" : "201521cd-677e-4a0b-91f4-be2a240747c4", + "type" : "password", + "createdDate" : 1674144783147, + "secretData" : "{\"value\":\"5Akf4Tyfbenem77IjCv2enXE90qzVCTcRVZq+2FguHTbaY3TTlwDjKmzHMXaia8h2rmOc3x9F0Eo+E9DMWFczQ==\",\"salt\":\"rWV6q1kzfej5oTOOEVlHyQ==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "SecurityAnalyst", "uma_authorization" ], + "clientRoles" : { + "integrated-ui" : [ "user", "showSATRA", "showCCE", "showAMOE", "showUser", "showCNL", "showCatalogue", "showOrchestrator", "admin" ], + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ "/CloudServicesGroup/Bosch_IaaS", "/CloudServicesGroup/Bosch_PaaS", "/CloudServicesGroup/Bosch_SaaS" ] + }, { + "id" : "20a895c6-4cb9-4707-a06c-804d5328b67c", + "createdTimestamp" : 1674144525022, + "username" : "uc1_secgov", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "credentials" : [ { + "id" : "6f2db9a7-2879-43cc-9581-6bd8682052c0", + "type" : "password", + "createdDate" : 1674144659301, + "secretData" : "{\"value\":\"b1RipaQ+5wTvV3auTm1y7E8JqqY7XyWjOk3PFcQcKtVvHX0I9mEsem05nd2qImgX2M4d25Udshsv2WkY9v3yfw==\",\"salt\":\"if6yR8YUa7oV2UYXB8gBDg==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "SecurityGovernance", "uma_authorization" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ "/CloudServicesGroup/Bosch_IaaS", "/CloudServicesGroup/Bosch_PaaS", "/CloudServicesGroup/Bosch_SaaS" ] + }, { + "id" : "a2d9c454-960f-47e9-860e-e1876cdd81e7", + "createdTimestamp" : 1648054983093, + "username" : "user", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "firstName" : "U.", + "lastName" : "Ser", + "email" : "user@localhost", + "credentials" : [ { + "id" : "b6a60d24-da76-47f4-a07b-885bac646b7a", + "type" : "password", + "createdDate" : 1650406346090, + "secretData" : "{\"value\":\"NTNpm0k7ky3gLf9pcYTklGY8qn0LPwCrhUYu94nhHVUl1vp5IHb5eSjgFJjpFaKKObNDcz7qJFWjyJ/mWCtwGA==\",\"salt\":\"fQAJhWFTktzewkFQ5ypbRQ==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "ROLE_USER", "offline_access", "Auditor", "uma_authorization" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "228eed5c-845a-42b6-a60d-27bfe62167c3", + "createdTimestamp" : 1659009856941, + "username" : "usertest", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "credentials" : [ { + "id" : "5909c50c-2225-4403-8995-3132b851b1c0", + "type" : "password", + "createdDate" : 1659009866614, + "secretData" : "{\"value\":\"PNVxA2+Kv2nyJfQjLcDvYagzfE/loAyrsJ1QEUkhL/bVWDku+VJu/QkCKXU1Dr4rTnTGBaOxl2ASFoRm6oP3Cg==\",\"salt\":\"T0N9Ed98G4wz5iBwyo2tRQ==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization", "Compliance Manager" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ "/CloudServiceProvidersGroup/CloudServiceProviderTest1", "/CloudServicesGroup/CloudServiceTest1" ] + }, { + "id" : "a3f3653e-d47e-4d21-bae4-40265bf90318", + "createdTimestamp" : 1667576437610, + "username" : "xlab", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "credentials" : [ { + "id" : "9238dc63-0ef0-47a9-8c53-2bce6f4f35b2", + "type" : "password", + "createdDate" : 1667576457684, + "secretData" : "{\"value\":\"jw9KOFdG6tGZBMY7NdX2FNtvCBXfq4igmlEOCZ67jPRaWpPASPlnYD5EVqNfcmVBvGmnjV73PMUgo4L/Zg/9pw==\",\"salt\":\"DRbV1mX842qUu+Zifrm4Gg==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "Customer", "ROLE_USER", "offline_access", "Auditor", "Company", "ICO", "uma_authorization", "CISO", "test-role-1", "Compliance Manager" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + } ], + "scopeMappings" : [ { + "clientScope" : "offline_access", + "roles" : [ "offline_access" ] + } ], + "clientScopeMappings" : { + "account" : [ { + "client" : "account-console", + "roles" : [ "manage-account" ] + } ] + }, + "clients" : [ { + "id" : "8bd89baf-08f6-4e4b-8394-6b4dd6050ed2", + "clientId" : "account", + "name" : "${client_account}", + "rootUrl" : "${authBaseUrl}", + "baseUrl" : "/realms/medina/account/", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "533f8bfc-73ca-4950-a17e-29510052e70a", + "defaultRoles" : [ "manage-account", "view-profile" ], + "redirectUris" : [ "/realms/medina/account/*" ], + "webOrigins" : [ ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : false, + "serviceAccountsEnabled" : false, + "publicClient" : false, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : false, + "nodeReRegistrationTimeout" : 0, + "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "8f7fee7a-d32e-4c08-85fd-0a92ace43970", + "clientId" : "account-console", + "name" : "${client_account-console}", + "rootUrl" : "${authBaseUrl}", + "baseUrl" : "/realms/medina/account/", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "0ffbdc8a-e2b4-4693-abc0-cf08d0a3127e", + "redirectUris" : [ "/realms/medina/account/*" ], + "webOrigins" : [ ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : false, + "serviceAccountsEnabled" : false, + "publicClient" : true, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "pkce.code.challenge.method" : "S256" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : false, + "nodeReRegistrationTimeout" : 0, + "protocolMappers" : [ { + "id" : "edc42cad-bd34-4811-8354-0adaee774340", + "name" : "audience resolve", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-audience-resolve-mapper", + "consentRequired" : false, + "config" : { } + } ], + "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "24244b46-4845-4734-a061-bcb8ec91b84c", + "clientId" : "admin-cli", + "name" : "${client_admin-cli}", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "c29d2164-1f3d-476b-951c-c5eea7518fd6", + "redirectUris" : [ ], + "webOrigins" : [ ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : false, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : true, + "serviceAccountsEnabled" : true, + "publicClient" : false, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "false", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : 0, + "protocolMappers" : [ { + "id" : "8b8f8749-0adc-492d-a73d-3029413881be", + "name" : "Client ID", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientId", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientId", + "jsonType.label" : "String" + } + }, { + "id" : "6117fb7e-ecbe-4f0f-90da-d5a5c805e5d7", + "name" : "Client IP Address", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientAddress", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientAddress", + "jsonType.label" : "String" + } + }, { + "id" : "786a08b5-a459-43d0-b0d4-1d45a084a14a", + "name" : "Client Host", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientHost", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientHost", + "jsonType.label" : "String" + } + } ], + "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "a25b15fc-202b-4dc6-9340-fcc94f491a24", + "clientId" : "amoe-client", + "rootUrl" : "https://amoe-dev.k8s.medina.esilab.org/", + "adminUrl" : "https://amoe-dev.k8s.medina.esilab.org/", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "781dfe86-109c-47f5-8776-72a1aad0a370", + "redirectUris" : [ "*" ], + "webOrigins" : [ "*" ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : true, + "serviceAccountsEnabled" : false, + "publicClient" : false, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "backchannel.logout.url" : "https://amoe-dev.k8s.medina.esilab.org/openid/logout_request", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "protocolMappers" : [ { + "id" : "7adfc5e5-5248-4737-8b84-78567a897980", + "name" : "Client Host", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientHost", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientHost", + "jsonType.label" : "String" + } + }, { + "id" : "f96e6e25-77e4-4ffe-a4ca-5081f6dd3488", + "name" : "Client ID", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientId", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientId", + "jsonType.label" : "String" + } + }, { + "id" : "0078d78f-a368-41c5-9c41-16ba08b0dd64", + "name" : "Client IP Address", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientAddress", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientAddress", + "jsonType.label" : "String" + } + } ], + "defaultClientScopes" : [ "web-origins", "role_list", "cloudservice", "offline_access", "profile", "roles", "cladmin-backend-services", "email" ], + "optionalClientScopes" : [ "address", "phone", "microprofile-jwt" ] + }, { + "id" : "a08fc1fe-7c85-4c1c-9d04-604c6e35faa8", + "clientId" : "api-swagger", + "rootUrl" : "https://api-swagger-dev.k8s.medina.esilab.org", + "adminUrl" : "https://api-swagger-dev.k8s.medina.esilab.org", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "c29a5cf2-52c0-4fa2-89fc-8951fa80ce84", + "redirectUris" : [ "https://api-swagger-dev.k8s.medina.esilab.org/*" ], + "webOrigins" : [ "https://api-swagger-dev.k8s.medina.esilab.org" ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : true, + "serviceAccountsEnabled" : true, + "authorizationServicesEnabled" : true, + "publicClient" : false, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "protocolMappers" : [ { + "id" : "a1b33188-ca81-44c0-ba56-772581a94038", + "name" : "Client IP Address", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientAddress", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientAddress", + "jsonType.label" : "String" + } + }, { + "id" : "7455b7e4-2b73-4a6d-b7e6-8434370a7a85", + "name" : "Client Host", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientHost", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientHost", + "jsonType.label" : "String" + } + }, { + "id" : "d9167dc9-6937-4bea-bc20-6e885857ccd0", + "name" : "Client ID", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientId", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientId", + "jsonType.label" : "String" + } + } ], + "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ], + "authorizationSettings" : { + "allowRemoteResourceManagement" : true, + "policyEnforcementMode" : "ENFORCING", + "resources" : [ { + "name" : "Default Resource", + "type" : "urn:api-swagger:resources:default", + "ownerManagedAccess" : false, + "attributes" : { }, + "_id" : "b8d55282-f977-4e89-9e8e-2b3e8ef07200", + "uris" : [ "/*" ] + } ], + "policies" : [ { + "id" : "9dc0a736-90a6-4428-be5a-0695b9153f93", + "name" : "Default Policy", + "description" : "A policy that grants access only for users within this realm", + "type" : "js", + "logic" : "POSITIVE", + "decisionStrategy" : "AFFIRMATIVE", + "config" : { + "code" : "// by default, grants any permission associated with this policy\n$evaluation.grant();\n" + } + }, { + "id" : "4058b893-6396-4351-ae9c-e4ecf5329d18", + "name" : "Default Permission", + "description" : "A permission that applies to the default resource type", + "type" : "resource", + "logic" : "POSITIVE", + "decisionStrategy" : "UNANIMOUS", + "config" : { + "defaultResourceType" : "urn:api-swagger:resources:default", + "applyPolicies" : "[\"Default Policy\"]" + } + } ], + "scopes" : [ ], + "decisionStrategy" : "UNANIMOUS" + } + }, { + "id" : "8d1a867d-537c-433e-8234-b3582127cc54", + "clientId" : "broker", + "name" : "${client_broker}", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "4293f846-3a76-4628-a9a4-810bebcdc51b", + "redirectUris" : [ ], + "webOrigins" : [ ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : false, + "serviceAccountsEnabled" : false, + "publicClient" : false, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : false, + "nodeReRegistrationTimeout" : 0, + "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "df274002-83dd-4c7f-b64b-8cf7b90d9a97", + "clientId" : "catalogue-backend", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "47b59168-f965-4a6f-941c-ae7ee1ba463c", + "redirectUris" : [ ], + "webOrigins" : [ ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : false, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : false, + "serviceAccountsEnabled" : true, + "publicClient" : false, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "protocolMappers" : [ { + "id" : "6ea5df11-551c-44e4-a4e7-74e787bea43e", + "name" : "Client Host", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientHost", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientHost", + "jsonType.label" : "String" + } + }, { + "id" : "0544b98a-f678-4395-b3cf-bdb0529a5661", + "name" : "Client IP Address", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientAddress", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientAddress", + "jsonType.label" : "String" + } + }, { + "id" : "adace2ba-512e-4856-a187-75031220377d", + "name" : "Client ID", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientId", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientId", + "jsonType.label" : "String" + } + } ], + "defaultClientScopes" : [ "web-origins", "role_list", "cloudservice", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "fa074dc3-e8de-4f34-9437-dc5d93f60f9a", + "clientId" : "catalogue-gateway", + "rootUrl" : "https://catalogue-dev.k8s.medina.esilab.org", + "adminUrl" : "https://catalogue-dev.k8s.medina.esilab.org", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "1895c8be-10f2-4243-a7da-8443aa1a2851", + "redirectUris" : [ "*" ], + "webOrigins" : [ "*" ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : true, + "directAccessGrantsEnabled" : false, + "serviceAccountsEnabled" : false, + "publicClient" : true, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "defaultClientScopes" : [ "web-origins", "jhipster", "role_list", "cloudservice", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "b7769853-8605-4a36-9352-7633d3be0f22", + "clientId" : "catalogue-jhipster-control-center", + "rootUrl" : "http://localhost:7419", + "adminUrl" : "http://localhost:7419", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "a77e5efc-e542-4ed2-b8a2-535fe4c4fb34", + "redirectUris" : [ "dev.localhost.ionic:*", "http://127.0.0.1:*", "http://localhost:*", "https://127.0.0.1:*", "https://localhost:*" ], + "webOrigins" : [ "*" ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : true, + "directAccessGrantsEnabled" : false, + "serviceAccountsEnabled" : false, + "publicClient" : true, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "645cf799-be24-42fd-a169-f9d5fc39be31", + "clientId" : "catalogue-registry", + "rootUrl" : "https://catalogue-registry-dev.k8s.medina.esilab.org", + "adminUrl" : "https://catalogue-registry-dev.k8s.medina.esilab.org", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "ff31a06d-d850-48d2-8355-6723e856c1b6", + "redirectUris" : [ "*" ], + "webOrigins" : [ "*" ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : true, + "serviceAccountsEnabled" : false, + "publicClient" : true, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "defaultClientScopes" : [ "web-origins", "jhipster", "role_list", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "12d63192-94cd-4692-b557-ab76a331eaa6", + "clientId" : "ccd-client", + "name" : "Company compliance dashboard", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "cc728558-1c40-48ae-8be4-e48b582a727a", + "redirectUris" : [ "http://localhost:8080/" ], + "webOrigins" : [ ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : true, + "serviceAccountsEnabled" : false, + "publicClient" : false, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "defaultClientScopes" : [ "web-origins", "role_list", "cloudservice", "profile", "roles", "cladmin-backend-services", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "dc64b28b-a696-4b0c-8e24-2aeae138c3e5", + "clientId" : "cce", + "rootUrl" : "http://cce-api-dev.k8s.medina.esilab.org", + "adminUrl" : "http://cce-api-dev.k8s.medina.esilab.org", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "efe3acb8-b4c1-43f0-a3a2-b75402e76afc", + "redirectUris" : [ "https://cce-api-dev.k8s.medina.esilab.org/*" ], + "webOrigins" : [ "http://cce-api-dev.k8s.medina.esilab.org" ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : true, + "serviceAccountsEnabled" : true, + "authorizationServicesEnabled" : true, + "publicClient" : false, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "access.token.lifespan" : "3600", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "protocolMappers" : [ { + "id" : "12f94f61-bb5e-41dc-ae0b-20206ff6173c", + "name" : "Client IP Address", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientAddress", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientAddress", + "jsonType.label" : "String" + } + }, { + "id" : "3920d8ac-45ea-4bf5-a203-1c831cb845ab", + "name" : "Client Host", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientHost", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientHost", + "jsonType.label" : "String" + } + }, { + "id" : "75f9dc3a-6aaa-4206-9c52-729d326117ef", + "name" : "cladmin", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-hardcoded-claim-mapper", + "consentRequired" : false, + "config" : { + "claim.value" : "true", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "cladmin", + "jsonType.label" : "boolean", + "access.tokenResponse.claim" : "false" + } + }, { + "id" : "5f427941-d12d-432c-b883-ac39fe209705", + "name" : "Client ID", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientId", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientId", + "jsonType.label" : "String" + } + } ], + "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "cladmin-backend-services", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ], + "authorizationSettings" : { + "allowRemoteResourceManagement" : true, + "policyEnforcementMode" : "ENFORCING", + "resources" : [ { + "name" : "Default Resource", + "type" : "urn:cce-dev:resources:default", + "ownerManagedAccess" : false, + "attributes" : { }, + "_id" : "ef475897-65aa-4813-a810-340268090336", + "uris" : [ "/*" ] + } ], + "policies" : [ { + "id" : "ff85e02d-5048-473c-8bd0-fa22b6574852", + "name" : "Default Policy", + "description" : "A policy that grants access only for users within this realm", + "type" : "js", + "logic" : "POSITIVE", + "decisionStrategy" : "AFFIRMATIVE", + "config" : { + "code" : "// by default, grants any permission associated with this policy\n$evaluation.grant();\n" + } + }, { + "id" : "043cee90-99a8-4f2b-9ad2-3f37ce518483", + "name" : "Default Permission", + "description" : "A permission that applies to the default resource type", + "type" : "resource", + "logic" : "POSITIVE", + "decisionStrategy" : "UNANIMOUS", + "config" : { + "defaultResourceType" : "urn:cce-dev:resources:default", + "applyPolicies" : "[\"Default Policy\"]" + } + } ], + "scopes" : [ ], + "decisionStrategy" : "UNANIMOUS" + } + }, { + "id" : "3917091b-6bf1-4865-96e2-141077a43b92", + "clientId" : "cce-frontend", + "rootUrl" : "https://cce-dev.k8s.medina.esilab.org", + "adminUrl" : "https://cce-dev.k8s.medina.esilab.org", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "59e20d74-9053-4f7e-9cc8-cd63bd5c4909", + "redirectUris" : [ "https://cce-dev.k8s.medina.esilab.org/*" ], + "webOrigins" : [ "https://cce-dev.k8s.medina.esilab.org" ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : true, + "serviceAccountsEnabled" : false, + "publicClient" : true, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "backchannel.logout.session.required" : "true", + "backchannel.logout.revoke.offline.tokens" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "defaultClientScopes" : [ "web-origins", "role_list", "cloudservice", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "4a57f2cd-5b99-4b78-ba31-d994521abd30", + "clientId" : "clouditor-assessment", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "4a47f42a-df33-418f-b687-64e7c8ffbbda", + "redirectUris" : [ "https://security-assessment-dev.k8s.medina.esilab.org" ], + "webOrigins" : [ ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : false, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : false, + "serviceAccountsEnabled" : true, + "publicClient" : false, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "protocolMappers" : [ { + "id" : "caf7c5a7-f72e-44d8-aa9d-37c185e415ca", + "name" : "Client ID", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientId", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientId", + "jsonType.label" : "String" + } + }, { + "id" : "7dde8113-bf11-4cb4-be6b-d342ed64b1b6", + "name" : "Client Host", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientHost", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientHost", + "jsonType.label" : "String" + } + }, { + "id" : "1261d141-6010-4868-b659-2ce26e1680b4", + "name" : "Client IP Address", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientAddress", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientAddress", + "jsonType.label" : "String" + } + } ], + "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "cladmin-backend-services", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "69bba521-b088-45a6-9e56-bd29e557cea4", + "clientId" : "clouditor-cli", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "c3228efe-8dc3-4c09-bc89-8bdc362ae878", + "redirectUris" : [ "http://localhost:10000/callback" ], + "webOrigins" : [ ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : false, + "serviceAccountsEnabled" : false, + "publicClient" : true, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "protocolMappers" : [ { + "id" : "d6f6611d-8fa1-4116-82db-e23ee7574c0c", + "name" : "cladmin", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-attribute-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "cladmin", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "cladmin", + "jsonType.label" : "boolean" + } + } ], + "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "8fedfacb-2df9-4342-be33-7d3e18dc316f", + "clientId" : "clouditor-discovery", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "2f38b7bd-c3fa-4e7b-af59-5b8d67ddd8c1", + "redirectUris" : [ "https://orchestrator-dev.k8s.medina.esilab.org/" ], + "webOrigins" : [ ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : false, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : false, + "serviceAccountsEnabled" : true, + "publicClient" : false, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "protocolMappers" : [ { + "id" : "8dfab4e0-512c-4879-8878-c949ba32a641", + "name" : "Client Host", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientHost", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientHost", + "jsonType.label" : "String" + } + }, { + "id" : "9bba24ce-80f6-4a69-844d-7406c39d678b", + "name" : "Client ID", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientId", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientId", + "jsonType.label" : "String" + } + }, { + "id" : "112001f6-9584-4949-9d79-4d8e337bb9eb", + "name" : "Client IP Address", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientAddress", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientAddress", + "jsonType.label" : "String" + } + } ], + "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "cladmin-backend-services", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "fb2b3d0e-e2d7-4cb2-819d-bab9043f0d11", + "clientId" : "clouditor-orchestrator", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "eb100a60-92f7-4321-b9a6-55e8f82bc3a7", + "redirectUris" : [ ], + "webOrigins" : [ ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : false, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : false, + "serviceAccountsEnabled" : true, + "publicClient" : false, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "protocolMappers" : [ { + "id" : "1cefc460-e6b3-4077-a9f1-dab69ca3e2ba", + "name" : "Client ID", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientId", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientId", + "jsonType.label" : "String" + } + }, { + "id" : "34f93a44-5113-4638-bff8-4c89544a512e", + "name" : "Client Host", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientHost", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientHost", + "jsonType.label" : "String" + } + }, { + "id" : "cced5616-8012-473d-9cfb-95cf88efad11", + "name" : "Client IP Address", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientAddress", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientAddress", + "jsonType.label" : "String" + } + } ], + "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "fcf4c413-07b8-40e1-9ee0-2ffa646dfdf5", + "clientId" : "clouditor-ui", + "rootUrl" : "https://orchestrator-dev.k8s.medina.esilab.org", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "7a189e46-8e44-4968-9228-2115e84dbcdd", + "redirectUris" : [ "https://orchestrator-dev.k8s.medina.esilab.org/callback" ], + "webOrigins" : [ "https://orchestrator-dev.k8s.medina.esilab.org" ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : false, + "serviceAccountsEnabled" : false, + "publicClient" : true, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "protocolMappers" : [ { + "id" : "1489a48c-4d85-4566-a4f6-b453809bfaf3", + "name" : "cladmin", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-attribute-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "cladmin", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "cladmin", + "jsonType.label" : "boolean" + } + } ], + "defaultClientScopes" : [ "web-origins", "role_list", "cloudservice", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "15a81bd1-4edd-4e2a-87ec-3bbcac30d2a3", + "clientId" : "cnl-editor-frontend", + "rootUrl" : "https://cnl-editor-frontend-dev.k8s.medina.esilab.org", + "adminUrl" : "https://cnl-editor-frontend-dev.k8s.medina.esilab.org", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "e6b76254-187d-441b-9061-cb6b03dd51a4", + "redirectUris" : [ "http://cnl-editor-frontend-dev.k8s.medina.esilab.org/*", "https://cnl-editor-frontend-dev.k8s.medina.esilab.org/*" ], + "webOrigins" : [ "https://cnl-editor-frontend-dev.k8s.medina.esilab.org" ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : true, + "serviceAccountsEnabled" : false, + "publicClient" : true, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "defaultClientScopes" : [ "web-origins", "role_list", "cloudservice", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "01fce0c3-2db7-46dd-af1c-115dc1800053", + "clientId" : "codyze", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "7ff65ca2-a54a-4093-84f3-3b5756cc4e5c", + "redirectUris" : [ ], + "webOrigins" : [ ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : false, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : false, + "serviceAccountsEnabled" : true, + "publicClient" : false, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "protocolMappers" : [ { + "id" : "43fbe8e9-8141-4868-b85c-91220bd5f08f", + "name" : "Client IP Address", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientAddress", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientAddress", + "jsonType.label" : "String" + } + }, { + "id" : "ab5e553c-34e4-4411-b6c2-23235f3d7f84", + "name" : "Client ID", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientId", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientId", + "jsonType.label" : "String" + } + }, { + "id" : "8d070365-134e-4302-b0bd-e6ce82b1c2db", + "name" : "Client Host", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientHost", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientHost", + "jsonType.label" : "String" + } + } ], + "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "cladmin-backend-services", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "4cb90bba-1483-48f8-85c3-af800943c740", + "clientId" : "dsl-mapper-client", + "rootUrl" : "https://dsl-mapper-dev.k8s.medina.esilab.org/", + "adminUrl" : "https://dsl-mapper-dev.k8s.medina.esilab.org/", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "0fa48e19-90a5-4e6c-addd-446691dbf8eb", + "redirectUris" : [ "https://dsl-mapper-dev.k8s.medina.esilab.org/*" ], + "webOrigins" : [ "https://dsl-mapper-dev.k8s.medina.esilab.org" ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : true, + "serviceAccountsEnabled" : true, + "authorizationServicesEnabled" : true, + "publicClient" : false, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "protocolMappers" : [ { + "id" : "987c2d9a-ef46-4d60-881d-72d495260d07", + "name" : "Client Host", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientHost", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientHost", + "jsonType.label" : "String" + } + }, { + "id" : "7c8815a1-7820-46ed-93d8-45398092f0ff", + "name" : "Client IP Address", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientAddress", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientAddress", + "jsonType.label" : "String" + } + }, { + "id" : "c5b8af61-2816-47e9-aa22-743172954c8c", + "name" : "Client ID", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientId", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientId", + "jsonType.label" : "String" + } + }, { + "id" : "ac9a4d80-4c93-4875-95e4-e8bd7e7150c0", + "name" : "cladmin", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-hardcoded-claim-mapper", + "consentRequired" : false, + "config" : { + "claim.value" : "true", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "cladmin", + "jsonType.label" : "boolean", + "access.tokenResponse.claim" : "false" + } + } ], + "defaultClientScopes" : [ "web-origins", "role_list", "cloudservice", "profile", "roles", "cladmin-backend-services", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ], + "authorizationSettings" : { + "allowRemoteResourceManagement" : true, + "policyEnforcementMode" : "ENFORCING", + "resources" : [ { + "name" : "Default Resource", + "type" : "urn:dsl-mapper-client:resources:default", + "ownerManagedAccess" : false, + "attributes" : { }, + "_id" : "09ef8b92-846c-4f44-af8a-73138006111b", + "uris" : [ "/*" ] + } ], + "policies" : [ { + "id" : "586e6b4a-0614-4102-b48d-cd633f918809", + "name" : "Default Policy", + "description" : "A policy that grants access only for users within this realm", + "type" : "js", + "logic" : "POSITIVE", + "decisionStrategy" : "AFFIRMATIVE", + "config" : { + "code" : "// by default, grants any permission associated with this policy\n$evaluation.grant();\n" + } + }, { + "id" : "43e2f264-68dc-44a6-9db2-f2f31dcb67ad", + "name" : "Default Permission", + "description" : "A permission that applies to the default resource type", + "type" : "resource", + "logic" : "POSITIVE", + "decisionStrategy" : "UNANIMOUS", + "config" : { + "defaultResourceType" : "urn:dsl-mapper-client:resources:default", + "applyPolicies" : "[\"Default Policy\"]" + } + } ], + "scopes" : [ ], + "decisionStrategy" : "UNANIMOUS" + } + }, { + "id" : "1150f83f-37bc-4b14-98a0-e179aaee0f6c", + "clientId" : "integrated-ui", + "rootUrl" : "https://integrated-ui-dev.k8s.medina.esilab.org", + "adminUrl" : "https://integrated-ui-dev.k8s.medina.esilab.org", + "baseUrl" : "https://integrated-ui-dev.k8s.medina.esilab.org", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "9049e030-2e66-496e-accf-b7a5037bc0eb", + "redirectUris" : [ "", "https://integrated-ui-dev.k8s.medina.esilab.org/*" ], + "webOrigins" : [ "https://integrated-ui-dev.k8s.medina.esilab.org" ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : true, + "serviceAccountsEnabled" : false, + "publicClient" : true, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "defaultClientScopes" : [ "web-origins", "role_list", "cloudservice", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "095fac49-b0b4-4c44-b5b9-fa22bed6d160", + "clientId" : "life-cycle-manager", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "0191bfe6-1d93-4d89-b1e4-4b505d348057", + "redirectUris" : [ ], + "webOrigins" : [ ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : false, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : false, + "serviceAccountsEnabled" : true, + "publicClient" : false, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "protocolMappers" : [ { + "id" : "415b43bf-765a-4dba-a488-2dd969b7b253", + "name" : "cladmin", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-hardcoded-claim-mapper", + "consentRequired" : false, + "config" : { + "claim.value" : "true", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "cladmin", + "jsonType.label" : "boolean", + "access.tokenResponse.claim" : "false" + } + }, { + "id" : "cdb336c7-b22f-44c6-b30b-9136364b8229", + "name" : "Client IP Address", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientAddress", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientAddress", + "jsonType.label" : "String" + } + }, { + "id" : "3c6e3fe1-37bb-4ef0-a162-720b0d78b3af", + "name" : "Client ID", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientId", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientId", + "jsonType.label" : "String" + } + }, { + "id" : "e39ee5e2-dd4a-4d0e-9fc3-a0a84b200143", + "name" : "Client Host", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientHost", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientHost", + "jsonType.label" : "String" + } + } ], + "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "cladmin-backend-services", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "9f7c65f7-9ae9-4c9e-9bd7-971d0cbe146d", + "clientId" : "nl2cnl-translator-client", + "rootUrl" : "https://nl2cnl-translator-dev.k8s.medina.esilab.org/", + "adminUrl" : "https://nl2cnl-translator-dev.k8s.medina.esilab.org/", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "b1d1d98d-b5e5-46ac-9b45-30502cfb53ab", + "redirectUris" : [ "https://nl2cnl-translator-dev.k8s.medina.esilab.org/*" ], + "webOrigins" : [ "https://nl2cnl-translator-dev.k8s.medina.esilab.org" ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : true, + "serviceAccountsEnabled" : true, + "authorizationServicesEnabled" : true, + "publicClient" : false, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "protocolMappers" : [ { + "id" : "ad2d1f98-62a8-4859-8cce-1ce4034b9920", + "name" : "Client Host", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientHost", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientHost", + "jsonType.label" : "String" + } + }, { + "id" : "480e69e8-ebca-4e89-8d20-24bba626bbce", + "name" : "Client ID", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientId", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientId", + "jsonType.label" : "String" + } + }, { + "id" : "42724a07-f05f-4d65-82cb-b1c2288810d8", + "name" : "Client IP Address", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientAddress", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientAddress", + "jsonType.label" : "String" + } + } ], + "defaultClientScopes" : [ "web-origins", "role_list", "cloudservice", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ], + "authorizationSettings" : { + "allowRemoteResourceManagement" : true, + "policyEnforcementMode" : "ENFORCING", + "resources" : [ { + "name" : "Default Resource", + "type" : "urn:nl2cnl-translator-client:resources:default", + "ownerManagedAccess" : false, + "attributes" : { }, + "_id" : "cf0de028-f233-4f59-83cb-3d60d34450a3", + "uris" : [ "/*" ] + } ], + "policies" : [ { + "id" : "46935297-5bfb-4a43-b493-b28efe8c863b", + "name" : "Default Policy", + "description" : "A policy that grants access only for users within this realm", + "type" : "js", + "logic" : "POSITIVE", + "decisionStrategy" : "AFFIRMATIVE", + "config" : { + "code" : "// by default, grants any permission associated with this policy\n$evaluation.grant();\n" + } + }, { + "id" : "9cd3da2f-0302-4033-a9ed-36758ffa7730", + "name" : "Default Permission", + "description" : "A permission that applies to the default resource type", + "type" : "resource", + "logic" : "POSITIVE", + "decisionStrategy" : "UNANIMOUS", + "config" : { + "defaultResourceType" : "urn:nl2cnl-translator-client:resources:default", + "applyPolicies" : "[\"Default Policy\"]" + } + } ], + "scopes" : [ ], + "decisionStrategy" : "UNANIMOUS" + } + }, { + "id" : "785a9f77-d06f-4a65-9ba9-341921fda61a", + "clientId" : "raof", + "rootUrl" : "http://risk-assessment-engine-dev.k8s.medina.esilab.org", + "adminUrl" : "http://risk-assessment-engine-dev.k8s.medina.esilab.org", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "92d45bca-073b-49e3-8b23-2615f7fcbb3e", + "redirectUris" : [ "http://risk-assessment-engine-dev.k8s.medina.esilab.org/*" ], + "webOrigins" : [ "http://risk-assessment-engine-dev.k8s.medina.esilab.org" ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : true, + "serviceAccountsEnabled" : true, + "publicClient" : true, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "protocolMappers" : [ { + "id" : "1fddcb23-2a23-4ce6-acd4-cb48155d9034", + "name" : "Client Host", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientHost", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientHost", + "jsonType.label" : "String" + } + }, { + "id" : "1b88c2af-c338-4cf2-ab8d-69d1a60837a2", + "name" : "Client IP Address", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientAddress", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientAddress", + "jsonType.label" : "String" + } + }, { + "id" : "1c4f9074-9c2a-40bc-b55e-07a4eccfedab", + "name" : "Client ID", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientId", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientId", + "jsonType.label" : "String" + } + } ], + "defaultClientScopes" : [ "web-origins", "role_list", "cloudservice", "profile", "roles", "cladmin-backend-services", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "1c198016-f44c-4620-b2f6-821173bc2e54", + "clientId" : "raof-app", + "rootUrl" : "https://risk-assessment-app-dev.k8s.medina.esilab.org", + "adminUrl" : "https://risk-assessment-app-dev.k8s.medina.esilab.org", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "5f3391fb-e3da-4d24-bf49-a110ce86e5de", + "redirectUris" : [ "https://risk-assessment-app-dev.k8s.medina.esilab.org/*" ], + "webOrigins" : [ "https://risk-assessment-app-dev.k8s.medina.esilab.org" ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : true, + "serviceAccountsEnabled" : true, + "authorizationServicesEnabled" : true, + "publicClient" : false, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "protocolMappers" : [ { + "id" : "84cd6938-b5aa-4003-b0ee-0090073e2a88", + "name" : "Client IP Address", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientAddress", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientAddress", + "jsonType.label" : "String" + } + }, { + "id" : "9f22b311-05a4-4575-b7a5-ee07f2a38c08", + "name" : "Client ID", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientId", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientId", + "jsonType.label" : "String" + } + }, { + "id" : "f5e2cf3e-2f89-449b-bd1d-3cac7224b576", + "name" : "Client Host", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientHost", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientHost", + "jsonType.label" : "String" + } + } ], + "defaultClientScopes" : [ "web-origins", "role_list", "cloudservice", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ], + "authorizationSettings" : { + "allowRemoteResourceManagement" : true, + "policyEnforcementMode" : "ENFORCING", + "resources" : [ { + "name" : "Default Resource", + "type" : "urn:raof-app:resources:default", + "ownerManagedAccess" : false, + "attributes" : { }, + "_id" : "c9d1728e-3f6a-4003-8362-d6f5f960515c", + "uris" : [ "/*" ] + } ], + "policies" : [ { + "id" : "73bfec51-aca5-4ac8-b537-51a78d5de521", + "name" : "Default Policy", + "description" : "A policy that grants access only for users within this realm", + "type" : "js", + "logic" : "POSITIVE", + "decisionStrategy" : "AFFIRMATIVE", + "config" : { + "code" : "// by default, grants any permission associated with this policy\n$evaluation.grant();\n" + } + }, { + "id" : "67de5082-2eb9-4f99-b13e-a269a911952f", + "name" : "Default Permission", + "description" : "A permission that applies to the default resource type", + "type" : "resource", + "logic" : "POSITIVE", + "decisionStrategy" : "UNANIMOUS", + "config" : { + "defaultResourceType" : "urn:raof-app:resources:default", + "applyPolicies" : "[\"Default Policy\"]" + } + } ], + "scopes" : [ ], + "decisionStrategy" : "UNANIMOUS" + } + }, { + "id" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", + "clientId" : "realm-management", + "name" : "${client_realm-management}", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "eac6413c-b76b-4d1a-b4dc-b217fe77326b", + "redirectUris" : [ ], + "webOrigins" : [ ], + "notBefore" : 0, + "bearerOnly" : true, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : false, + "serviceAccountsEnabled" : false, + "publicClient" : false, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : false, + "nodeReRegistrationTimeout" : 0, + "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "7d57284a-3eba-4ceb-8088-b13aeef3df24", + "clientId" : "security-admin-console", + "name" : "${client_security-admin-console}", + "rootUrl" : "${authAdminUrl}", + "baseUrl" : "/admin/medina/console/", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "11fb3ec1-97dc-46e4-aee3-7d61493a0184", + "redirectUris" : [ "/admin/medina/console/*" ], + "webOrigins" : [ "+" ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : false, + "serviceAccountsEnabled" : false, + "publicClient" : true, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "pkce.code.challenge.method" : "S256" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : false, + "nodeReRegistrationTimeout" : 0, + "protocolMappers" : [ { + "id" : "ce06926e-1e52-49b7-86ea-ddfd7665b90b", + "name" : "locale", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-attribute-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "locale", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "locale", + "jsonType.label" : "String" + } + } ], + "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "52938086-6278-49af-b311-48ec89d2c3dc", + "clientId" : "ssi-frontend", + "rootUrl" : "http://localhost:3000", + "adminUrl" : "http://localhost:3000", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "7f73d06a-5f9e-4b0f-88f7-40b43b62e58f", + "redirectUris" : [ "https://ssi-framework-ui-dev.k8s.medina.esilab.org/*", "http://localhost:3000/*", "https://static.cybersec.digital.tecnalia.dev/*" ], + "webOrigins" : [ "https://ssi-framework-ui-dev.k8s.medina.esilab.org", "https://static.cybersec.digital.tecnalia.dev", "http://localhost:3000" ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : true, + "serviceAccountsEnabled" : false, + "publicClient" : true, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "access.token.lifespan" : "3600", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "pkce.code.challenge.method" : "S256", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "defaultClientScopes" : [ "web-origins", "role_list", "cloudservice", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "ea94ba36-c7d0-4eb1-9e05-1c7bfffc6a3b", + "clientId" : "trustworthiness_verification", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "78105567-dd19-4705-9e8f-9b1c6e21baae", + "redirectUris" : [ "*" ], + "webOrigins" : [ "*" ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : true, + "serviceAccountsEnabled" : false, + "publicClient" : true, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "access.token.lifespan" : "86400", + "saml.multivalued.roles" : "false", + "saml.force.post.binding" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "defaultClientScopes" : [ "web-origins", "role_list", "cloudservice", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "aa18689d-6d81-4b92-8b9e-291eb4733408", + "clientId" : "wazuh-vat-evidence-collector-dev", + "rootUrl" : "http://wazuh-vat-evidence-collector-dev.k8s.medina.esilab.org/", + "adminUrl" : "http://wazuh-vat-evidence-collector-dev.k8s.medina.esilab.org/", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "68dec932-77fc-4322-8089-d64c3a3317bf", + "redirectUris" : [ "http://wazuh-vat-evidence-collector-dev.k8s.medina.esilab.org/*" ], + "webOrigins" : [ "http://wazuh-vat-evidence-collector-dev.k8s.medina.esilab.org" ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : true, + "serviceAccountsEnabled" : true, + "authorizationServicesEnabled" : true, + "publicClient" : false, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "protocolMappers" : [ { + "id" : "21e80b89-4ab6-4eb1-b1b1-1a44c133e922", + "name" : "Client IP Address", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientAddress", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientAddress", + "jsonType.label" : "String" + } + }, { + "id" : "f9117947-484b-4486-9299-97a1bac403bc", + "name" : "Client Host", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientHost", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientHost", + "jsonType.label" : "String" + } + }, { + "id" : "a610e8bf-64c2-4c57-ba45-f576d1dbd1b9", + "name" : "Client ID", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientId", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientId", + "jsonType.label" : "String" + } + } ], + "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "cladmin-backend-services", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ], + "authorizationSettings" : { + "allowRemoteResourceManagement" : true, + "policyEnforcementMode" : "ENFORCING", + "resources" : [ { + "name" : "Default Resource", + "type" : "urn:wazuh-vat-evidence-collector-dev:resources:default", + "ownerManagedAccess" : false, + "attributes" : { }, + "_id" : "9b151dde-64db-48eb-a5c8-1cb76dbda106", + "uris" : [ "/*" ] + } ], + "policies" : [ { + "id" : "ea4d0471-d8e0-4eb3-b978-5e08ed330193", + "name" : "Default Policy", + "description" : "A policy that grants access only for users within this realm", + "type" : "js", + "logic" : "POSITIVE", + "decisionStrategy" : "AFFIRMATIVE", + "config" : { + "code" : "// by default, grants any permission associated with this policy\n$evaluation.grant();\n" + } + }, { + "id" : "d56c4a80-9aea-4527-80b8-fa8736d55cbe", + "name" : "Default Permission", + "description" : "A permission that applies to the default resource type", + "type" : "resource", + "logic" : "POSITIVE", + "decisionStrategy" : "UNANIMOUS", + "config" : { + "defaultResourceType" : "urn:wazuh-vat-evidence-collector-dev:resources:default", + "applyPolicies" : "[\"Default Policy\"]" + } + } ], + "scopes" : [ ], + "decisionStrategy" : "UNANIMOUS" + } + } ], + "clientScopes" : [ { + "id" : "448d9d12-2046-483f-9951-9cfb26270957", + "name" : "address", + "description" : "OpenID Connect built-in scope: address", + "protocol" : "openid-connect", + "attributes" : { + "include.in.token.scope" : "true", + "display.on.consent.screen" : "true", + "consent.screen.text" : "${addressScopeConsentText}" + }, + "protocolMappers" : [ { + "id" : "d9a1907f-8701-4b47-85a8-b7d959c37d52", + "name" : "address", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-address-mapper", + "consentRequired" : false, + "config" : { + "user.attribute.formatted" : "formatted", + "user.attribute.country" : "country", + "user.attribute.postal_code" : "postal_code", + "userinfo.token.claim" : "true", + "user.attribute.street" : "street", + "id.token.claim" : "true", + "user.attribute.region" : "region", + "access.token.claim" : "true", + "user.attribute.locality" : "locality" + } + } ] + }, { + "id" : "54b21e72-237f-455f-81c6-1f2719ea6466", + "name" : "cladmin-backend-services", + "protocol" : "openid-connect", + "attributes" : { + "include.in.token.scope" : "true", + "display.on.consent.screen" : "true" + }, + "protocolMappers" : [ { + "id" : "798044a8-4388-4a98-9376-15e31b42590a", + "name" : "cladmin", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-hardcoded-claim-mapper", + "consentRequired" : false, + "config" : { + "claim.value" : "true", + "userinfo.token.claim" : "false", + "id.token.claim" : "false", + "access.token.claim" : "true", + "claim.name" : "cladmin", + "jsonType.label" : "boolean", + "access.tokenResponse.claim" : "false" + } + } ] + }, { + "id" : "f5b5d781-271d-4d03-9fc9-6e56c0349f32", + "name" : "cloudservice", + "protocol" : "openid-connect", + "attributes" : { + "include.in.token.scope" : "true", + "display.on.consent.screen" : "true" + }, + "protocolMappers" : [ { + "id" : "bb0a28a6-e1c5-4a1c-9eb9-404b6158b71b", + "name" : "cloudserviceid", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-attribute-mapper", + "consentRequired" : false, + "config" : { + "aggregate.attrs" : "true", + "multivalued" : "true", + "userinfo.token.claim" : "true", + "user.attribute" : "cloudserviceid", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "cloudserviceid", + "jsonType.label" : "String" + } + }, { + "id" : "99f13ac5-3ddd-4183-af53-d352b32616a5", + "name" : "cloudserviceproviderid", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-attribute-mapper", + "consentRequired" : false, + "config" : { + "aggregate.attrs" : "true", + "multivalued" : "true", + "userinfo.token.claim" : "true", + "user.attribute" : "cloudserviceproviderid", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "cloudserviceproviderid", + "jsonType.label" : "String" + } + }, { + "id" : "ed488ec6-a3a7-4ffb-a117-8b92127569bb", + "name" : "is_admin", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-attribute-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "is_admin", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "is_admin", + "jsonType.label" : "boolean" + } + } ] + }, { + "id" : "275d79c9-b59c-40f6-bea2-ce277f3bb3e0", + "name" : "email", + "description" : "OpenID Connect built-in scope: email", + "protocol" : "openid-connect", + "attributes" : { + "include.in.token.scope" : "true", + "display.on.consent.screen" : "true", + "consent.screen.text" : "${emailScopeConsentText}" + }, + "protocolMappers" : [ { + "id" : "e2e140c5-e12f-4a38-ad55-dbeb73558260", + "name" : "email", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-property-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "email", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "email", + "jsonType.label" : "String" + } + }, { + "id" : "a22524be-6358-4d93-beaa-38faed65e198", + "name" : "email verified", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-property-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "emailVerified", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "email_verified", + "jsonType.label" : "boolean" + } + } ] + }, { + "id" : "bbfebad4-3f48-432f-9696-1529017fd411", + "name" : "jhipster", + "description" : "Jhipster specific claims", + "protocol" : "openid-connect", + "attributes" : { + "include.in.token.scope" : "true", + "display.on.consent.screen" : "true" + }, + "protocolMappers" : [ { + "id" : "71c49d92-db9e-4669-b945-a6dd790b8b00", + "name" : "langKey", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-attribute-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "langKey", + "id.token.claim" : "false", + "access.token.claim" : "false", + "claim.name" : "langKey", + "jsonType.label" : "String" + } + }, { + "id" : "79e9563d-3c27-4cb3-b8c7-cb11bc43ebc9", + "name" : "login", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-attribute-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "preferred_username", + "id.token.claim" : "false", + "access.token.claim" : "false", + "claim.name" : "login", + "jsonType.label" : "String" + } + }, { + "id" : "d8ce7859-d0c3-4e55-9415-438c81bfdaa2", + "name" : "roles", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-realm-role-mapper", + "consentRequired" : false, + "config" : { + "multivalued" : "true", + "userinfo.token.claim" : "true", + "id.token.claim" : "false", + "access.token.claim" : "true", + "claim.name" : "roles", + "jsonType.label" : "String" + } + } ] + }, { + "id" : "3dd12f9d-3af5-4757-b89c-4d2a8c448316", + "name" : "microprofile-jwt", + "description" : "Microprofile - JWT built-in scope", + "protocol" : "openid-connect", + "attributes" : { + "include.in.token.scope" : "true", + "display.on.consent.screen" : "false" + }, + "protocolMappers" : [ { + "id" : "995d9d7f-97af-4c01-81d8-8ca11aa34553", + "name" : "groups", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-realm-role-mapper", + "consentRequired" : false, + "config" : { + "multivalued" : "true", + "userinfo.token.claim" : "true", + "user.attribute" : "foo", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "groups", + "jsonType.label" : "String" + } + }, { + "id" : "43df77e9-387b-4f80-bd3e-c2153178ee72", + "name" : "upn", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-property-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "username", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "upn", + "jsonType.label" : "String" + } + } ] + }, { + "id" : "31c108bb-1587-4373-b46a-7d2f0d7acdba", + "name" : "offline_access", + "description" : "OpenID Connect built-in scope: offline_access", + "protocol" : "openid-connect", + "attributes" : { + "consent.screen.text" : "${offlineAccessScopeConsentText}", + "display.on.consent.screen" : "true" + } + }, { + "id" : "b8b09b9e-6096-46ae-8e90-3cd03d364a0a", + "name" : "phone", + "description" : "OpenID Connect built-in scope: phone", + "protocol" : "openid-connect", + "attributes" : { + "include.in.token.scope" : "true", + "display.on.consent.screen" : "true", + "consent.screen.text" : "${phoneScopeConsentText}" + }, + "protocolMappers" : [ { + "id" : "5464cfbe-e421-4034-8f6a-378e99476bf4", + "name" : "phone number", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-attribute-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "phoneNumber", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "phone_number", + "jsonType.label" : "String" + } + }, { + "id" : "f8a484ce-7c5f-4562-8d61-ec161e2929f6", + "name" : "phone number verified", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-attribute-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "phoneNumberVerified", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "phone_number_verified", + "jsonType.label" : "boolean" + } + } ] + }, { + "id" : "b188dc18-eca7-4941-ab04-d3e599e9aa93", + "name" : "profile", + "description" : "OpenID Connect built-in scope: profile", + "protocol" : "openid-connect", + "attributes" : { + "include.in.token.scope" : "true", + "display.on.consent.screen" : "true", + "consent.screen.text" : "${profileScopeConsentText}" + }, + "protocolMappers" : [ { + "id" : "0d52d80c-a7e1-45f9-a16e-1965220474d5", + "name" : "nickname", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-attribute-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "nickname", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "nickname", + "jsonType.label" : "String" + } + }, { + "id" : "cf0e8f74-1996-4ad1-8bcc-3f331bea4e45", + "name" : "birthdate", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-attribute-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "birthdate", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "birthdate", + "jsonType.label" : "String" + } + }, { + "id" : "c58346fb-1470-420c-a6cb-c115e833444b", + "name" : "full name", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-full-name-mapper", + "consentRequired" : false, + "config" : { + "id.token.claim" : "true", + "access.token.claim" : "true", + "userinfo.token.claim" : "true" + } + }, { + "id" : "bdfca3bd-1dda-4ebe-993c-ea11c674c919", + "name" : "gender", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-attribute-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "gender", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "gender", + "jsonType.label" : "String" + } + }, { + "id" : "1299560c-f37d-47d2-96f7-712761cf679a", + "name" : "middle name", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-attribute-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "middleName", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "middle_name", + "jsonType.label" : "String" + } + }, { + "id" : "c67dab67-c3b4-40c4-91fe-7c9ce61fca5f", + "name" : "zoneinfo", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-attribute-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "zoneinfo", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "zoneinfo", + "jsonType.label" : "String" + } + }, { + "id" : "8682ba32-def5-4111-b2ab-79cd865844d0", + "name" : "family name", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-property-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "lastName", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "family_name", + "jsonType.label" : "String" + } + }, { + "id" : "0ee61bf2-d022-420a-aa6d-c7e8bd60e24f", + "name" : "picture", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-attribute-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "picture", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "picture", + "jsonType.label" : "String" + } + }, { + "id" : "3acdc903-7ceb-40b8-8516-ebbc7874d6e4", + "name" : "given name", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-property-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "firstName", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "given_name", + "jsonType.label" : "String" + } + }, { + "id" : "d1fe9f83-141c-4c8c-9635-20367c7e5218", + "name" : "locale", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-attribute-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "locale", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "locale", + "jsonType.label" : "String" + } + }, { + "id" : "502de8c4-4cdf-402b-8453-d407a7b666da", + "name" : "username", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-property-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "username", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "preferred_username", + "jsonType.label" : "String" + } + }, { + "id" : "1603ac87-6a50-4205-b9b9-4ba4d3224d83", + "name" : "website", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-attribute-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "website", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "website", + "jsonType.label" : "String" + } + }, { + "id" : "f2c9d6f6-06b7-415a-87b3-c872a26ab921", + "name" : "updated at", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-attribute-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "updatedAt", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "updated_at", + "jsonType.label" : "String" + } + }, { + "id" : "ee586b78-b33e-4a0b-842f-9bd7059a747a", + "name" : "profile", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-attribute-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "profile", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "profile", + "jsonType.label" : "String" + } + } ] + }, { + "id" : "83717992-b174-46c3-99f1-1a097b02e99c", + "name" : "role_list", + "description" : "SAML role list", + "protocol" : "saml", + "attributes" : { + "consent.screen.text" : "${samlRoleListScopeConsentText}", + "display.on.consent.screen" : "true" + }, + "protocolMappers" : [ { + "id" : "0c0b8746-2e89-4ede-9ea6-ac76d2c66f33", + "name" : "role list", + "protocol" : "saml", + "protocolMapper" : "saml-role-list-mapper", + "consentRequired" : false, + "config" : { + "single" : "false", + "attribute.nameformat" : "Basic", + "attribute.name" : "Role" + } + } ] + }, { + "id" : "da1df8bb-b502-44fb-94a4-cff04b190a8c", + "name" : "roles", + "description" : "OpenID Connect scope for add user roles to the access token", + "protocol" : "openid-connect", + "attributes" : { + "include.in.token.scope" : "false", + "display.on.consent.screen" : "true", + "consent.screen.text" : "${rolesScopeConsentText}" + }, + "protocolMappers" : [ { + "id" : "cef58889-d64f-4405-a1f9-4978962472aa", + "name" : "realm roles", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-realm-role-mapper", + "consentRequired" : false, + "config" : { + "user.attribute" : "foo", + "access.token.claim" : "true", + "claim.name" : "realm_access.roles", + "jsonType.label" : "String", + "multivalued" : "true" + } + }, { + "id" : "44e1ccc5-63d0-464f-a88c-535864dba161", + "name" : "audience resolve", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-audience-resolve-mapper", + "consentRequired" : false, + "config" : { } + }, { + "id" : "fc7ab48f-7268-4f85-874c-8b35d00d5fb1", + "name" : "client roles", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-client-role-mapper", + "consentRequired" : false, + "config" : { + "user.attribute" : "foo", + "access.token.claim" : "true", + "claim.name" : "resource_access.${client_id}.roles", + "jsonType.label" : "String", + "multivalued" : "true" + } + } ] + }, { + "id" : "cab2790d-6362-4d1a-96cb-427e906ea1d0", + "name" : "web-origins", + "description" : "OpenID Connect scope for add allowed web origins to the access token", + "protocol" : "openid-connect", + "attributes" : { + "include.in.token.scope" : "false", + "display.on.consent.screen" : "false", + "consent.screen.text" : "" + }, + "protocolMappers" : [ { + "id" : "e8c45111-ab73-4a68-a793-fdcc71c4f2ad", + "name" : "allowed web origins", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-allowed-origins-mapper", + "consentRequired" : false, + "config" : { } + } ] + } ], + "defaultDefaultClientScopes" : [ "email", "role_list", "profile", "web-origins", "roles", "cloudservice" ], + "defaultOptionalClientScopes" : [ "offline_access", "microprofile-jwt", "address", "phone" ], + "browserSecurityHeaders" : { + "contentSecurityPolicyReportOnly" : "", + "xContentTypeOptions" : "nosniff", + "xRobotsTag" : "none", + "xFrameOptions" : "ALLOW-FROM https://integrated-ui-dev.k8s.medina.esilab.org", + "contentSecurityPolicy" : "frame-src 'self' https://integrated-ui-dev.k8s.medina.esilab.org; frame-ancestors 'self' https://ssi-framework-ui-dev.k8s.medina.esilab.org https://integrated-ui-dev.k8s.medina.esilab.org; object-src https://integrated-ui-dev.k8s.medina.esilab.org;", + "xXSSProtection" : "1; mode=block", + "strictTransportSecurity" : "max-age=31536000; includeSubDomains" + }, + "smtpServer" : { + "password" : "medinaPassword", + "starttls" : "", + "auth" : "true", + "host" : "smtp.gmail.com", + "from" : "medinatestuser@gmail.com", + "ssl" : "true", + "user" : "medinatestuser@gmail.com" + }, + "eventsEnabled" : false, + "eventsListeners" : [ "jboss-logging" ], + "enabledEventTypes" : [ ], + "adminEventsEnabled" : false, + "adminEventsDetailsEnabled" : false, + "identityProviders" : [ { + "alias" : "oidc", + "displayName" : "Bosch Login", + "internalId" : "0a60d4b9-c19c-4df7-9d55-f27547b90af0", + "providerId" : "oidc", + "enabled" : true, + "updateProfileFirstLoginMode" : "on", + "trustEmail" : false, + "storeToken" : false, + "addReadTokenRoleOnCreate" : false, + "authenticateByDefault" : false, + "linkOnly" : false, + "firstBrokerLoginFlowAlias" : "first broker login", + "config" : { + "userInfoUrl" : "https://stfs.test-bosch.com/adfs/userinfo", + "validateSignature" : "true", + "clientId" : "acfbc2ab-64e4-4b64-ad0e-204ec212cbbf", + "tokenUrl" : "https://stfs.test-bosch.com/adfs/oauth2/token/", + "jwksUrl" : "https://stfs.test-bosch.com/adfs/discovery/keys", + "issuer" : "https://stfs.test-bosch.com/adfs", + "useJwksUrl" : "true", + "authorizationUrl" : "https://stfs.test-bosch.com/adfs/oauth2/authorize/", + "clientAuthMethod" : "client_secret_post", + "disableUserInfo" : "true", + "logoutUrl" : "https://stfs.test-bosch.com/adfs/oauth2/logout", + "syncMode" : "IMPORT", + "clientSecret" : "Iog6MCAS2DoU0tLURqTVOME5p_Fq-LY_eewuOye4" + } + } ], + "identityProviderMappers" : [ { + "id" : "07f77793-a333-4c4f-a394-49eb29857486", + "name" : "Username Custom Mapper", + "identityProviderAlias" : "oidc", + "identityProviderMapper" : "oidc-username-idp-mapper", + "config" : { + "template" : "${CLAIM.email}", + "syncMode" : "INHERIT", + "target" : "LOCAL" + } + }, { + "id" : "bb71a007-f1e3-4dc7-9a8a-1e6e21d09544", + "name" : "Default Compliance Manager mapper", + "identityProviderAlias" : "oidc", + "identityProviderMapper" : "oidc-hardcoded-role-idp-mapper", + "config" : { + "syncMode" : "INHERIT", + "role" : "Compliance Manager" + } + } ], + "components" : { + "org.keycloak.services.clientregistration.policy.ClientRegistrationPolicy" : [ { + "id" : "fbccf871-d01e-4d47-99d0-3bdce3bfa12c", + "name" : "Allowed Client Scopes", + "providerId" : "allowed-client-templates", + "subType" : "anonymous", + "subComponents" : { }, + "config" : { + "allow-default-scopes" : [ "true" ] + } + }, { + "id" : "611a0a79-84c4-4d2d-9d11-01eb58141a46", + "name" : "Trusted Hosts", + "providerId" : "trusted-hosts", + "subType" : "anonymous", + "subComponents" : { }, + "config" : { + "host-sending-registration-request-must-match" : [ "true" ], + "client-uris-must-match" : [ "true" ] + } + }, { + "id" : "2124ff56-7c6f-4095-ba92-ae335222f88c", + "name" : "Full Scope Disabled", + "providerId" : "scope", + "subType" : "anonymous", + "subComponents" : { }, + "config" : { } + }, { + "id" : "b8f02611-098d-402f-90a6-a1f09afcdb22", + "name" : "Allowed Protocol Mapper Types", + "providerId" : "allowed-protocol-mappers", + "subType" : "anonymous", + "subComponents" : { }, + "config" : { + "allowed-protocol-mapper-types" : [ "oidc-usermodel-attribute-mapper", "saml-role-list-mapper", "oidc-full-name-mapper", "saml-user-attribute-mapper", "saml-user-property-mapper", "oidc-sha256-pairwise-sub-mapper", "oidc-address-mapper", "oidc-usermodel-property-mapper" ] + } + }, { + "id" : "cca940dd-d866-44db-a211-0ed1bc682ae7", + "name" : "Allowed Protocol Mapper Types", + "providerId" : "allowed-protocol-mappers", + "subType" : "authenticated", + "subComponents" : { }, + "config" : { + "allowed-protocol-mapper-types" : [ "saml-user-attribute-mapper", "oidc-sha256-pairwise-sub-mapper", "saml-role-list-mapper", "oidc-usermodel-property-mapper", "oidc-full-name-mapper", "oidc-address-mapper", "saml-user-property-mapper", "oidc-usermodel-attribute-mapper" ] + } + }, { + "id" : "dfb48f4f-8760-419e-9337-15eb81a41fdb", + "name" : "Max Clients Limit", + "providerId" : "max-clients", + "subType" : "anonymous", + "subComponents" : { }, + "config" : { + "max-clients" : [ "200" ] + } + }, { + "id" : "dfbcfdd0-4628-4a27-927a-4a476017ca56", + "name" : "Allowed Client Scopes", + "providerId" : "allowed-client-templates", + "subType" : "authenticated", + "subComponents" : { }, + "config" : { + "allow-default-scopes" : [ "true" ] + } + }, { + "id" : "cb8bff43-35e8-4fbc-9758-02da2892008d", + "name" : "Consent Required", + "providerId" : "consent-required", + "subType" : "anonymous", + "subComponents" : { }, + "config" : { } + } ], + "org.keycloak.keys.KeyProvider" : [ { + "id" : "4fcc8a9a-8dac-4051-8c34-748bf12d011d", + "name" : "rsa-generated", + "providerId" : "rsa-generated", + "subComponents" : { }, + "config" : { + "privateKey" : [ "MIIEpAIBAAKCAQEAqpMWsm7G85cM6j1jJCxmM6UAssq+oVsfdFUNEXJPpjy4FGRo4cIzaSPjqLAHn1xrBY4wWoPQU+4h2RRurXw0ELLhCIy+LIfUU0djB/5v0s5vqzaj/v8nSKQuKT2NY04b1oNTSeUuL1/sopo8ZcvtOdD2gTlVE2qDQJvJuKxIK9D4r2h2E7Kh7GwI0VIuywi0Ehdbwm21LTZlcrrmNu1pzN8oodjz0uYRIQ/p+AJCa0b+RhFQWN40XTmW1hmERE/J21ZK8sMcmO0vKcg5v2yzDOMQUcTMVVA1MHER8Q08yTYWmyQNP6E3xobVhqwCeClzcNCw1SdNfOVTuqCiZOWQWQIDAQABAoIBAEhcYbKMYAYSPD5akGZWF30tMGCotboJyAw30HVoQvXIqGauOfgbxGeD/B4hnvox4IzYxxZ++K/CQ8Wtb05VdFjpKaHQ4xRNAvvZOt+3RoTtYl4FrgiNAYNFcve3zvUju5eC2qBsgu1CCkbom1qr6hUu2oPzaG32L3wHGsom++7p4YE7FAzfqrEhntlVouMf9oW2477823gcr4LtX3tz2uIw8ZtSGsAxPGWfunxtX9qTgEVzXUFYou94fn7u6vRbRKSqq/udjQcSRaPzdrdto98oH6Y+3rm0PKj5sTkJf8SJHJFCPTgIgnG/7VZm8ZVJAoGLLUGzNC6pgEFdYjDmhSkCgYEA+mQYOKF6f8c5axsrUXtHHoWKYjZCXnWCH+P+DJQAHFSvdPAZgLJ6odKS8tFhujh8murE5WGsVkXxqZOHwXqBHrWrpJhfO8otHPEklhjn2MAhrxWxHEVokdUJjfUzoK0S6RVni/4hZIFkj3322lW7KXdSoeM5dfe9hFKxYM8G+jMCgYEArmVGSJtOzrIAzRZCmMwXwW/rV9Hi8QQOJRy8IM5zLvQutZa3RbqGPjOnq8XjsT98L6w4tM6WsTXWmGxOKDFzPhtg3pxz0ghFC895WaDqz1EL3Wjzp0p1a0mqo8zA+vOh9h+0YQs649eOPHkdr5AvMqenpxIwhu7nG0WOK+OKl0MCgYEAzcYiza+PP6GXg3kxkWYRnXi7sFjNFFnX1aOF7gpXSPEjvKNxIf4LoB+w2lLO0L6JULstkyFBAym6H9V5lLy7jmRYqgz6/uT5TDa1DZFsQAot5HicNBKqjGaa0oo3oo155AnOLhNsl+9qmC46B1a7WKmSRC6700IFAtD+qwOYxVcCgYB1892ToietOUu9ar7kZbXziWUd4sGhzeJbS5Iahkf1jAZDn4qZyMyfKYTQc2nLKmsuO0enUsstVIKuWSKLoNaXPSFJr3vOpPU+RbeH3YSzb9eciy2xCnVceVjGrOghU8NJmqv/rv7Ht7VmRWzEn7qsgiSspWrY+KCrG2JLYP0NzQKBgQDtcbX43N7aGMs/wP2Y/PDoTPeIB6f0+D7rdoHBmK6nUxQ9V70uAyYC4WtJudrKkVKUKAK8oOgbD2Qne2t02pbYKxQQDyBGQObuyC28fA5DHl9F8j6jx2u+He1s23V9HZhxj36TOVIjdjctRCDGTg32RMLGZlli0St2hK9EWSrUvQ==" ], + "certificate" : [ "MIICmzCCAYMCBgF/LGg1XzANBgkqhkiG9w0BAQsFADARMQ8wDQYDVQQDDAZtZWRpbmEwHhcNMjIwMjI0MTU0MzIxWhcNMzIwMjI0MTU0NTAxWjARMQ8wDQYDVQQDDAZtZWRpbmEwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCqkxaybsbzlwzqPWMkLGYzpQCyyr6hWx90VQ0Rck+mPLgUZGjhwjNpI+OosAefXGsFjjBag9BT7iHZFG6tfDQQsuEIjL4sh9RTR2MH/m/Szm+rNqP+/ydIpC4pPY1jThvWg1NJ5S4vX+yimjxly+050PaBOVUTaoNAm8m4rEgr0PivaHYTsqHsbAjRUi7LCLQSF1vCbbUtNmVyuuY27WnM3yih2PPS5hEhD+n4AkJrRv5GEVBY3jRdOZbWGYRET8nbVkrywxyY7S8pyDm/bLMM4xBRxMxVUDUwcRHxDTzJNhabJA0/oTfGhtWGrAJ4KXNw0LDVJ0185VO6oKJk5ZBZAgMBAAEwDQYJKoZIhvcNAQELBQADggEBAD7yJ2HegJ3/LzAmn/JIDXH1qfZ2DgGyfFQk82tWmFnsxVaLrv0sehS7Ufza5JRsudmzL6I8LHTgYuS1zyDZ1kmEB4gIpmw+ZI4M+isIpuzGRz8B3t2y3jOnEKjykjTWWYQrINYQiqPKU8LSFwe+Uqtcqga0TqgZ2fO8tkeP74a7JVk1hd4JD50shuPIInPx5PfqN7xAUebyPeJk91RQVC4tSpIIlFyd13MFQOzocj9uB685SE6DT3vjguYod6tv7JIUme0+JZIhd67hBlZS71ebL2B0gcX7+9jKZi3oeGFX+2k5CWCHZUf7KBvY3WaxxZTlFCtRcNbWKkMUmVTjRJ8=" ], + "priority" : [ "100" ] + } + }, { + "id" : "025383fb-ebfe-4e5d-b82e-ada254fff0fc", + "name" : "hmac-generated", + "providerId" : "hmac-generated", + "subComponents" : { }, + "config" : { + "kid" : [ "672cf3de-8a6e-43a9-bbb3-3b4cda7477a5" ], + "secret" : [ "lxJLgn2fZb9sMr0OZOzv98PC9GZWRJRGrNP86lb99Ded4XqqVXPU5HGxdn6RCxXdJxZyydNbrCnzDhZSpYLJDw" ], + "priority" : [ "100" ], + "algorithm" : [ "HS256" ] + } + }, { + "id" : "9e25e190-e32d-4bc8-9c9d-f5683ba8d2c3", + "name" : "aes-generated", + "providerId" : "aes-generated", + "subComponents" : { }, + "config" : { + "kid" : [ "5fe1d9fe-f688-4e7b-8871-176b5cf97cd4" ], + "secret" : [ "o_z-vBEGNLSgbqxfgun_sg" ], + "priority" : [ "100" ] + } + } ] + }, + "internationalizationEnabled" : false, + "supportedLocales" : [ ], + "authenticationFlows" : [ { + "id" : "542e66b3-00a6-46d0-bebd-573aa184f412", + "alias" : "Account verification options", + "description" : "Method with which to verity the existing account", + "providerId" : "basic-flow", + "topLevel" : false, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticator" : "idp-email-verification", + "requirement" : "ALTERNATIVE", + "priority" : 10, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "requirement" : "ALTERNATIVE", + "priority" : 20, + "flowAlias" : "Verify Existing Account by Re-authentication", + "userSetupAllowed" : false, + "autheticatorFlow" : true + } ] + }, { + "id" : "acef3f99-a8be-4ee7-ba5e-09b49fd09771", + "alias" : "Authentication Options", + "description" : "Authentication options.", + "providerId" : "basic-flow", + "topLevel" : false, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticator" : "basic-auth", + "requirement" : "REQUIRED", + "priority" : 10, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "authenticator" : "basic-auth-otp", + "requirement" : "DISABLED", + "priority" : 20, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "authenticator" : "auth-spnego", + "requirement" : "DISABLED", + "priority" : 30, + "userSetupAllowed" : false, + "autheticatorFlow" : false + } ] + }, { + "id" : "55f0883b-5df6-4c1a-98e2-5042260ce86e", + "alias" : "Browser - Conditional OTP", + "description" : "Flow to determine if the OTP is required for the authentication", + "providerId" : "basic-flow", + "topLevel" : false, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticator" : "conditional-user-configured", + "requirement" : "REQUIRED", + "priority" : 10, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "authenticator" : "auth-otp-form", + "requirement" : "REQUIRED", + "priority" : 20, + "userSetupAllowed" : false, + "autheticatorFlow" : false + } ] + }, { + "id" : "e137d77f-4a04-444a-8653-f207118e60c9", + "alias" : "Direct Grant - Conditional OTP", + "description" : "Flow to determine if the OTP is required for the authentication", + "providerId" : "basic-flow", + "topLevel" : false, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticator" : "conditional-user-configured", + "requirement" : "REQUIRED", + "priority" : 10, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "authenticator" : "direct-grant-validate-otp", + "requirement" : "REQUIRED", + "priority" : 20, + "userSetupAllowed" : false, + "autheticatorFlow" : false + } ] + }, { + "id" : "7d0bf21f-60bf-48e5-9e6d-b081f0a8cfaf", + "alias" : "First broker login - Conditional OTP", + "description" : "Flow to determine if the OTP is required for the authentication", + "providerId" : "basic-flow", + "topLevel" : false, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticator" : "conditional-user-configured", + "requirement" : "REQUIRED", + "priority" : 10, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "authenticator" : "auth-otp-form", + "requirement" : "REQUIRED", + "priority" : 20, + "userSetupAllowed" : false, + "autheticatorFlow" : false + } ] + }, { + "id" : "55a04a80-9de5-4889-9145-584e00efb74c", + "alias" : "Handle Existing Account", + "description" : "Handle what to do if there is existing account with same email/username like authenticated identity provider", + "providerId" : "basic-flow", + "topLevel" : false, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticator" : "idp-confirm-link", + "requirement" : "REQUIRED", + "priority" : 10, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "requirement" : "REQUIRED", + "priority" : 20, + "flowAlias" : "Account verification options", + "userSetupAllowed" : false, + "autheticatorFlow" : true + } ] + }, { + "id" : "b8c46e73-2dba-4479-a2d9-8de9781411f0", + "alias" : "Reset - Conditional OTP", + "description" : "Flow to determine if the OTP should be reset or not. Set to REQUIRED to force.", + "providerId" : "basic-flow", + "topLevel" : false, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticator" : "conditional-user-configured", + "requirement" : "REQUIRED", + "priority" : 10, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "authenticator" : "reset-otp", + "requirement" : "REQUIRED", + "priority" : 20, + "userSetupAllowed" : false, + "autheticatorFlow" : false + } ] + }, { + "id" : "2be49850-cfdc-421a-a3b3-4ba373aa0a06", + "alias" : "User creation or linking", + "description" : "Flow for the existing/non-existing user alternatives", + "providerId" : "basic-flow", + "topLevel" : false, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticatorConfig" : "create unique user config", + "authenticator" : "idp-create-user-if-unique", + "requirement" : "ALTERNATIVE", + "priority" : 10, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "requirement" : "ALTERNATIVE", + "priority" : 20, + "flowAlias" : "Handle Existing Account", + "userSetupAllowed" : false, + "autheticatorFlow" : true + } ] + }, { + "id" : "fca3935e-19bc-422c-b3fd-cfd431424e61", + "alias" : "Verify Existing Account by Re-authentication", + "description" : "Reauthentication of existing account", + "providerId" : "basic-flow", + "topLevel" : false, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticator" : "idp-username-password-form", + "requirement" : "REQUIRED", + "priority" : 10, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "requirement" : "CONDITIONAL", + "priority" : 20, + "flowAlias" : "First broker login - Conditional OTP", + "userSetupAllowed" : false, + "autheticatorFlow" : true + } ] + }, { + "id" : "5e831b42-7e44-41d6-b4b6-4e60b79766e1", + "alias" : "browser", + "description" : "browser based authentication", + "providerId" : "basic-flow", + "topLevel" : true, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticator" : "auth-cookie", + "requirement" : "ALTERNATIVE", + "priority" : 10, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "authenticator" : "auth-spnego", + "requirement" : "DISABLED", + "priority" : 20, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "authenticator" : "identity-provider-redirector", + "requirement" : "ALTERNATIVE", + "priority" : 25, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "requirement" : "ALTERNATIVE", + "priority" : 30, + "flowAlias" : "forms", + "userSetupAllowed" : false, + "autheticatorFlow" : true + } ] + }, { + "id" : "85a60306-f8aa-4176-84cc-6ecd6a6e78b4", + "alias" : "clients", + "description" : "Base authentication for clients", + "providerId" : "client-flow", + "topLevel" : true, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticator" : "client-secret", + "requirement" : "ALTERNATIVE", + "priority" : 10, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "authenticator" : "client-jwt", + "requirement" : "ALTERNATIVE", + "priority" : 20, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "authenticator" : "client-secret-jwt", + "requirement" : "ALTERNATIVE", + "priority" : 30, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "authenticator" : "client-x509", + "requirement" : "ALTERNATIVE", + "priority" : 40, + "userSetupAllowed" : false, + "autheticatorFlow" : false + } ] + }, { + "id" : "18adc4b6-c061-4a14-9e86-d3c81f41761e", + "alias" : "direct grant", + "description" : "OpenID Connect Resource Owner Grant", + "providerId" : "basic-flow", + "topLevel" : true, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticator" : "direct-grant-validate-username", + "requirement" : "REQUIRED", + "priority" : 10, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "authenticator" : "direct-grant-validate-password", + "requirement" : "REQUIRED", + "priority" : 20, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "requirement" : "CONDITIONAL", + "priority" : 30, + "flowAlias" : "Direct Grant - Conditional OTP", + "userSetupAllowed" : false, + "autheticatorFlow" : true + } ] + }, { + "id" : "c7ee3e5c-6bcf-4307-a5e1-2803d06b0ef8", + "alias" : "docker auth", + "description" : "Used by Docker clients to authenticate against the IDP", + "providerId" : "basic-flow", + "topLevel" : true, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticator" : "docker-http-basic-authenticator", + "requirement" : "REQUIRED", + "priority" : 10, + "userSetupAllowed" : false, + "autheticatorFlow" : false + } ] + }, { + "id" : "ff29c759-441e-465b-8f34-990e1b342841", + "alias" : "first broker login", + "description" : "Actions taken after first broker login with identity provider account, which is not yet linked to any Keycloak account", + "providerId" : "basic-flow", + "topLevel" : true, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticatorConfig" : "review profile config", + "authenticator" : "idp-review-profile", + "requirement" : "REQUIRED", + "priority" : 10, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "requirement" : "REQUIRED", + "priority" : 20, + "flowAlias" : "User creation or linking", + "userSetupAllowed" : false, + "autheticatorFlow" : true + } ] + }, { + "id" : "30411610-5d4f-41c0-8e0b-6a5d31dd670d", + "alias" : "forms", + "description" : "Username, password, otp and other auth forms.", + "providerId" : "basic-flow", + "topLevel" : false, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticator" : "auth-username-password-form", + "requirement" : "REQUIRED", + "priority" : 10, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "requirement" : "CONDITIONAL", + "priority" : 20, + "flowAlias" : "Browser - Conditional OTP", + "userSetupAllowed" : false, + "autheticatorFlow" : true + } ] + }, { + "id" : "03f219b5-78b7-47dc-a68a-0eb2269032a4", + "alias" : "http challenge", + "description" : "An authentication flow based on challenge-response HTTP Authentication Schemes", + "providerId" : "basic-flow", + "topLevel" : true, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticator" : "no-cookie-redirect", + "requirement" : "REQUIRED", + "priority" : 10, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "requirement" : "REQUIRED", + "priority" : 20, + "flowAlias" : "Authentication Options", + "userSetupAllowed" : false, + "autheticatorFlow" : true + } ] + }, { + "id" : "daa97eda-8144-44f1-9564-15575a4ed989", + "alias" : "registration", + "description" : "registration flow", + "providerId" : "basic-flow", + "topLevel" : true, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticator" : "registration-page-form", + "requirement" : "REQUIRED", + "priority" : 10, + "flowAlias" : "registration form", + "userSetupAllowed" : false, + "autheticatorFlow" : true + } ] + }, { + "id" : "8c85f001-0257-4ed5-a485-574849241362", + "alias" : "registration form", + "description" : "registration form", + "providerId" : "form-flow", + "topLevel" : false, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticator" : "registration-user-creation", + "requirement" : "REQUIRED", + "priority" : 20, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "authenticator" : "registration-profile-action", + "requirement" : "REQUIRED", + "priority" : 40, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "authenticator" : "registration-password-action", + "requirement" : "REQUIRED", + "priority" : 50, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "authenticator" : "registration-recaptcha-action", + "requirement" : "DISABLED", + "priority" : 60, + "userSetupAllowed" : false, + "autheticatorFlow" : false + } ] + }, { + "id" : "70a789e0-8b93-4a6d-9281-14fc023d695c", + "alias" : "reset credentials", + "description" : "Reset credentials for a user if they forgot their password or something", + "providerId" : "basic-flow", + "topLevel" : true, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticator" : "reset-credentials-choose-user", + "requirement" : "REQUIRED", + "priority" : 10, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "authenticator" : "reset-credential-email", + "requirement" : "REQUIRED", + "priority" : 20, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "authenticator" : "reset-password", + "requirement" : "REQUIRED", + "priority" : 30, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "requirement" : "CONDITIONAL", + "priority" : 40, + "flowAlias" : "Reset - Conditional OTP", + "userSetupAllowed" : false, + "autheticatorFlow" : true + } ] + }, { + "id" : "bc2ebe7a-6827-4bb7-b888-fdc3a7ca2534", + "alias" : "saml ecp", + "description" : "SAML ECP Profile Authentication Flow", + "providerId" : "basic-flow", + "topLevel" : true, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticator" : "http-basic-authenticator", + "requirement" : "REQUIRED", + "priority" : 10, + "userSetupAllowed" : false, + "autheticatorFlow" : false + } ] + } ], + "authenticatorConfig" : [ { + "id" : "6c90efa8-3c70-4a6b-b04e-abfd516056b2", + "alias" : "create unique user config", + "config" : { + "require.password.update.after.registration" : "false" + } + }, { + "id" : "ddf4310d-2e82-45d2-8621-7ce4beb366a1", + "alias" : "review profile config", + "config" : { + "update.profile.on.first.login" : "missing" + } + } ], + "requiredActions" : [ { + "alias" : "CONFIGURE_TOTP", + "name" : "Configure OTP", + "providerId" : "CONFIGURE_TOTP", + "enabled" : true, + "defaultAction" : false, + "priority" : 10, + "config" : { } + }, { + "alias" : "terms_and_conditions", + "name" : "Terms and Conditions", + "providerId" : "terms_and_conditions", + "enabled" : false, + "defaultAction" : false, + "priority" : 20, + "config" : { } + }, { + "alias" : "UPDATE_PASSWORD", + "name" : "Update Password", + "providerId" : "UPDATE_PASSWORD", + "enabled" : true, + "defaultAction" : false, + "priority" : 30, + "config" : { } + }, { + "alias" : "UPDATE_PROFILE", + "name" : "Update Profile", + "providerId" : "UPDATE_PROFILE", + "enabled" : true, + "defaultAction" : false, + "priority" : 40, + "config" : { } + }, { + "alias" : "VERIFY_EMAIL", + "name" : "Verify Email", + "providerId" : "VERIFY_EMAIL", + "enabled" : true, + "defaultAction" : false, + "priority" : 50, + "config" : { } + }, { + "alias" : "delete_account", + "name" : "Delete Account", + "providerId" : "delete_account", + "enabled" : false, + "defaultAction" : false, + "priority" : 60, + "config" : { } + }, { + "alias" : "update_user_locale", + "name" : "Update User Locale", + "providerId" : "update_user_locale", + "enabled" : true, + "defaultAction" : false, + "priority" : 1000, + "config" : { } + } ], + "browserFlow" : "browser", + "registrationFlow" : "registration", + "directGrantFlow" : "direct grant", + "resetCredentialsFlow" : "reset credentials", + "clientAuthenticationFlow" : "clients", + "dockerAuthenticationFlow" : "docker auth", + "attributes" : { + "clientOfflineSessionMaxLifespan" : "0", + "clientSessionIdleTimeout" : "0", + "clientSessionMaxLifespan" : "0", + "frontendUrl" : "", + "clientOfflineSessionIdleTimeout" : "0" + }, + "keycloakVersion" : "12.0.4", + "userManagedAccessAllowed" : false } \ No newline at end of file diff --git a/data/keycloak-setup/test.k8s.medina.esilab.org/realm.json b/data/keycloak-setup/test.k8s.medina.esilab.org/realm.json index 45dc9c743b67c9b91382545701ad9d389b2fb674..580825a94204a76a78c25d43107243b6ca651341 100755 --- a/data/keycloak-setup/test.k8s.medina.esilab.org/realm.json +++ b/data/keycloak-setup/test.k8s.medina.esilab.org/realm.json @@ -1,3963 +1,5094 @@ -{ - "id" : "medina", - "realm" : "medina", - "displayName" : "", - "notBefore" : 1646899526, - "revokeRefreshToken" : false, - "refreshTokenMaxReuse" : 0, - "accessTokenLifespan" : 300, - "accessTokenLifespanForImplicitFlow" : 900, - "ssoSessionIdleTimeout" : 1800, - "ssoSessionMaxLifespan" : 36000, - "ssoSessionIdleTimeoutRememberMe" : 0, - "ssoSessionMaxLifespanRememberMe" : 0, - "offlineSessionIdleTimeout" : 2592000, - "offlineSessionMaxLifespanEnabled" : false, - "offlineSessionMaxLifespan" : 5184000, - "clientSessionIdleTimeout" : 0, - "clientSessionMaxLifespan" : 0, - "clientOfflineSessionIdleTimeout" : 0, - "clientOfflineSessionMaxLifespan" : 0, - "accessCodeLifespan" : 60, - "accessCodeLifespanUserAction" : 300, - "accessCodeLifespanLogin" : 1800, - "actionTokenGeneratedByAdminLifespan" : 43200, - "actionTokenGeneratedByUserLifespan" : 300, - "enabled" : true, - "sslRequired" : "external", - "registrationAllowed" : false, - "registrationEmailAsUsername" : false, - "rememberMe" : false, - "verifyEmail" : false, - "loginWithEmailAllowed" : true, - "duplicateEmailsAllowed" : false, - "resetPasswordAllowed" : false, - "editUsernameAllowed" : false, - "bruteForceProtected" : false, - "permanentLockout" : false, - "maxFailureWaitSeconds" : 900, - "minimumQuickLoginWaitSeconds" : 60, - "waitIncrementSeconds" : 60, - "quickLoginCheckMilliSeconds" : 1000, - "maxDeltaTimeSeconds" : 43200, - "failureFactor" : 30, - "roles" : { - "realm" : [ { - "id" : "0f08df2b-4b64-487c-9e51-2580a02ae0ef", - "name" : "Customer", - "description" : "Interested in the compliance status of the company", - "composite" : false, - "clientRole" : false, - "containerId" : "medina", - "attributes" : { } - }, { - "id" : "2f6015a8-ddee-42f9-99c5-4760bd5fb5c7", - "name" : "ROLE_USER", - "description" : "temporary role for catalogue jhipster", - "composite" : false, - "clientRole" : false, - "containerId" : "medina", - "attributes" : { } - }, { - "id" : "9d96522b-ff58-498d-ad7f-11a747bd924e", - "name" : "offline_access", - "description" : "${role_offline-access}", - "composite" : false, - "clientRole" : false, - "containerId" : "medina", - "attributes" : { } - }, { - "id" : "417a650d-7309-41d2-aecd-cd179c656c65", - "name" : "Auditor", - "description" : "Performs all actions required to audit a Company", - "composite" : true, - "composites" : { - "client" : { - "api-swagger" : [ "user" ], - "integrated-ui" : [ "admin" ] - } - }, - "clientRole" : false, - "containerId" : "medina", - "attributes" : { } - }, { - "id" : "dac0890c-0957-40ed-b72f-37ca91a59d6e", - "name" : "Company", - "description" : "Most of the defined roles are employed by the company. Products of company are being audited", - "composite" : false, - "clientRole" : false, - "containerId" : "medina", - "attributes" : { } - }, { - "id" : "f4c52c7f-c34d-4101-8c11-523dbc526d72", - "name" : "ICO", - "description" : "Internal Control Owner - Responsible for creating internal controls. Executing the internal controls.", - "composite" : false, - "clientRole" : false, - "containerId" : "medina", - "attributes" : { } - }, { - "id" : "ec325a48-83c2-4b16-96be-305dc4767132", - "name" : "uma_authorization", - "description" : "${role_uma_authorization}", - "composite" : false, - "clientRole" : false, - "containerId" : "medina", - "attributes" : { } - }, { - "id" : "64dbcf9f-4231-4163-828a-5fa4fe9db278", - "name" : "CISO", - "description" : "Chief Information Security Officer - Responsible for security in the company, chooses what security controls should be implemented", - "composite" : false, - "clientRole" : false, - "containerId" : "medina", - "attributes" : { } - }, { - "id" : "e7c3caa6-1e16-4cf6-9484-b0af649117df", - "name" : "Compliance Manager", - "description" : "Responsible for the implementation of security control frameworks.\nResponsible for the correct implementation of the internal controls.\nResponsible for incident management.\nResponsible for performing internal audits.", - "composite" : true, - "composites" : { - "client" : { - "cnl-editor-frontend" : [ "user" ], - "integrated-ui" : [ "user", "admin" ], - "nl2cnl-translator-client" : [ "user" ] - } - }, - "clientRole" : false, - "containerId" : "medina", - "attributes" : { } - }, { - "id" : "fd93daa9-1357-4ba3-989d-7bf4b7ba2a07", - "name" : "ROLE_ADMIN", - "description" : "temporary role for catalogue jhipster", - "composite" : false, - "clientRole" : false, - "containerId" : "medina", - "attributes" : { } - } ], - "client" : { - "catalogue-backend" : [ ], - "raof-app" : [ { - "id" : "9f63da36-943c-4b9e-a92e-2632a76663dd", - "name" : "uma_protection", - "composite" : false, - "clientRole" : true, - "containerId" : "b1293ae0-e720-40cb-ae6f-db7fc9b1fe92", - "attributes" : { } - } ], - "security-admin-console" : [ ], - "wazuh-vat-evidence-collector-dev" : [ { - "id" : "3c40a84f-dc61-43d1-a607-e3fad0df3766", - "name" : "uma_protection", - "composite" : false, - "clientRole" : true, - "containerId" : "aa18689d-6d81-4b92-8b9e-291eb4733408", - "attributes" : { } - } ], - "clouditor-assessment" : [ ], - "account-console" : [ ], - "amoe-client" : [ ], - "cce-dev" : [ { - "id" : "aa5844fb-a4f8-4cfa-8514-1f4033e8bd9c", - "name" : "uma_protection", - "composite" : false, - "clientRole" : true, - "containerId" : "dc64b28b-a696-4b0c-8e24-2aeae138c3e5", - "attributes" : { } - } ], - "clouditor-cli" : [ ], - "codyze" : [ ], - "admin-cli" : [ ], - "catalogue-jhipster-control-center" : [ ], - "catalogue-registry" : [ ], - "realm-management" : [ { - "id" : "e02ce89a-c0b9-43b5-b6be-5c515624927a", - "name" : "manage-clients", - "description" : "${role_manage-clients}", - "composite" : false, - "clientRole" : true, - "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", - "attributes" : { } - }, { - "id" : "5bc05c8b-6d6a-45a1-92f7-cc33f4fe57bd", - "name" : "view-authorization", - "description" : "${role_view-authorization}", - "composite" : false, - "clientRole" : true, - "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", - "attributes" : { } - }, { - "id" : "0ee5608f-ab3a-4a8e-889b-e0d230a2fc86", - "name" : "view-clients", - "description" : "${role_view-clients}", - "composite" : true, - "composites" : { - "client" : { - "realm-management" : [ "query-clients" ] - } - }, - "clientRole" : true, - "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", - "attributes" : { } - }, { - "id" : "c2bd9190-451c-45d7-9588-412e1c40d5fd", - "name" : "manage-authorization", - "description" : "${role_manage-authorization}", - "composite" : false, - "clientRole" : true, - "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", - "attributes" : { } - }, { - "id" : "83e3e683-50b5-4050-b88b-2178342a13f8", - "name" : "manage-events", - "description" : "${role_manage-events}", - "composite" : false, - "clientRole" : true, - "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", - "attributes" : { } - }, { - "id" : "4e9c2113-f0d3-4691-bb66-49e3ca218d63", - "name" : "query-clients", - "description" : "${role_query-clients}", - "composite" : false, - "clientRole" : true, - "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", - "attributes" : { } - }, { - "id" : "cdca2718-5853-4969-9b63-2186e0382085", - "name" : "query-realms", - "description" : "${role_query-realms}", - "composite" : false, - "clientRole" : true, - "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", - "attributes" : { } - }, { - "id" : "33eb311b-fdbc-4ccf-b367-ae2b1c8c2e55", - "name" : "view-users", - "description" : "${role_view-users}", - "composite" : true, - "composites" : { - "client" : { - "realm-management" : [ "query-users", "query-groups" ] - } - }, - "clientRole" : true, - "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", - "attributes" : { } - }, { - "id" : "56382323-69f8-4eca-b433-aa14ccc83be3", - "name" : "manage-identity-providers", - "description" : "${role_manage-identity-providers}", - "composite" : false, - "clientRole" : true, - "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", - "attributes" : { } - }, { - "id" : "2db34bf8-3fac-4fb8-8ed4-b7f44cadcb2e", - "name" : "create-client", - "description" : "${role_create-client}", - "composite" : false, - "clientRole" : true, - "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", - "attributes" : { } - }, { - "id" : "ae7b03e5-747f-4341-8add-1c872658bec4", - "name" : "view-events", - "description" : "${role_view-events}", - "composite" : false, - "clientRole" : true, - "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", - "attributes" : { } - }, { - "id" : "a607a195-5e2c-4701-855d-d202ba52a313", - "name" : "manage-users", - "description" : "${role_manage-users}", - "composite" : false, - "clientRole" : true, - "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", - "attributes" : { } - }, { - "id" : "3f2bf59d-4b3f-425a-a75f-e6b8c6d27af0", - "name" : "view-realm", - "description" : "${role_view-realm}", - "composite" : false, - "clientRole" : true, - "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", - "attributes" : { } - }, { - "id" : "d23239ef-028a-4409-b965-e20ea6ac8795", - "name" : "impersonation", - "description" : "${role_impersonation}", - "composite" : false, - "clientRole" : true, - "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", - "attributes" : { } - }, { - "id" : "f724e1e9-a878-4ae3-9bc8-995767add1a3", - "name" : "manage-realm", - "description" : "${role_manage-realm}", - "composite" : false, - "clientRole" : true, - "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", - "attributes" : { } - }, { - "id" : "e6b7421d-7d5c-4f1c-bb48-0a873c9870c4", - "name" : "query-users", - "description" : "${role_query-users}", - "composite" : false, - "clientRole" : true, - "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", - "attributes" : { } - }, { - "id" : "7a81ec99-e710-409d-bd34-ae3642a1912d", - "name" : "view-identity-providers", - "description" : "${role_view-identity-providers}", - "composite" : false, - "clientRole" : true, - "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", - "attributes" : { } - }, { - "id" : "fbeca797-27ee-44a0-8566-bec5666e6bcc", - "name" : "query-groups", - "description" : "${role_query-groups}", - "composite" : false, - "clientRole" : true, - "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", - "attributes" : { } - }, { - "id" : "f9ea5c84-0690-47f4-b887-a3351ca800de", - "name" : "realm-admin", - "description" : "${role_realm-admin}", - "composite" : true, - "composites" : { - "client" : { - "realm-management" : [ "view-authorization", "manage-clients", "view-clients", "manage-authorization", "query-clients", "manage-events", "view-users", "query-realms", "manage-identity-providers", "create-client", "view-events", "view-realm", "manage-users", "impersonation", "manage-realm", "query-users", "view-identity-providers", "query-groups" ] - } - }, - "clientRole" : true, - "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", - "attributes" : { } - } ], - "api-swagger" : [ { - "id" : "a7aa8c9f-7cc5-4c91-8657-31b74ba02a1a", - "name" : "uma_protection", - "composite" : false, - "clientRole" : true, - "containerId" : "a08fc1fe-7c85-4c1c-9d04-604c6e35faa8", - "attributes" : { } - }, { - "id" : "88fa7113-8fd5-4dd4-940d-e0e2e06471d4", - "name" : "user", - "composite" : false, - "clientRole" : true, - "containerId" : "a08fc1fe-7c85-4c1c-9d04-604c6e35faa8", - "attributes" : { } - } ], - "cnl-editor-frontend" : [ { - "id" : "910ffe29-95b3-4b82-a734-b24bff7cfa8d", - "name" : "user", - "composite" : false, - "clientRole" : true, - "containerId" : "15a81bd1-4edd-4e2a-87ec-3bbcac30d2a3", - "attributes" : { } - } ], - "life-cycle-manager" : [ ], - "integrated-ui" : [ { - "id" : "258c00de-d88c-4239-908b-be79f895c3b0", - "name" : "user", - "composite" : false, - "clientRole" : true, - "containerId" : "1150f83f-37bc-4b14-98a0-e179aaee0f6c", - "attributes" : { } - }, { - "id" : "ae424f76-ac11-4a9b-939d-67ab55a0fc5a", - "name" : "admin", - "composite" : false, - "clientRole" : true, - "containerId" : "1150f83f-37bc-4b14-98a0-e179aaee0f6c", - "attributes" : { } - } ], - "ccd-client" : [ ], - "broker" : [ { - "id" : "381e01c5-2dce-4da6-854b-334d015e7224", - "name" : "read-token", - "description" : "${role_read-token}", - "composite" : false, - "clientRole" : true, - "containerId" : "8d1a867d-537c-433e-8234-b3582127cc54", - "attributes" : { } - } ], - "clouditor-ui" : [ ], - "raof" : [ { - "id" : "6de07826-dc41-4208-bc5e-8d64d38cfec2", - "name" : "engine", - "composite" : false, - "clientRole" : true, - "containerId" : "785a9f77-d06f-4a65-9ba9-341921fda61a", - "attributes" : { } - }, { - "id" : "9ecb4267-a5d3-421e-9aad-9b329fe4701d", - "name" : "uma_protection", - "composite" : false, - "clientRole" : true, - "containerId" : "785a9f77-d06f-4a65-9ba9-341921fda61a", - "attributes" : { } - } ], - "nl2cnl-translator-client" : [ { - "id" : "8fdf06d3-6c44-4aa3-bb0a-80dc589ced1c", - "name" : "uma_protection", - "composite" : false, - "clientRole" : true, - "containerId" : "9f7c65f7-9ae9-4c9e-9bd7-971d0cbe146d", - "attributes" : { } - }, { - "id" : "4486610d-0195-463c-bf2f-cf4cd10001c8", - "name" : "user", - "composite" : false, - "clientRole" : true, - "containerId" : "9f7c65f7-9ae9-4c9e-9bd7-971d0cbe146d", - "attributes" : { } - } ], - "catalogue-gateway" : [ ], - "clouditor-discovery" : [ ], - "account" : [ { - "id" : "ad76fbd3-fd48-4820-8454-c9e6e8b21da5", - "name" : "manage-consent", - "description" : "${role_manage-consent}", - "composite" : true, - "composites" : { - "client" : { - "account" : [ "view-consent" ] - } - }, - "clientRole" : true, - "containerId" : "8bd89baf-08f6-4e4b-8394-6b4dd6050ed2", - "attributes" : { } - }, { - "id" : "3cf9ad63-38af-430f-86da-bf7455dfb668", - "name" : "view-applications", - "description" : "${role_view-applications}", - "composite" : false, - "clientRole" : true, - "containerId" : "8bd89baf-08f6-4e4b-8394-6b4dd6050ed2", - "attributes" : { } - }, { - "id" : "a47fd133-6ba5-4870-af1b-9a17b76be404", - "name" : "view-consent", - "description" : "${role_view-consent}", - "composite" : false, - "clientRole" : true, - "containerId" : "8bd89baf-08f6-4e4b-8394-6b4dd6050ed2", - "attributes" : { } - }, { - "id" : "36ac4d35-7384-40c3-a877-7a2934bc9250", - "name" : "manage-account-links", - "description" : "${role_manage-account-links}", - "composite" : false, - "clientRole" : true, - "containerId" : "8bd89baf-08f6-4e4b-8394-6b4dd6050ed2", - "attributes" : { } - }, { - "id" : "3e5612a2-7c5c-4026-a6ac-7a332e266aab", - "name" : "manage-account", - "description" : "${role_manage-account}", - "composite" : true, - "composites" : { - "client" : { - "account" : [ "manage-account-links" ] - } - }, - "clientRole" : true, - "containerId" : "8bd89baf-08f6-4e4b-8394-6b4dd6050ed2", - "attributes" : { } - }, { - "id" : "1062c184-cad0-462d-ad3a-d51d5208536c", - "name" : "delete-account", - "description" : "${role_delete-account}", - "composite" : false, - "clientRole" : true, - "containerId" : "8bd89baf-08f6-4e4b-8394-6b4dd6050ed2", - "attributes" : { } - }, { - "id" : "d1a2381b-d165-43fb-a79d-8c614c46b96e", - "name" : "view-profile", - "description" : "${role_view-profile}", - "composite" : false, - "clientRole" : true, - "containerId" : "8bd89baf-08f6-4e4b-8394-6b4dd6050ed2", - "attributes" : { } - } ] - } - }, - "groups" : [ { - "id" : "b18d27ac-f4dc-4e3b-b488-e59e3af21eb5", - "name" : "TestCloudService", - "path" : "/TestCloudService", - "attributes" : { - "cloudserviceid" : [ "cf52d866-993f-11ec-b909-0242ac120002" ] - }, - "realmRoles" : [ ], - "clientRoles" : { }, - "subGroups" : [ ] - }, { - "id" : "fe88c642-63e3-4223-ab55-ded3d4edc650", - "name" : "TestCloudService2", - "path" : "/TestCloudService2", - "attributes" : { - "cloudserviceid" : [ "793dcdfe-9940-11ec-b909-0242ac120002" ] - }, - "realmRoles" : [ ], - "clientRoles" : { }, - "subGroups" : [ ] - } ], - "defaultRoles" : [ "offline_access", "uma_authorization" ], - "requiredCredentials" : [ "password" ], - "otpPolicyType" : "totp", - "otpPolicyAlgorithm" : "HmacSHA1", - "otpPolicyInitialCounter" : 0, - "otpPolicyDigits" : 6, - "otpPolicyLookAheadWindow" : 1, - "otpPolicyPeriod" : 30, - "otpSupportedApplications" : [ "FreeOTP", "Google Authenticator" ], - "webAuthnPolicyRpEntityName" : "keycloak", - "webAuthnPolicySignatureAlgorithms" : [ "ES256" ], - "webAuthnPolicyRpId" : "", - "webAuthnPolicyAttestationConveyancePreference" : "not specified", - "webAuthnPolicyAuthenticatorAttachment" : "not specified", - "webAuthnPolicyRequireResidentKey" : "not specified", - "webAuthnPolicyUserVerificationRequirement" : "not specified", - "webAuthnPolicyCreateTimeout" : 0, - "webAuthnPolicyAvoidSameAuthenticatorRegister" : false, - "webAuthnPolicyAcceptableAaguids" : [ ], - "webAuthnPolicyPasswordlessRpEntityName" : "keycloak", - "webAuthnPolicyPasswordlessSignatureAlgorithms" : [ "ES256" ], - "webAuthnPolicyPasswordlessRpId" : "", - "webAuthnPolicyPasswordlessAttestationConveyancePreference" : "not specified", - "webAuthnPolicyPasswordlessAuthenticatorAttachment" : "not specified", - "webAuthnPolicyPasswordlessRequireResidentKey" : "not specified", - "webAuthnPolicyPasswordlessUserVerificationRequirement" : "not specified", - "webAuthnPolicyPasswordlessCreateTimeout" : 0, - "webAuthnPolicyPasswordlessAvoidSameAuthenticatorRegister" : false, - "webAuthnPolicyPasswordlessAcceptableAaguids" : [ ], - "users" : [ { - "id" : "bb6244c3-35ec-4908-b4e0-73b159cc7a04", - "createdTimestamp" : 1646126460390, - "username" : "admin", - "enabled" : true, - "totp" : false, - "emailVerified" : true, - "firstName" : "admin", - "email" : "admin@localhost", - "credentials" : [ { - "id" : "4525a467-f0db-47e7-9f5a-edae4109844a", - "type" : "password", - "createdDate" : 1646126469027, - "secretData" : "{\"value\":\"BaRnqXmvxOYEu8fmlMYD+tpEIhbvW6m4KR9lzAl4f02Lt2WBUK2v7S/QobMoYEXqGWQxLpJnpsUcKlY9YGSiMw==\",\"salt\":\"rjK2JqIKXPdb1A03p8VcQw==\",\"additionalParameters\":{}}", - "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" - } ], - "disableableCredentialTypes" : [ ], - "requiredActions" : [ ], - "realmRoles" : [ "ROLE_USER", "offline_access", "Auditor", "uma_authorization", "ROLE_ADMIN", "Compliance Manager" ], - "clientRoles" : { - "raof" : [ "engine" ], - "integrated-ui" : [ "user" ], - "account" : [ "manage-account", "view-profile" ] - }, - "notBefore" : 0, - "groups" : [ "/TestCloudService2" ] - }, { - "id" : "08fbe789-4ada-4b3a-bcf1-dc20b469911b", - "createdTimestamp" : 1646739467160, - "username" : "amoe_test", - "enabled" : true, - "totp" : false, - "emailVerified" : false, - "credentials" : [ { - "id" : "da7be389-1b6a-42fa-8eb6-95fc83dc1cfa", - "type" : "password", - "createdDate" : 1646739496443, - "secretData" : "{\"value\":\"lTtYEaVM4t3lHrJFxAYu3MY54718QfBIva07Xd86InMCQE1D9jZY2bUCQJ15q+PdYerIU69YLRzXFkurv+BjLA==\",\"salt\":\"pKFJXLTaUzNsEouOGiIDVg==\",\"additionalParameters\":{}}", - "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" - } ], - "disableableCredentialTypes" : [ ], - "requiredActions" : [ ], - "realmRoles" : [ "offline_access", "uma_authorization" ], - "clientRoles" : { - "account" : [ "manage-account", "view-profile" ] - }, - "notBefore" : 0, - "groups" : [ ] - }, { - "id" : "5b083c04-bbda-48be-8441-fbe16968902b", - "createdTimestamp" : 1650710929018, - "username" : "cnr-user", - "enabled" : true, - "totp" : false, - "emailVerified" : false, - "firstName" : "Stefano", - "lastName" : "Fagnano", - "email" : "stefano.fagnano@me.com", - "credentials" : [ { - "id" : "fe14429e-56cf-4810-8ca2-7fab0ea81a80", - "type" : "password", - "createdDate" : 1650710973177, - "secretData" : "{\"value\":\"t+/Zdw3TRlptIsNjJh22t1t2rJmNsanwsZkqfgI0++tKxhnq8pMZCHmX8RTLuotokLNPjzC+oWTxpOjdQwJ5vg==\",\"salt\":\"7NvfqfUVIqeY9uVBwG5+kw==\",\"additionalParameters\":{}}", - "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" - } ], - "disableableCredentialTypes" : [ ], - "requiredActions" : [ ], - "realmRoles" : [ "offline_access", "uma_authorization" ], - "clientRoles" : { - "raof" : [ "engine" ], - "integrated-ui" : [ "user" ], - "account" : [ "manage-account", "view-profile" ] - }, - "notBefore" : 0, - "groups" : [ ] - }, { - "id" : "1247915b-d17c-4b5b-aad6-889c24225420", - "createdTimestamp" : 1646842473867, - "username" : "fabasoftpe", - "enabled" : true, - "totp" : false, - "emailVerified" : false, - "credentials" : [ { - "id" : "99ea9dc6-b4b3-4e0b-8aa9-2ecf58daa670", - "type" : "password", - "createdDate" : 1646842549296, - "secretData" : "{\"value\":\"rjCSXoy+G2SbrGgLqP8Qtx9eJYGheRLzVaZ2W7tZ7SO14I9K7W0GZFK7gg/wwZe7fNCT4c+kTWuuK42cR7JAiA==\",\"salt\":\"ViuDtUVx++5GGlqT+Kajvg==\",\"additionalParameters\":{}}", - "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" - } ], - "disableableCredentialTypes" : [ ], - "requiredActions" : [ ], - "realmRoles" : [ "offline_access", "uma_authorization", "Compliance Manager" ], - "clientRoles" : { - "account" : [ "manage-account", "view-profile" ] - }, - "notBefore" : 0, - "groups" : [ ] - }, { - "id" : "dbdb2c43-a90d-4bd8-a29a-c23d00e8a5fc", - "createdTimestamp" : 1646842573862, - "username" : "lawexpert", - "enabled" : true, - "totp" : false, - "emailVerified" : false, - "credentials" : [ { - "id" : "47c67cc2-9fec-471f-aee3-b93cb8fb50d4", - "type" : "password", - "createdDate" : 1646842584938, - "secretData" : "{\"value\":\"4u0v3JqYQ/m7qYSuG8gcxfdMveQyTLkOK1t9YTXsdH9b6XWmcmx+eemKvvZzlhGLrZ2JoyRv3Emr7E3gacWvbw==\",\"salt\":\"hKwIjTGtDpDCPw0r7xFMyA==\",\"additionalParameters\":{}}", - "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" - } ], - "disableableCredentialTypes" : [ ], - "requiredActions" : [ ], - "realmRoles" : [ "offline_access", "uma_authorization", "Compliance Manager" ], - "clientRoles" : { - "account" : [ "manage-account", "view-profile" ] - }, - "notBefore" : 0, - "groups" : [ ] - }, { - "id" : "5459884f-0e81-4541-b0f7-039143074658", - "createdTimestamp" : 1647939833771, - "username" : "nl2cnl_test", - "enabled" : true, - "totp" : false, - "emailVerified" : false, - "credentials" : [ { - "id" : "4e0de4fc-6cc3-41d8-a47c-f227054b51c8", - "type" : "password", - "createdDate" : 1647967133486, - "secretData" : "{\"value\":\"X93ciaDawh7DTl22Z7IUFdC5frMNfPQf20ozhaUjMVHg0yXsQyG16kZVY7BfTWj43CamWVxnJ3fAJ3nm/DjGmA==\",\"salt\":\"bHm4jda9dLNZLfl5wjYZoQ==\",\"additionalParameters\":{}}", - "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" - } ], - "disableableCredentialTypes" : [ ], - "requiredActions" : [ ], - "realmRoles" : [ "offline_access", "uma_authorization" ], - "clientRoles" : { - "account" : [ "manage-account", "view-profile" ] - }, - "notBefore" : 0, - "groups" : [ ] - }, { - "id" : "bb6d0c7f-e4ea-4f42-9375-f741b1ebac97", - "createdTimestamp" : 1646841881112, - "username" : "policyexpert", - "enabled" : true, - "totp" : false, - "emailVerified" : false, - "credentials" : [ { - "id" : "f9c4ca91-072f-418e-8bfb-0ef499620490", - "type" : "password", - "createdDate" : 1646841889121, - "secretData" : "{\"value\":\"6OlHWWs4Bad2qqMXi7PdiCAsNLjQTmbhgssnGuFAlTeMJeI/k48B8ahGyrJ2RYO4WcM29yBCEBZoZOWx7QUXEQ==\",\"salt\":\"FUl+Hwy2OqSWb+po3PvAGQ==\",\"additionalParameters\":{}}", - "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" - } ], - "disableableCredentialTypes" : [ ], - "requiredActions" : [ ], - "realmRoles" : [ "offline_access", "uma_authorization", "Compliance Manager" ], - "clientRoles" : { - "account" : [ "manage-account", "view-profile" ] - }, - "notBefore" : 0, - "groups" : [ ] - }, { - "id" : "7fcfeba8-2512-4c10-b1e8-fac6d623a83e", - "createdTimestamp" : 1647940816157, - "username" : "service-account-admin-cli", - "enabled" : true, - "totp" : false, - "emailVerified" : false, - "serviceAccountClientId" : "admin-cli", - "credentials" : [ ], - "disableableCredentialTypes" : [ ], - "requiredActions" : [ ], - "realmRoles" : [ "offline_access", "uma_authorization" ], - "clientRoles" : { - "account" : [ "manage-account", "view-profile" ] - }, - "notBefore" : 0, - "groups" : [ ] - }, { - "id" : "465eb553-71ea-47bb-8557-3753e1679b0b", - "createdTimestamp" : 1648629087836, - "username" : "service-account-api-swagger", - "enabled" : true, - "totp" : false, - "emailVerified" : false, - "serviceAccountClientId" : "api-swagger", - "credentials" : [ ], - "disableableCredentialTypes" : [ ], - "requiredActions" : [ ], - "realmRoles" : [ "offline_access", "uma_authorization" ], - "clientRoles" : { - "api-swagger" : [ "uma_protection" ], - "account" : [ "manage-account", "view-profile" ] - }, - "notBefore" : 0, - "groups" : [ ] - }, { - "id" : "4ccb51e5-5911-4052-914b-41120086c8ef", - "createdTimestamp" : 1648043982626, - "username" : "service-account-catalogue-backend", - "enabled" : true, - "totp" : false, - "emailVerified" : false, - "serviceAccountClientId" : "catalogue-backend", - "credentials" : [ ], - "disableableCredentialTypes" : [ ], - "requiredActions" : [ ], - "realmRoles" : [ "offline_access", "uma_authorization" ], - "clientRoles" : { - "account" : [ "manage-account", "view-profile" ] - }, - "notBefore" : 0, - "groups" : [ ] - }, { - "id" : "72b2d795-8d27-4aa7-a935-4c1ce274f27d", - "createdTimestamp" : 1650355454172, - "username" : "service-account-cce-dev", - "enabled" : true, - "totp" : false, - "emailVerified" : false, - "serviceAccountClientId" : "cce-dev", - "credentials" : [ ], - "disableableCredentialTypes" : [ ], - "requiredActions" : [ ], - "realmRoles" : [ "offline_access", "uma_authorization" ], - "clientRoles" : { - "cce-dev" : [ "uma_protection" ], - "account" : [ "manage-account", "view-profile" ] - }, - "notBefore" : 0, - "groups" : [ ] - }, { - "id" : "4aafc668-9855-44b2-a079-a271a3c4a515", - "createdTimestamp" : 1646860326928, - "username" : "service-account-clouditor-assessment", - "enabled" : true, - "totp" : false, - "emailVerified" : false, - "serviceAccountClientId" : "clouditor-assessment", - "credentials" : [ ], - "disableableCredentialTypes" : [ ], - "requiredActions" : [ ], - "realmRoles" : [ "offline_access", "uma_authorization" ], - "clientRoles" : { - "account" : [ "manage-account", "view-profile" ] - }, - "notBefore" : 0, - "groups" : [ ] - }, { - "id" : "89145876-b402-435f-bcfc-1a5da1f948ac", - "createdTimestamp" : 1646860316152, - "username" : "service-account-clouditor-discovery", - "enabled" : true, - "totp" : false, - "emailVerified" : false, - "serviceAccountClientId" : "clouditor-discovery", - "credentials" : [ ], - "disableableCredentialTypes" : [ ], - "requiredActions" : [ ], - "realmRoles" : [ "offline_access", "uma_authorization" ], - "clientRoles" : { - "account" : [ "manage-account", "view-profile" ] - }, - "notBefore" : 0, - "groups" : [ ] - }, { - "id" : "a5916f7c-3494-4b8b-a899-d6424762a7e8", - "createdTimestamp" : 1646917353062, - "username" : "service-account-codyze", - "enabled" : true, - "totp" : false, - "emailVerified" : false, - "serviceAccountClientId" : "codyze", - "credentials" : [ ], - "disableableCredentialTypes" : [ ], - "requiredActions" : [ ], - "realmRoles" : [ "offline_access", "uma_authorization" ], - "clientRoles" : { - "account" : [ "manage-account", "view-profile" ] - }, - "notBefore" : 0, - "groups" : [ ] - }, { - "id" : "6e8ff208-0ede-436c-b1ee-b853d33c3d81", - "createdTimestamp" : 1646998107929, - "username" : "service-account-life-cycle-manager", - "enabled" : true, - "totp" : false, - "emailVerified" : false, - "serviceAccountClientId" : "life-cycle-manager", - "credentials" : [ ], - "disableableCredentialTypes" : [ ], - "requiredActions" : [ ], - "realmRoles" : [ "offline_access", "uma_authorization" ], - "clientRoles" : { - "account" : [ "manage-account", "view-profile" ] - }, - "notBefore" : 0, - "groups" : [ ] - }, { - "id" : "7cdaece4-9f13-4a89-9e46-f56a3cee862e", - "createdTimestamp" : 1647940729928, - "username" : "service-account-nl2cnl-translator-client", - "enabled" : true, - "totp" : false, - "emailVerified" : false, - "serviceAccountClientId" : "nl2cnl-translator-client", - "credentials" : [ ], - "disableableCredentialTypes" : [ ], - "requiredActions" : [ ], - "realmRoles" : [ "offline_access", "uma_authorization" ], - "clientRoles" : { - "nl2cnl-translator-client" : [ "uma_protection" ], - "account" : [ "manage-account", "view-profile" ] - }, - "notBefore" : 0, - "groups" : [ ] - }, { - "id" : "20913f11-a80b-4b95-9e9c-3b7318275a9f", - "createdTimestamp" : 1650445410351, - "username" : "service-account-raof", - "enabled" : true, - "totp" : false, - "emailVerified" : false, - "serviceAccountClientId" : "raof", - "credentials" : [ ], - "disableableCredentialTypes" : [ ], - "requiredActions" : [ ], - "realmRoles" : [ "offline_access", "uma_authorization" ], - "clientRoles" : { - "raof" : [ "uma_protection" ], - "account" : [ "manage-account", "view-profile" ] - }, - "notBefore" : 0, - "groups" : [ ] - }, { - "id" : "43256450-bcb4-4115-ae7b-952462768dde", - "createdTimestamp" : 1650957338070, - "username" : "service-account-raof-app", - "enabled" : true, - "totp" : false, - "emailVerified" : false, - "serviceAccountClientId" : "raof-app", - "credentials" : [ ], - "disableableCredentialTypes" : [ ], - "requiredActions" : [ ], - "realmRoles" : [ "offline_access", "uma_authorization" ], - "clientRoles" : { - "raof-app" : [ "uma_protection" ], - "account" : [ "manage-account", "view-profile" ] - }, - "notBefore" : 0, - "groups" : [ ] - }, { - "id" : "d12a0ea0-d7d4-4194-b8f7-6e1190bbfcff", - "createdTimestamp" : 1650377634668, - "username" : "service-account-wazuh-vat-evidence-collector-dev", - "enabled" : true, - "totp" : false, - "emailVerified" : false, - "serviceAccountClientId" : "wazuh-vat-evidence-collector-dev", - "credentials" : [ ], - "disableableCredentialTypes" : [ ], - "requiredActions" : [ ], - "realmRoles" : [ "offline_access", "uma_authorization" ], - "clientRoles" : { - "wazuh-vat-evidence-collector-dev" : [ "uma_protection" ], - "account" : [ "manage-account", "view-profile" ] - }, - "notBefore" : 0, - "groups" : [ ] - }, { - "id" : "388c9e25-e443-4e6f-b99d-0eafe23def6d", - "createdTimestamp" : 1649755577157, - "username" : "tqqyslvjxn8oaaxkrkukjemcx3dfuu4muiukirgxgf8=", - "enabled" : true, - "totp" : false, - "emailVerified" : false, - "firstName" : "Patrick", - "lastName" : "Weiss", - "email" : "patrick.weiss3@de.bosch.com", - "credentials" : [ ], - "disableableCredentialTypes" : [ ], - "requiredActions" : [ ], - "federatedIdentities" : [ { - "identityProvider" : "oidc", - "userId" : "TQQySlVjXN8OaaXkrKUKJEMCx3dfuu4MuIuKiRgXgF8=", - "userName" : "tqqyslvjxn8oaaxkrkukjemcx3dfuu4muiukirgxgf8=" - } ], - "realmRoles" : [ "offline_access", "uma_authorization", "Compliance Manager" ], - "clientRoles" : { - "integrated-ui" : [ "user", "admin" ], - "account" : [ "manage-account", "view-profile" ] - }, - "notBefore" : 0, - "groups" : [ ] - }, { - "id" : "a2d9c454-960f-47e9-860e-e1876cdd81e7", - "createdTimestamp" : 1648054983093, - "username" : "user", - "enabled" : true, - "totp" : false, - "emailVerified" : false, - "firstName" : "U.", - "lastName" : "Ser", - "email" : "user@localhost", - "credentials" : [ { - "id" : "b6a60d24-da76-47f4-a07b-885bac646b7a", - "type" : "password", - "createdDate" : 1650406346090, - "secretData" : "{\"value\":\"NTNpm0k7ky3gLf9pcYTklGY8qn0LPwCrhUYu94nhHVUl1vp5IHb5eSjgFJjpFaKKObNDcz7qJFWjyJ/mWCtwGA==\",\"salt\":\"fQAJhWFTktzewkFQ5ypbRQ==\",\"additionalParameters\":{}}", - "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" - } ], - "disableableCredentialTypes" : [ ], - "requiredActions" : [ ], - "realmRoles" : [ "ROLE_USER", "offline_access", "Auditor", "uma_authorization" ], - "clientRoles" : { - "account" : [ "manage-account", "view-profile" ] - }, - "notBefore" : 0, - "groups" : [ ] - } ], - "scopeMappings" : [ { - "clientScope" : "offline_access", - "roles" : [ "offline_access" ] - } ], - "clientScopeMappings" : { - "account" : [ { - "client" : "account-console", - "roles" : [ "manage-account" ] - } ] - }, - "clients" : [ { - "id" : "8bd89baf-08f6-4e4b-8394-6b4dd6050ed2", - "clientId" : "account", - "name" : "${client_account}", - "rootUrl" : "${authBaseUrl}", - "baseUrl" : "/realms/medina/account/", - "surrogateAuthRequired" : false, - "enabled" : true, - "alwaysDisplayInConsole" : false, - "clientAuthenticatorType" : "client-secret", - "secret" : "533f8bfc-73ca-4950-a17e-29510052e70a", - "defaultRoles" : [ "manage-account", "view-profile" ], - "redirectUris" : [ "/realms/medina/account/*" ], - "webOrigins" : [ ], - "notBefore" : 0, - "bearerOnly" : false, - "consentRequired" : false, - "standardFlowEnabled" : true, - "implicitFlowEnabled" : false, - "directAccessGrantsEnabled" : false, - "serviceAccountsEnabled" : false, - "publicClient" : false, - "frontchannelLogout" : false, - "protocol" : "openid-connect", - "attributes" : { }, - "authenticationFlowBindingOverrides" : { }, - "fullScopeAllowed" : false, - "nodeReRegistrationTimeout" : 0, - "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], - "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] - }, { - "id" : "8f7fee7a-d32e-4c08-85fd-0a92ace43970", - "clientId" : "account-console", - "name" : "${client_account-console}", - "rootUrl" : "${authBaseUrl}", - "baseUrl" : "/realms/medina/account/", - "surrogateAuthRequired" : false, - "enabled" : true, - "alwaysDisplayInConsole" : false, - "clientAuthenticatorType" : "client-secret", - "secret" : "0ffbdc8a-e2b4-4693-abc0-cf08d0a3127e", - "redirectUris" : [ "/realms/medina/account/*" ], - "webOrigins" : [ ], - "notBefore" : 0, - "bearerOnly" : false, - "consentRequired" : false, - "standardFlowEnabled" : true, - "implicitFlowEnabled" : false, - "directAccessGrantsEnabled" : false, - "serviceAccountsEnabled" : false, - "publicClient" : true, - "frontchannelLogout" : false, - "protocol" : "openid-connect", - "attributes" : { - "pkce.code.challenge.method" : "S256" - }, - "authenticationFlowBindingOverrides" : { }, - "fullScopeAllowed" : false, - "nodeReRegistrationTimeout" : 0, - "protocolMappers" : [ { - "id" : "edc42cad-bd34-4811-8354-0adaee774340", - "name" : "audience resolve", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-audience-resolve-mapper", - "consentRequired" : false, - "config" : { } - } ], - "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], - "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] - }, { - "id" : "24244b46-4845-4734-a061-bcb8ec91b84c", - "clientId" : "admin-cli", - "name" : "${client_admin-cli}", - "surrogateAuthRequired" : false, - "enabled" : true, - "alwaysDisplayInConsole" : false, - "clientAuthenticatorType" : "client-secret", - "secret" : "c29d2164-1f3d-476b-951c-c5eea7518fd6", - "redirectUris" : [ ], - "webOrigins" : [ ], - "notBefore" : 0, - "bearerOnly" : false, - "consentRequired" : false, - "standardFlowEnabled" : false, - "implicitFlowEnabled" : false, - "directAccessGrantsEnabled" : true, - "serviceAccountsEnabled" : true, - "publicClient" : false, - "frontchannelLogout" : false, - "protocol" : "openid-connect", - "attributes" : { - "saml.assertion.signature" : "false", - "saml.force.post.binding" : "false", - "saml.multivalued.roles" : "false", - "saml.encrypt" : "false", - "backchannel.logout.revoke.offline.tokens" : "false", - "saml.server.signature" : "false", - "saml.server.signature.keyinfo.ext" : "false", - "exclude.session.state.from.auth.response" : "false", - "backchannel.logout.session.required" : "false", - "client_credentials.use_refresh_token" : "false", - "saml_force_name_id_format" : "false", - "saml.client.signature" : "false", - "tls.client.certificate.bound.access.tokens" : "false", - "saml.authnstatement" : "false", - "display.on.consent.screen" : "false", - "saml.onetimeuse.condition" : "false" - }, - "authenticationFlowBindingOverrides" : { }, - "fullScopeAllowed" : true, - "nodeReRegistrationTimeout" : 0, - "protocolMappers" : [ { - "id" : "8b8f8749-0adc-492d-a73d-3029413881be", - "name" : "Client ID", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientId", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientId", - "jsonType.label" : "String" - } - }, { - "id" : "6117fb7e-ecbe-4f0f-90da-d5a5c805e5d7", - "name" : "Client IP Address", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientAddress", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientAddress", - "jsonType.label" : "String" - } - }, { - "id" : "786a08b5-a459-43d0-b0d4-1d45a084a14a", - "name" : "Client Host", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientHost", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientHost", - "jsonType.label" : "String" - } - } ], - "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], - "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] - }, { - "id" : "a25b15fc-202b-4dc6-9340-fcc94f491a24", - "clientId" : "amoe-client", - "rootUrl" : "https://api-assessment-and-management-of-organisational-evidences-test.k8s.medina.esilab.org/", - "adminUrl" : "https://api-assessment-and-management-of-organisational-evidences-test.k8s.medina.esilab.org/", - "surrogateAuthRequired" : false, - "enabled" : true, - "alwaysDisplayInConsole" : false, - "clientAuthenticatorType" : "client-secret", - "secret" : "54d58c5f-dfd7-4902-819c-5b316ca13770", - "redirectUris" : [ "*" ], - "webOrigins" : [ "*" ], - "notBefore" : 0, - "bearerOnly" : false, - "consentRequired" : false, - "standardFlowEnabled" : true, - "implicitFlowEnabled" : false, - "directAccessGrantsEnabled" : true, - "serviceAccountsEnabled" : false, - "publicClient" : false, - "frontchannelLogout" : false, - "protocol" : "openid-connect", - "attributes" : { - "saml.assertion.signature" : "false", - "saml.force.post.binding" : "false", - "saml.multivalued.roles" : "false", - "saml.encrypt" : "false", - "backchannel.logout.revoke.offline.tokens" : "false", - "saml.server.signature" : "false", - "saml.server.signature.keyinfo.ext" : "false", - "exclude.session.state.from.auth.response" : "false", - "backchannel.logout.session.required" : "true", - "client_credentials.use_refresh_token" : "false", - "saml_force_name_id_format" : "false", - "saml.client.signature" : "false", - "tls.client.certificate.bound.access.tokens" : "false", - "saml.authnstatement" : "false", - "display.on.consent.screen" : "false", - "saml.onetimeuse.condition" : "false" - }, - "authenticationFlowBindingOverrides" : { }, - "fullScopeAllowed" : true, - "nodeReRegistrationTimeout" : -1, - "protocolMappers" : [ { - "id" : "7adfc5e5-5248-4737-8b84-78567a897980", - "name" : "Client Host", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientHost", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientHost", - "jsonType.label" : "String" - } - }, { - "id" : "f96e6e25-77e4-4ffe-a4ca-5081f6dd3488", - "name" : "Client ID", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientId", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientId", - "jsonType.label" : "String" - } - }, { - "id" : "0078d78f-a368-41c5-9c41-16ba08b0dd64", - "name" : "Client IP Address", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientAddress", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientAddress", - "jsonType.label" : "String" - } - } ], - "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], - "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] - }, { - "id" : "a08fc1fe-7c85-4c1c-9d04-604c6e35faa8", - "clientId" : "api-swagger", - "rootUrl" : "https://api-swagger-test.k8s.medina.esilab.org", - "adminUrl" : "https://api-swagger-test.k8s.medina.esilab.org", - "surrogateAuthRequired" : false, - "enabled" : true, - "alwaysDisplayInConsole" : false, - "clientAuthenticatorType" : "client-secret", - "secret" : "c29a5cf2-52c0-4fa2-89fc-8951fa80ce84", - "redirectUris" : [ "https://api-swagger-test.k8s.medina.esilab.org/*" ], - "webOrigins" : [ "https://api-swagger-test.k8s.medina.esilab.org" ], - "notBefore" : 0, - "bearerOnly" : false, - "consentRequired" : false, - "standardFlowEnabled" : true, - "implicitFlowEnabled" : false, - "directAccessGrantsEnabled" : true, - "serviceAccountsEnabled" : true, - "authorizationServicesEnabled" : true, - "publicClient" : false, - "frontchannelLogout" : false, - "protocol" : "openid-connect", - "attributes" : { - "saml.assertion.signature" : "false", - "saml.force.post.binding" : "false", - "saml.multivalued.roles" : "false", - "saml.encrypt" : "false", - "backchannel.logout.revoke.offline.tokens" : "false", - "saml.server.signature" : "false", - "saml.server.signature.keyinfo.ext" : "false", - "exclude.session.state.from.auth.response" : "false", - "backchannel.logout.session.required" : "true", - "client_credentials.use_refresh_token" : "false", - "saml_force_name_id_format" : "false", - "saml.client.signature" : "false", - "tls.client.certificate.bound.access.tokens" : "false", - "saml.authnstatement" : "false", - "display.on.consent.screen" : "false", - "saml.onetimeuse.condition" : "false" - }, - "authenticationFlowBindingOverrides" : { }, - "fullScopeAllowed" : true, - "nodeReRegistrationTimeout" : -1, - "protocolMappers" : [ { - "id" : "a1b33188-ca81-44c0-ba56-772581a94038", - "name" : "Client IP Address", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientAddress", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientAddress", - "jsonType.label" : "String" - } - }, { - "id" : "7455b7e4-2b73-4a6d-b7e6-8434370a7a85", - "name" : "Client Host", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientHost", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientHost", - "jsonType.label" : "String" - } - }, { - "id" : "d9167dc9-6937-4bea-bc20-6e885857ccd0", - "name" : "Client ID", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientId", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientId", - "jsonType.label" : "String" - } - } ], - "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], - "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ], - "authorizationSettings" : { - "allowRemoteResourceManagement" : true, - "policyEnforcementMode" : "ENFORCING", - "resources" : [ { - "name" : "Default Resource", - "type" : "urn:api-swagger:resources:default", - "ownerManagedAccess" : false, - "attributes" : { }, - "_id" : "b8d55282-f977-4e89-9e8e-2b3e8ef07200", - "uris" : [ "/*" ] - } ], - "policies" : [ { - "id" : "9dc0a736-90a6-4428-be5a-0695b9153f93", - "name" : "Default Policy", - "description" : "A policy that grants access only for users within this realm", - "type" : "js", - "logic" : "POSITIVE", - "decisionStrategy" : "AFFIRMATIVE", - "config" : { - "code" : "// by default, grants any permission associated with this policy\n$evaluation.grant();\n" - } - }, { - "id" : "4058b893-6396-4351-ae9c-e4ecf5329d18", - "name" : "Default Permission", - "description" : "A permission that applies to the default resource type", - "type" : "resource", - "logic" : "POSITIVE", - "decisionStrategy" : "UNANIMOUS", - "config" : { - "defaultResourceType" : "urn:api-swagger:resources:default", - "applyPolicies" : "[\"Default Policy\"]" - } - } ], - "scopes" : [ ], - "decisionStrategy" : "UNANIMOUS" - } - }, { - "id" : "8d1a867d-537c-433e-8234-b3582127cc54", - "clientId" : "broker", - "name" : "${client_broker}", - "surrogateAuthRequired" : false, - "enabled" : true, - "alwaysDisplayInConsole" : false, - "clientAuthenticatorType" : "client-secret", - "secret" : "4293f846-3a76-4628-a9a4-810bebcdc51b", - "redirectUris" : [ ], - "webOrigins" : [ ], - "notBefore" : 0, - "bearerOnly" : false, - "consentRequired" : false, - "standardFlowEnabled" : true, - "implicitFlowEnabled" : false, - "directAccessGrantsEnabled" : false, - "serviceAccountsEnabled" : false, - "publicClient" : false, - "frontchannelLogout" : false, - "protocol" : "openid-connect", - "attributes" : { }, - "authenticationFlowBindingOverrides" : { }, - "fullScopeAllowed" : false, - "nodeReRegistrationTimeout" : 0, - "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], - "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] - }, { - "id" : "df274002-83dd-4c7f-b64b-8cf7b90d9a97", - "clientId" : "catalogue-backend", - "surrogateAuthRequired" : false, - "enabled" : true, - "alwaysDisplayInConsole" : false, - "clientAuthenticatorType" : "client-secret", - "secret" : "47b59168-f965-4a6f-941c-ae7ee1ba463c", - "redirectUris" : [ ], - "webOrigins" : [ ], - "notBefore" : 0, - "bearerOnly" : false, - "consentRequired" : false, - "standardFlowEnabled" : false, - "implicitFlowEnabled" : false, - "directAccessGrantsEnabled" : false, - "serviceAccountsEnabled" : true, - "publicClient" : false, - "frontchannelLogout" : false, - "protocol" : "openid-connect", - "attributes" : { - "saml.assertion.signature" : "false", - "saml.force.post.binding" : "false", - "saml.multivalued.roles" : "false", - "saml.encrypt" : "false", - "backchannel.logout.revoke.offline.tokens" : "false", - "saml.server.signature" : "false", - "saml.server.signature.keyinfo.ext" : "false", - "exclude.session.state.from.auth.response" : "false", - "backchannel.logout.session.required" : "true", - "client_credentials.use_refresh_token" : "false", - "saml_force_name_id_format" : "false", - "saml.client.signature" : "false", - "tls.client.certificate.bound.access.tokens" : "false", - "saml.authnstatement" : "false", - "display.on.consent.screen" : "false", - "saml.onetimeuse.condition" : "false" - }, - "authenticationFlowBindingOverrides" : { }, - "fullScopeAllowed" : true, - "nodeReRegistrationTimeout" : -1, - "protocolMappers" : [ { - "id" : "6ea5df11-551c-44e4-a4e7-74e787bea43e", - "name" : "Client Host", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientHost", - "userinfo.token.claim" : "true", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientHost", - "jsonType.label" : "String" - } - }, { - "id" : "0544b98a-f678-4395-b3cf-bdb0529a5661", - "name" : "Client IP Address", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientAddress", - "userinfo.token.claim" : "true", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientAddress", - "jsonType.label" : "String" - } - }, { - "id" : "adace2ba-512e-4856-a187-75031220377d", - "name" : "Client ID", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientId", - "userinfo.token.claim" : "true", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientId", - "jsonType.label" : "String" - } - } ], - "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], - "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] - }, { - "id" : "fa074dc3-e8de-4f34-9437-dc5d93f60f9a", - "clientId" : "catalogue-gateway", - "rootUrl" : "https://catalogue-test.k8s.medina.esilab.org", - "adminUrl" : "https://catalogue-test.k8s.medina.esilab.org", - "surrogateAuthRequired" : false, - "enabled" : true, - "alwaysDisplayInConsole" : false, - "clientAuthenticatorType" : "client-secret", - "secret" : "1895c8be-10f2-4243-a7da-8443aa1a2851", - "redirectUris" : [ "*" ], - "webOrigins" : [ "*" ], - "notBefore" : 0, - "bearerOnly" : false, - "consentRequired" : false, - "standardFlowEnabled" : true, - "implicitFlowEnabled" : true, - "directAccessGrantsEnabled" : false, - "serviceAccountsEnabled" : false, - "publicClient" : true, - "frontchannelLogout" : false, - "protocol" : "openid-connect", - "attributes" : { - "saml.assertion.signature" : "false", - "saml.force.post.binding" : "false", - "saml.multivalued.roles" : "false", - "saml.encrypt" : "false", - "backchannel.logout.revoke.offline.tokens" : "false", - "saml.server.signature" : "false", - "saml.server.signature.keyinfo.ext" : "false", - "exclude.session.state.from.auth.response" : "false", - "backchannel.logout.session.required" : "true", - "client_credentials.use_refresh_token" : "false", - "saml_force_name_id_format" : "false", - "saml.client.signature" : "false", - "tls.client.certificate.bound.access.tokens" : "false", - "saml.authnstatement" : "false", - "display.on.consent.screen" : "false", - "saml.onetimeuse.condition" : "false" - }, - "authenticationFlowBindingOverrides" : { }, - "fullScopeAllowed" : true, - "nodeReRegistrationTimeout" : -1, - "defaultClientScopes" : [ "web-origins", "jhipster", "role_list", "profile", "roles", "email" ], - "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] - }, { - "id" : "b7769853-8605-4a36-9352-7633d3be0f22", - "clientId" : "catalogue-jhipster-control-center", - "rootUrl" : "http://localhost:7419", - "adminUrl" : "http://localhost:7419", - "surrogateAuthRequired" : false, - "enabled" : true, - "alwaysDisplayInConsole" : false, - "clientAuthenticatorType" : "client-secret", - "secret" : "a77e5efc-e542-4ed2-b8a2-535fe4c4fb34", - "redirectUris" : [ "dev.localhost.ionic:*", "http://127.0.0.1:*", "http://localhost:*", "https://127.0.0.1:*", "https://localhost:*" ], - "webOrigins" : [ "*" ], - "notBefore" : 0, - "bearerOnly" : false, - "consentRequired" : false, - "standardFlowEnabled" : true, - "implicitFlowEnabled" : true, - "directAccessGrantsEnabled" : false, - "serviceAccountsEnabled" : false, - "publicClient" : true, - "frontchannelLogout" : false, - "protocol" : "openid-connect", - "attributes" : { - "saml.assertion.signature" : "false", - "saml.force.post.binding" : "false", - "saml.multivalued.roles" : "false", - "saml.encrypt" : "false", - "backchannel.logout.revoke.offline.tokens" : "false", - "saml.server.signature" : "false", - "saml.server.signature.keyinfo.ext" : "false", - "exclude.session.state.from.auth.response" : "false", - "backchannel.logout.session.required" : "true", - "saml_force_name_id_format" : "false", - "saml.client.signature" : "false", - "tls.client.certificate.bound.access.tokens" : "false", - "saml.authnstatement" : "false", - "display.on.consent.screen" : "false", - "saml.onetimeuse.condition" : "false" - }, - "authenticationFlowBindingOverrides" : { }, - "fullScopeAllowed" : true, - "nodeReRegistrationTimeout" : -1, - "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], - "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] - }, { - "id" : "645cf799-be24-42fd-a169-f9d5fc39be31", - "clientId" : "catalogue-registry", - "rootUrl" : "https://catalogue-registry-test.k8s.medina.esilab.org", - "adminUrl" : "https://catalogue-registry-test.k8s.medina.esilab.org", - "surrogateAuthRequired" : false, - "enabled" : true, - "alwaysDisplayInConsole" : false, - "clientAuthenticatorType" : "client-secret", - "secret" : "ff31a06d-d850-48d2-8355-6723e856c1b6", - "redirectUris" : [ "*" ], - "webOrigins" : [ "*" ], - "notBefore" : 0, - "bearerOnly" : false, - "consentRequired" : false, - "standardFlowEnabled" : true, - "implicitFlowEnabled" : false, - "directAccessGrantsEnabled" : true, - "serviceAccountsEnabled" : false, - "publicClient" : true, - "frontchannelLogout" : false, - "protocol" : "openid-connect", - "attributes" : { - "saml.assertion.signature" : "false", - "saml.force.post.binding" : "false", - "saml.multivalued.roles" : "false", - "saml.encrypt" : "false", - "backchannel.logout.revoke.offline.tokens" : "false", - "saml.server.signature" : "false", - "saml.server.signature.keyinfo.ext" : "false", - "exclude.session.state.from.auth.response" : "false", - "backchannel.logout.session.required" : "true", - "saml_force_name_id_format" : "false", - "saml.client.signature" : "false", - "tls.client.certificate.bound.access.tokens" : "false", - "saml.authnstatement" : "false", - "display.on.consent.screen" : "false", - "saml.onetimeuse.condition" : "false" - }, - "authenticationFlowBindingOverrides" : { }, - "fullScopeAllowed" : true, - "nodeReRegistrationTimeout" : -1, - "defaultClientScopes" : [ "web-origins", "jhipster", "role_list", "roles", "profile", "email" ], - "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] - }, { - "id" : "12d63192-94cd-4692-b557-ab76a331eaa6", - "clientId" : "ccd-client", - "name" : "Company compliance dashboard", - "surrogateAuthRequired" : false, - "enabled" : true, - "alwaysDisplayInConsole" : false, - "clientAuthenticatorType" : "client-secret", - "secret" : "cc728558-1c40-48ae-8be4-e48b582a727a", - "redirectUris" : [ "http://localhost:8080/" ], - "webOrigins" : [ ], - "notBefore" : 0, - "bearerOnly" : false, - "consentRequired" : false, - "standardFlowEnabled" : true, - "implicitFlowEnabled" : false, - "directAccessGrantsEnabled" : true, - "serviceAccountsEnabled" : false, - "publicClient" : false, - "frontchannelLogout" : false, - "protocol" : "openid-connect", - "attributes" : { - "saml.assertion.signature" : "false", - "saml.force.post.binding" : "false", - "saml.multivalued.roles" : "false", - "saml.encrypt" : "false", - "backchannel.logout.revoke.offline.tokens" : "false", - "saml.server.signature" : "false", - "saml.server.signature.keyinfo.ext" : "false", - "exclude.session.state.from.auth.response" : "false", - "backchannel.logout.session.required" : "true", - "client_credentials.use_refresh_token" : "false", - "saml_force_name_id_format" : "false", - "saml.client.signature" : "false", - "tls.client.certificate.bound.access.tokens" : "false", - "saml.authnstatement" : "false", - "display.on.consent.screen" : "false", - "saml.onetimeuse.condition" : "false" - }, - "authenticationFlowBindingOverrides" : { }, - "fullScopeAllowed" : true, - "nodeReRegistrationTimeout" : -1, - "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], - "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] - }, { - "id" : "dc64b28b-a696-4b0c-8e24-2aeae138c3e5", - "clientId" : "cce-dev", - "rootUrl" : "http://cce-api-test.k8s.medina.esilab.org/", - "adminUrl" : "http://cce-api-test.k8s.medina.esilab.org/", - "surrogateAuthRequired" : false, - "enabled" : true, - "alwaysDisplayInConsole" : false, - "clientAuthenticatorType" : "client-secret", - "secret" : "efe3acb8-b4c1-43f0-a3a2-b75402e76afc", - "redirectUris" : [ "http://cce-api-test.k8s.medina.esilab.org/*" ], - "webOrigins" : [ "http://cce-api-test.k8s.medina.esilab.org" ], - "notBefore" : 0, - "bearerOnly" : false, - "consentRequired" : false, - "standardFlowEnabled" : true, - "implicitFlowEnabled" : false, - "directAccessGrantsEnabled" : true, - "serviceAccountsEnabled" : true, - "authorizationServicesEnabled" : true, - "publicClient" : false, - "frontchannelLogout" : false, - "protocol" : "openid-connect", - "attributes" : { - "saml.assertion.signature" : "false", - "saml.force.post.binding" : "false", - "saml.multivalued.roles" : "false", - "saml.encrypt" : "false", - "backchannel.logout.revoke.offline.tokens" : "false", - "saml.server.signature" : "false", - "saml.server.signature.keyinfo.ext" : "false", - "exclude.session.state.from.auth.response" : "false", - "backchannel.logout.session.required" : "true", - "client_credentials.use_refresh_token" : "false", - "saml_force_name_id_format" : "false", - "saml.client.signature" : "false", - "tls.client.certificate.bound.access.tokens" : "false", - "saml.authnstatement" : "false", - "display.on.consent.screen" : "false", - "saml.onetimeuse.condition" : "false" - }, - "authenticationFlowBindingOverrides" : { }, - "fullScopeAllowed" : true, - "nodeReRegistrationTimeout" : -1, - "protocolMappers" : [ { - "id" : "12f94f61-bb5e-41dc-ae0b-20206ff6173c", - "name" : "Client IP Address", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientAddress", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientAddress", - "jsonType.label" : "String" - } - }, { - "id" : "3920d8ac-45ea-4bf5-a203-1c831cb845ab", - "name" : "Client Host", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientHost", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientHost", - "jsonType.label" : "String" - } - }, { - "id" : "5f427941-d12d-432c-b883-ac39fe209705", - "name" : "Client ID", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientId", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientId", - "jsonType.label" : "String" - } - } ], - "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], - "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ], - "authorizationSettings" : { - "allowRemoteResourceManagement" : true, - "policyEnforcementMode" : "ENFORCING", - "resources" : [ { - "name" : "Default Resource", - "type" : "urn:cce-dev:resources:default", - "ownerManagedAccess" : false, - "attributes" : { }, - "_id" : "ef475897-65aa-4813-a810-340268090336", - "uris" : [ "/*" ] - } ], - "policies" : [ { - "id" : "ff85e02d-5048-473c-8bd0-fa22b6574852", - "name" : "Default Policy", - "description" : "A policy that grants access only for users within this realm", - "type" : "js", - "logic" : "POSITIVE", - "decisionStrategy" : "AFFIRMATIVE", - "config" : { - "code" : "// by default, grants any permission associated with this policy\n$evaluation.grant();\n" - } - }, { - "id" : "043cee90-99a8-4f2b-9ad2-3f37ce518483", - "name" : "Default Permission", - "description" : "A permission that applies to the default resource type", - "type" : "resource", - "logic" : "POSITIVE", - "decisionStrategy" : "UNANIMOUS", - "config" : { - "defaultResourceType" : "urn:cce-dev:resources:default", - "applyPolicies" : "[\"Default Policy\"]" - } - } ], - "scopes" : [ ], - "decisionStrategy" : "UNANIMOUS" - } - }, { - "id" : "4a57f2cd-5b99-4b78-ba31-d994521abd30", - "clientId" : "clouditor-assessment", - "surrogateAuthRequired" : false, - "enabled" : true, - "alwaysDisplayInConsole" : false, - "clientAuthenticatorType" : "client-secret", - "secret" : "4a47f42a-df33-418f-b687-64e7c8ffbbda", - "redirectUris" : [ "https://security-assessment-test.k8s.medina.esilab.org" ], - "webOrigins" : [ ], - "notBefore" : 0, - "bearerOnly" : false, - "consentRequired" : false, - "standardFlowEnabled" : false, - "implicitFlowEnabled" : false, - "directAccessGrantsEnabled" : false, - "serviceAccountsEnabled" : true, - "publicClient" : false, - "frontchannelLogout" : false, - "protocol" : "openid-connect", - "attributes" : { - "saml.assertion.signature" : "false", - "saml.force.post.binding" : "false", - "saml.multivalued.roles" : "false", - "saml.encrypt" : "false", - "backchannel.logout.revoke.offline.tokens" : "false", - "saml.server.signature" : "false", - "saml.server.signature.keyinfo.ext" : "false", - "exclude.session.state.from.auth.response" : "false", - "backchannel.logout.session.required" : "true", - "client_credentials.use_refresh_token" : "false", - "saml_force_name_id_format" : "false", - "saml.client.signature" : "false", - "tls.client.certificate.bound.access.tokens" : "false", - "saml.authnstatement" : "false", - "display.on.consent.screen" : "false", - "saml.onetimeuse.condition" : "false" - }, - "authenticationFlowBindingOverrides" : { }, - "fullScopeAllowed" : true, - "nodeReRegistrationTimeout" : -1, - "protocolMappers" : [ { - "id" : "caf7c5a7-f72e-44d8-aa9d-37c185e415ca", - "name" : "Client ID", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientId", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientId", - "jsonType.label" : "String" - } - }, { - "id" : "7dde8113-bf11-4cb4-be6b-d342ed64b1b6", - "name" : "Client Host", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientHost", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientHost", - "jsonType.label" : "String" - } - }, { - "id" : "1261d141-6010-4868-b659-2ce26e1680b4", - "name" : "Client IP Address", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientAddress", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientAddress", - "jsonType.label" : "String" - } - } ], - "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], - "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] - }, { - "id" : "69bba521-b088-45a6-9e56-bd29e557cea4", - "clientId" : "clouditor-cli", - "surrogateAuthRequired" : false, - "enabled" : true, - "alwaysDisplayInConsole" : false, - "clientAuthenticatorType" : "client-secret", - "secret" : "c3228efe-8dc3-4c09-bc89-8bdc362ae878", - "redirectUris" : [ "http://localhost:10000/callback" ], - "webOrigins" : [ ], - "notBefore" : 0, - "bearerOnly" : false, - "consentRequired" : false, - "standardFlowEnabled" : true, - "implicitFlowEnabled" : false, - "directAccessGrantsEnabled" : false, - "serviceAccountsEnabled" : false, - "publicClient" : true, - "frontchannelLogout" : false, - "protocol" : "openid-connect", - "attributes" : { - "saml.assertion.signature" : "false", - "saml.force.post.binding" : "false", - "saml.multivalued.roles" : "false", - "saml.encrypt" : "false", - "backchannel.logout.revoke.offline.tokens" : "false", - "saml.server.signature" : "false", - "saml.server.signature.keyinfo.ext" : "false", - "exclude.session.state.from.auth.response" : "false", - "backchannel.logout.session.required" : "true", - "client_credentials.use_refresh_token" : "false", - "saml_force_name_id_format" : "false", - "saml.client.signature" : "false", - "tls.client.certificate.bound.access.tokens" : "false", - "saml.authnstatement" : "false", - "display.on.consent.screen" : "false", - "saml.onetimeuse.condition" : "false" - }, - "authenticationFlowBindingOverrides" : { }, - "fullScopeAllowed" : true, - "nodeReRegistrationTimeout" : -1, - "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], - "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] - }, { - "id" : "8fedfacb-2df9-4342-be33-7d3e18dc316f", - "clientId" : "clouditor-discovery", - "surrogateAuthRequired" : false, - "enabled" : true, - "alwaysDisplayInConsole" : false, - "clientAuthenticatorType" : "client-secret", - "secret" : "2f38b7bd-c3fa-4e7b-af59-5b8d67ddd8c1", - "redirectUris" : [ "https://orchestrator-test.k8s.medina.esilab.org/" ], - "webOrigins" : [ ], - "notBefore" : 0, - "bearerOnly" : false, - "consentRequired" : false, - "standardFlowEnabled" : false, - "implicitFlowEnabled" : false, - "directAccessGrantsEnabled" : false, - "serviceAccountsEnabled" : true, - "publicClient" : false, - "frontchannelLogout" : false, - "protocol" : "openid-connect", - "attributes" : { - "saml.assertion.signature" : "false", - "saml.force.post.binding" : "false", - "saml.multivalued.roles" : "false", - "saml.encrypt" : "false", - "backchannel.logout.revoke.offline.tokens" : "false", - "saml.server.signature" : "false", - "saml.server.signature.keyinfo.ext" : "false", - "exclude.session.state.from.auth.response" : "false", - "backchannel.logout.session.required" : "true", - "client_credentials.use_refresh_token" : "false", - "saml_force_name_id_format" : "false", - "saml.client.signature" : "false", - "tls.client.certificate.bound.access.tokens" : "false", - "saml.authnstatement" : "false", - "display.on.consent.screen" : "false", - "saml.onetimeuse.condition" : "false" - }, - "authenticationFlowBindingOverrides" : { }, - "fullScopeAllowed" : true, - "nodeReRegistrationTimeout" : -1, - "protocolMappers" : [ { - "id" : "8dfab4e0-512c-4879-8878-c949ba32a641", - "name" : "Client Host", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientHost", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientHost", - "jsonType.label" : "String" - } - }, { - "id" : "9bba24ce-80f6-4a69-844d-7406c39d678b", - "name" : "Client ID", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientId", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientId", - "jsonType.label" : "String" - } - }, { - "id" : "112001f6-9584-4949-9d79-4d8e337bb9eb", - "name" : "Client IP Address", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientAddress", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientAddress", - "jsonType.label" : "String" - } - } ], - "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], - "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] - }, { - "id" : "fcf4c413-07b8-40e1-9ee0-2ffa646dfdf5", - "clientId" : "clouditor-ui", - "rootUrl" : "https://orchestrator-test.k8s.medina.esilab.org", - "surrogateAuthRequired" : false, - "enabled" : true, - "alwaysDisplayInConsole" : false, - "clientAuthenticatorType" : "client-secret", - "secret" : "7a189e46-8e44-4968-9228-2115e84dbcdd", - "redirectUris" : [ "https://orchestrator-test.k8s.medina.esilab.org/callback" ], - "webOrigins" : [ "https://orchestrator-test.k8s.medina.esilab.org" ], - "notBefore" : 0, - "bearerOnly" : false, - "consentRequired" : false, - "standardFlowEnabled" : true, - "implicitFlowEnabled" : false, - "directAccessGrantsEnabled" : false, - "serviceAccountsEnabled" : false, - "publicClient" : true, - "frontchannelLogout" : false, - "protocol" : "openid-connect", - "attributes" : { - "saml.assertion.signature" : "false", - "saml.force.post.binding" : "false", - "saml.multivalued.roles" : "false", - "saml.encrypt" : "false", - "backchannel.logout.revoke.offline.tokens" : "false", - "saml.server.signature" : "false", - "saml.server.signature.keyinfo.ext" : "false", - "exclude.session.state.from.auth.response" : "false", - "backchannel.logout.session.required" : "true", - "client_credentials.use_refresh_token" : "false", - "saml_force_name_id_format" : "false", - "saml.client.signature" : "false", - "tls.client.certificate.bound.access.tokens" : "false", - "saml.authnstatement" : "false", - "display.on.consent.screen" : "false", - "saml.onetimeuse.condition" : "false" - }, - "authenticationFlowBindingOverrides" : { }, - "fullScopeAllowed" : true, - "nodeReRegistrationTimeout" : -1, - "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], - "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] - }, { - "id" : "15a81bd1-4edd-4e2a-87ec-3bbcac30d2a3", - "clientId" : "cnl-editor-frontend", - "rootUrl" : "https://cnl-editor-frontend-test.k8s.medina.esilab.org", - "adminUrl" : "https://cnl-editor-frontend-test.k8s.medina.esilab.org", - "surrogateAuthRequired" : false, - "enabled" : true, - "alwaysDisplayInConsole" : false, - "clientAuthenticatorType" : "client-secret", - "secret" : "e6b76254-187d-441b-9061-cb6b03dd51a4", - "redirectUris" : [ "http://cnl-editor-frontend-test.k8s.medina.esilab.org/*", "https://cnl-editor-frontend-test.k8s.medina.esilab.org/*" ], - "webOrigins" : [ "https://cnl-editor-frontend-test.k8s.medina.esilab.org" ], - "notBefore" : 0, - "bearerOnly" : false, - "consentRequired" : false, - "standardFlowEnabled" : true, - "implicitFlowEnabled" : false, - "directAccessGrantsEnabled" : true, - "serviceAccountsEnabled" : false, - "publicClient" : true, - "frontchannelLogout" : false, - "protocol" : "openid-connect", - "attributes" : { - "saml.assertion.signature" : "false", - "saml.force.post.binding" : "false", - "saml.multivalued.roles" : "false", - "saml.encrypt" : "false", - "backchannel.logout.revoke.offline.tokens" : "false", - "saml.server.signature" : "false", - "saml.server.signature.keyinfo.ext" : "false", - "exclude.session.state.from.auth.response" : "false", - "backchannel.logout.session.required" : "true", - "client_credentials.use_refresh_token" : "false", - "saml_force_name_id_format" : "false", - "saml.client.signature" : "false", - "tls.client.certificate.bound.access.tokens" : "false", - "saml.authnstatement" : "false", - "display.on.consent.screen" : "false", - "saml.onetimeuse.condition" : "false" - }, - "authenticationFlowBindingOverrides" : { }, - "fullScopeAllowed" : true, - "nodeReRegistrationTimeout" : -1, - "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], - "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] - }, { - "id" : "01fce0c3-2db7-46dd-af1c-115dc1800053", - "clientId" : "codyze", - "surrogateAuthRequired" : false, - "enabled" : true, - "alwaysDisplayInConsole" : false, - "clientAuthenticatorType" : "client-secret", - "secret" : "7ff65ca2-a54a-4093-84f3-3b5756cc4e5c", - "redirectUris" : [ ], - "webOrigins" : [ ], - "notBefore" : 0, - "bearerOnly" : false, - "consentRequired" : false, - "standardFlowEnabled" : false, - "implicitFlowEnabled" : false, - "directAccessGrantsEnabled" : false, - "serviceAccountsEnabled" : true, - "publicClient" : false, - "frontchannelLogout" : false, - "protocol" : "openid-connect", - "attributes" : { - "saml.assertion.signature" : "false", - "saml.force.post.binding" : "false", - "saml.multivalued.roles" : "false", - "saml.encrypt" : "false", - "backchannel.logout.revoke.offline.tokens" : "false", - "saml.server.signature" : "false", - "saml.server.signature.keyinfo.ext" : "false", - "exclude.session.state.from.auth.response" : "false", - "backchannel.logout.session.required" : "true", - "client_credentials.use_refresh_token" : "false", - "saml_force_name_id_format" : "false", - "saml.client.signature" : "false", - "tls.client.certificate.bound.access.tokens" : "false", - "saml.authnstatement" : "false", - "display.on.consent.screen" : "false", - "saml.onetimeuse.condition" : "false" - }, - "authenticationFlowBindingOverrides" : { }, - "fullScopeAllowed" : true, - "nodeReRegistrationTimeout" : -1, - "protocolMappers" : [ { - "id" : "43fbe8e9-8141-4868-b85c-91220bd5f08f", - "name" : "Client IP Address", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientAddress", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientAddress", - "jsonType.label" : "String" - } - }, { - "id" : "ab5e553c-34e4-4411-b6c2-23235f3d7f84", - "name" : "Client ID", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientId", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientId", - "jsonType.label" : "String" - } - }, { - "id" : "8d070365-134e-4302-b0bd-e6ce82b1c2db", - "name" : "Client Host", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientHost", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientHost", - "jsonType.label" : "String" - } - } ], - "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], - "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] - }, { - "id" : "1150f83f-37bc-4b14-98a0-e179aaee0f6c", - "clientId" : "integrated-ui", - "rootUrl" : "https://integrated-ui-test.k8s.medina.esilab.org", - "adminUrl" : "https://integrated-ui-test.k8s.medina.esilab.org", - "surrogateAuthRequired" : false, - "enabled" : true, - "alwaysDisplayInConsole" : false, - "clientAuthenticatorType" : "client-secret", - "secret" : "9049e030-2e66-496e-accf-b7a5037bc0eb", - "redirectUris" : [ "https://integrated-ui-test.k8s.medina.esilab.org/*" ], - "webOrigins" : [ "https://integrated-ui-test.k8s.medina.esilab.org" ], - "notBefore" : 0, - "bearerOnly" : false, - "consentRequired" : false, - "standardFlowEnabled" : true, - "implicitFlowEnabled" : false, - "directAccessGrantsEnabled" : true, - "serviceAccountsEnabled" : false, - "publicClient" : true, - "frontchannelLogout" : false, - "protocol" : "openid-connect", - "attributes" : { - "backchannel.logout.session.required" : "true", - "backchannel.logout.revoke.offline.tokens" : "false" - }, - "authenticationFlowBindingOverrides" : { }, - "fullScopeAllowed" : true, - "nodeReRegistrationTimeout" : -1, - "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], - "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] - }, { - "id" : "095fac49-b0b4-4c44-b5b9-fa22bed6d160", - "clientId" : "life-cycle-manager", - "surrogateAuthRequired" : false, - "enabled" : true, - "alwaysDisplayInConsole" : false, - "clientAuthenticatorType" : "client-secret", - "secret" : "0191bfe6-1d93-4d89-b1e4-4b505d348057", - "redirectUris" : [ ], - "webOrigins" : [ ], - "notBefore" : 0, - "bearerOnly" : false, - "consentRequired" : false, - "standardFlowEnabled" : false, - "implicitFlowEnabled" : false, - "directAccessGrantsEnabled" : false, - "serviceAccountsEnabled" : true, - "publicClient" : false, - "frontchannelLogout" : false, - "protocol" : "openid-connect", - "attributes" : { - "saml.assertion.signature" : "false", - "saml.force.post.binding" : "false", - "saml.multivalued.roles" : "false", - "saml.encrypt" : "false", - "backchannel.logout.revoke.offline.tokens" : "false", - "saml.server.signature" : "false", - "saml.server.signature.keyinfo.ext" : "false", - "exclude.session.state.from.auth.response" : "false", - "backchannel.logout.session.required" : "true", - "client_credentials.use_refresh_token" : "false", - "saml_force_name_id_format" : "false", - "saml.client.signature" : "false", - "tls.client.certificate.bound.access.tokens" : "false", - "saml.authnstatement" : "false", - "display.on.consent.screen" : "false", - "saml.onetimeuse.condition" : "false" - }, - "authenticationFlowBindingOverrides" : { }, - "fullScopeAllowed" : true, - "nodeReRegistrationTimeout" : -1, - "protocolMappers" : [ { - "id" : "cdb336c7-b22f-44c6-b30b-9136364b8229", - "name" : "Client IP Address", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientAddress", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientAddress", - "jsonType.label" : "String" - } - }, { - "id" : "3c6e3fe1-37bb-4ef0-a162-720b0d78b3af", - "name" : "Client ID", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientId", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientId", - "jsonType.label" : "String" - } - }, { - "id" : "e39ee5e2-dd4a-4d0e-9fc3-a0a84b200143", - "name" : "Client Host", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientHost", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientHost", - "jsonType.label" : "String" - } - } ], - "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], - "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] - }, { - "id" : "9f7c65f7-9ae9-4c9e-9bd7-971d0cbe146d", - "clientId" : "nl2cnl-translator-client", - "rootUrl" : "https://nl2cnl-translator-test.k8s.medina.esilab.org/", - "adminUrl" : "https://nl2cnl-translator-test.k8s.medina.esilab.org/", - "surrogateAuthRequired" : false, - "enabled" : true, - "alwaysDisplayInConsole" : false, - "clientAuthenticatorType" : "client-secret", - "secret" : "b1d1d98d-b5e5-46ac-9b45-30502cfb53ab", - "redirectUris" : [ "https://nl2cnl-translator-test.k8s.medina.esilab.org/*" ], - "webOrigins" : [ "https://nl2cnl-translator-test.k8s.medina.esilab.org" ], - "notBefore" : 0, - "bearerOnly" : false, - "consentRequired" : false, - "standardFlowEnabled" : true, - "implicitFlowEnabled" : false, - "directAccessGrantsEnabled" : true, - "serviceAccountsEnabled" : true, - "authorizationServicesEnabled" : true, - "publicClient" : false, - "frontchannelLogout" : false, - "protocol" : "openid-connect", - "attributes" : { - "saml.assertion.signature" : "false", - "saml.force.post.binding" : "false", - "saml.multivalued.roles" : "false", - "saml.encrypt" : "false", - "backchannel.logout.revoke.offline.tokens" : "false", - "saml.server.signature" : "false", - "saml.server.signature.keyinfo.ext" : "false", - "exclude.session.state.from.auth.response" : "false", - "backchannel.logout.session.required" : "true", - "client_credentials.use_refresh_token" : "false", - "saml_force_name_id_format" : "false", - "saml.client.signature" : "false", - "tls.client.certificate.bound.access.tokens" : "false", - "saml.authnstatement" : "false", - "display.on.consent.screen" : "false", - "saml.onetimeuse.condition" : "false" - }, - "authenticationFlowBindingOverrides" : { }, - "fullScopeAllowed" : true, - "nodeReRegistrationTimeout" : -1, - "protocolMappers" : [ { - "id" : "ad2d1f98-62a8-4859-8cce-1ce4034b9920", - "name" : "Client Host", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientHost", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientHost", - "jsonType.label" : "String" - } - }, { - "id" : "480e69e8-ebca-4e89-8d20-24bba626bbce", - "name" : "Client ID", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientId", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientId", - "jsonType.label" : "String" - } - }, { - "id" : "42724a07-f05f-4d65-82cb-b1c2288810d8", - "name" : "Client IP Address", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientAddress", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientAddress", - "jsonType.label" : "String" - } - } ], - "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], - "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ], - "authorizationSettings" : { - "allowRemoteResourceManagement" : true, - "policyEnforcementMode" : "ENFORCING", - "resources" : [ { - "name" : "Default Resource", - "type" : "urn:nl2cnl-translator-client:resources:default", - "ownerManagedAccess" : false, - "attributes" : { }, - "_id" : "cf0de028-f233-4f59-83cb-3d60d34450a3", - "uris" : [ "/*" ] - } ], - "policies" : [ { - "id" : "46935297-5bfb-4a43-b493-b28efe8c863b", - "name" : "Default Policy", - "description" : "A policy that grants access only for users within this realm", - "type" : "js", - "logic" : "POSITIVE", - "decisionStrategy" : "AFFIRMATIVE", - "config" : { - "code" : "// by default, grants any permission associated with this policy\n$evaluation.grant();\n" - } - }, { - "id" : "9cd3da2f-0302-4033-a9ed-36758ffa7730", - "name" : "Default Permission", - "description" : "A permission that applies to the default resource type", - "type" : "resource", - "logic" : "POSITIVE", - "decisionStrategy" : "UNANIMOUS", - "config" : { - "defaultResourceType" : "urn:nl2cnl-translator-client:resources:default", - "applyPolicies" : "[\"Default Policy\"]" - } - } ], - "scopes" : [ ], - "decisionStrategy" : "UNANIMOUS" - } - }, { - "id" : "785a9f77-d06f-4a65-9ba9-341921fda61a", - "clientId" : "raof", - "rootUrl" : "http://risk-assessment-engine-test.k8s.medina.esilab.org", - "adminUrl" : "http://risk-assessment-engine-test.k8s.medina.esilab.org", - "surrogateAuthRequired" : false, - "enabled" : true, - "alwaysDisplayInConsole" : false, - "clientAuthenticatorType" : "client-secret", - "secret" : "92d45bca-073b-49e3-8b23-2615f7fcbb3e", - "redirectUris" : [ "http://risk-assessment-engine-test.k8s.medina.esilab.org/*" ], - "webOrigins" : [ "http://risk-assessment-engine-test.k8s.medina.esilab.org" ], - "notBefore" : 0, - "bearerOnly" : false, - "consentRequired" : false, - "standardFlowEnabled" : true, - "implicitFlowEnabled" : false, - "directAccessGrantsEnabled" : true, - "serviceAccountsEnabled" : true, - "publicClient" : true, - "frontchannelLogout" : false, - "protocol" : "openid-connect", - "attributes" : { - "saml.assertion.signature" : "false", - "saml.force.post.binding" : "false", - "saml.multivalued.roles" : "false", - "saml.encrypt" : "false", - "backchannel.logout.revoke.offline.tokens" : "false", - "saml.server.signature" : "false", - "saml.server.signature.keyinfo.ext" : "false", - "exclude.session.state.from.auth.response" : "false", - "backchannel.logout.session.required" : "true", - "client_credentials.use_refresh_token" : "false", - "saml_force_name_id_format" : "false", - "saml.client.signature" : "false", - "tls.client.certificate.bound.access.tokens" : "false", - "saml.authnstatement" : "false", - "display.on.consent.screen" : "false", - "saml.onetimeuse.condition" : "false" - }, - "authenticationFlowBindingOverrides" : { }, - "fullScopeAllowed" : true, - "nodeReRegistrationTimeout" : -1, - "protocolMappers" : [ { - "id" : "1fddcb23-2a23-4ce6-acd4-cb48155d9034", - "name" : "Client Host", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientHost", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientHost", - "jsonType.label" : "String" - } - }, { - "id" : "1b88c2af-c338-4cf2-ab8d-69d1a60837a2", - "name" : "Client IP Address", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientAddress", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientAddress", - "jsonType.label" : "String" - } - }, { - "id" : "1c4f9074-9c2a-40bc-b55e-07a4eccfedab", - "name" : "Client ID", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientId", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientId", - "jsonType.label" : "String" - } - } ], - "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], - "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] - }, { - "id" : "b1293ae0-e720-40cb-ae6f-db7fc9b1fe92", - "clientId" : "raof-app", - "rootUrl" : "http://localhost:9000", - "adminUrl" : "http://localhost:9000", - "surrogateAuthRequired" : false, - "enabled" : true, - "alwaysDisplayInConsole" : false, - "clientAuthenticatorType" : "client-secret", - "secret" : "d7ca4514-90bf-40c9-b824-05c78acd9c93", - "redirectUris" : [ "http://localhost:9000/*" ], - "webOrigins" : [ "http://localhost:9000" ], - "notBefore" : 0, - "bearerOnly" : false, - "consentRequired" : false, - "standardFlowEnabled" : true, - "implicitFlowEnabled" : false, - "directAccessGrantsEnabled" : true, - "serviceAccountsEnabled" : true, - "authorizationServicesEnabled" : true, - "publicClient" : false, - "frontchannelLogout" : false, - "protocol" : "openid-connect", - "attributes" : { - "saml.assertion.signature" : "false", - "saml.force.post.binding" : "false", - "saml.multivalued.roles" : "false", - "saml.encrypt" : "false", - "backchannel.logout.revoke.offline.tokens" : "false", - "saml.server.signature" : "false", - "saml.server.signature.keyinfo.ext" : "false", - "exclude.session.state.from.auth.response" : "false", - "backchannel.logout.session.required" : "true", - "client_credentials.use_refresh_token" : "false", - "saml_force_name_id_format" : "false", - "saml.client.signature" : "false", - "tls.client.certificate.bound.access.tokens" : "false", - "saml.authnstatement" : "false", - "display.on.consent.screen" : "false", - "saml.onetimeuse.condition" : "false" - }, - "authenticationFlowBindingOverrides" : { }, - "fullScopeAllowed" : true, - "nodeReRegistrationTimeout" : -1, - "protocolMappers" : [ { - "id" : "76f2834e-94f2-4d8d-9840-d4b363ba7a8b", - "name" : "Client Host", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientHost", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientHost", - "jsonType.label" : "String" - } - }, { - "id" : "8c8a582f-4e95-437f-a9c7-79d6e3f84a78", - "name" : "Client IP Address", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientAddress", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientAddress", - "jsonType.label" : "String" - } - }, { - "id" : "65c739a9-5e22-4825-85bd-0c9b7547a395", - "name" : "Client ID", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientId", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientId", - "jsonType.label" : "String" - } - } ], - "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], - "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ], - "authorizationSettings" : { - "allowRemoteResourceManagement" : true, - "policyEnforcementMode" : "ENFORCING", - "resources" : [ { - "name" : "Default Resource", - "type" : "urn:roaf-app:resources:default", - "ownerManagedAccess" : false, - "attributes" : { }, - "_id" : "83aa363b-796b-4081-b49f-69b88d87f3b2", - "uris" : [ "/*" ] - } ], - "policies" : [ { - "id" : "291bd70b-29f1-4806-9963-ebced36fa800", - "name" : "Default Policy", - "description" : "A policy that grants access only for users within this realm", - "type" : "js", - "logic" : "POSITIVE", - "decisionStrategy" : "AFFIRMATIVE", - "config" : { - "code" : "// by default, grants any permission associated with this policy\n$evaluation.grant();\n" - } - }, { - "id" : "3ba28abc-eeec-48bd-bca9-41b10c38525e", - "name" : "Default Permission", - "description" : "A permission that applies to the default resource type", - "type" : "resource", - "logic" : "POSITIVE", - "decisionStrategy" : "UNANIMOUS", - "config" : { - "defaultResourceType" : "urn:roaf-app:resources:default", - "applyPolicies" : "[\"Default Policy\"]" - } - } ], - "scopes" : [ ], - "decisionStrategy" : "UNANIMOUS" - } - }, { - "id" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", - "clientId" : "realm-management", - "name" : "${client_realm-management}", - "surrogateAuthRequired" : false, - "enabled" : true, - "alwaysDisplayInConsole" : false, - "clientAuthenticatorType" : "client-secret", - "secret" : "eac6413c-b76b-4d1a-b4dc-b217fe77326b", - "redirectUris" : [ ], - "webOrigins" : [ ], - "notBefore" : 0, - "bearerOnly" : true, - "consentRequired" : false, - "standardFlowEnabled" : true, - "implicitFlowEnabled" : false, - "directAccessGrantsEnabled" : false, - "serviceAccountsEnabled" : false, - "publicClient" : false, - "frontchannelLogout" : false, - "protocol" : "openid-connect", - "attributes" : { }, - "authenticationFlowBindingOverrides" : { }, - "fullScopeAllowed" : false, - "nodeReRegistrationTimeout" : 0, - "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], - "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] - }, { - "id" : "7d57284a-3eba-4ceb-8088-b13aeef3df24", - "clientId" : "security-admin-console", - "name" : "${client_security-admin-console}", - "rootUrl" : "${authAdminUrl}", - "baseUrl" : "/admin/medina/console/", - "surrogateAuthRequired" : false, - "enabled" : true, - "alwaysDisplayInConsole" : false, - "clientAuthenticatorType" : "client-secret", - "secret" : "11fb3ec1-97dc-46e4-aee3-7d61493a0184", - "redirectUris" : [ "/admin/medina/console/*" ], - "webOrigins" : [ "+" ], - "notBefore" : 0, - "bearerOnly" : false, - "consentRequired" : false, - "standardFlowEnabled" : true, - "implicitFlowEnabled" : false, - "directAccessGrantsEnabled" : false, - "serviceAccountsEnabled" : false, - "publicClient" : true, - "frontchannelLogout" : false, - "protocol" : "openid-connect", - "attributes" : { - "pkce.code.challenge.method" : "S256" - }, - "authenticationFlowBindingOverrides" : { }, - "fullScopeAllowed" : false, - "nodeReRegistrationTimeout" : 0, - "protocolMappers" : [ { - "id" : "ce06926e-1e52-49b7-86ea-ddfd7665b90b", - "name" : "locale", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usermodel-attribute-mapper", - "consentRequired" : false, - "config" : { - "userinfo.token.claim" : "true", - "user.attribute" : "locale", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "locale", - "jsonType.label" : "String" - } - } ], - "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], - "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] - }, { - "id" : "aa18689d-6d81-4b92-8b9e-291eb4733408", - "clientId" : "wazuh-vat-evidence-collector-dev", - "rootUrl" : "http://wazuh-vat-evidence-collector-test.k8s.medina.esilab.org/", - "adminUrl" : "http://wazuh-vat-evidence-collector-test.k8s.medina.esilab.org/", - "surrogateAuthRequired" : false, - "enabled" : true, - "alwaysDisplayInConsole" : false, - "clientAuthenticatorType" : "client-secret", - "secret" : "68dec932-77fc-4322-8089-d64c3a3317bf", - "redirectUris" : [ "http://wazuh-vat-evidence-collector-test.k8s.medina.esilab.org/*" ], - "webOrigins" : [ "http://wazuh-vat-evidence-collector-test.k8s.medina.esilab.org" ], - "notBefore" : 0, - "bearerOnly" : false, - "consentRequired" : false, - "standardFlowEnabled" : true, - "implicitFlowEnabled" : false, - "directAccessGrantsEnabled" : true, - "serviceAccountsEnabled" : true, - "authorizationServicesEnabled" : true, - "publicClient" : false, - "frontchannelLogout" : false, - "protocol" : "openid-connect", - "attributes" : { - "saml.assertion.signature" : "false", - "saml.force.post.binding" : "false", - "saml.multivalued.roles" : "false", - "saml.encrypt" : "false", - "backchannel.logout.revoke.offline.tokens" : "false", - "saml.server.signature" : "false", - "saml.server.signature.keyinfo.ext" : "false", - "exclude.session.state.from.auth.response" : "false", - "backchannel.logout.session.required" : "true", - "client_credentials.use_refresh_token" : "false", - "saml_force_name_id_format" : "false", - "saml.client.signature" : "false", - "tls.client.certificate.bound.access.tokens" : "false", - "saml.authnstatement" : "false", - "display.on.consent.screen" : "false", - "saml.onetimeuse.condition" : "false" - }, - "authenticationFlowBindingOverrides" : { }, - "fullScopeAllowed" : true, - "nodeReRegistrationTimeout" : -1, - "protocolMappers" : [ { - "id" : "21e80b89-4ab6-4eb1-b1b1-1a44c133e922", - "name" : "Client IP Address", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientAddress", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientAddress", - "jsonType.label" : "String" - } - }, { - "id" : "f9117947-484b-4486-9299-97a1bac403bc", - "name" : "Client Host", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientHost", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientHost", - "jsonType.label" : "String" - } - }, { - "id" : "a610e8bf-64c2-4c57-ba45-f576d1dbd1b9", - "name" : "Client ID", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usersessionmodel-note-mapper", - "consentRequired" : false, - "config" : { - "user.session.note" : "clientId", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "clientId", - "jsonType.label" : "String" - } - } ], - "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], - "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ], - "authorizationSettings" : { - "allowRemoteResourceManagement" : true, - "policyEnforcementMode" : "ENFORCING", - "resources" : [ { - "name" : "Default Resource", - "type" : "urn:wazuh-vat-evidence-collector-dev:resources:default", - "ownerManagedAccess" : false, - "attributes" : { }, - "_id" : "9b151dde-64db-48eb-a5c8-1cb76dbda106", - "uris" : [ "/*" ] - } ], - "policies" : [ { - "id" : "ea4d0471-d8e0-4eb3-b978-5e08ed330193", - "name" : "Default Policy", - "description" : "A policy that grants access only for users within this realm", - "type" : "js", - "logic" : "POSITIVE", - "decisionStrategy" : "AFFIRMATIVE", - "config" : { - "code" : "// by default, grants any permission associated with this policy\n$evaluation.grant();\n" - } - }, { - "id" : "d56c4a80-9aea-4527-80b8-fa8736d55cbe", - "name" : "Default Permission", - "description" : "A permission that applies to the default resource type", - "type" : "resource", - "logic" : "POSITIVE", - "decisionStrategy" : "UNANIMOUS", - "config" : { - "defaultResourceType" : "urn:wazuh-vat-evidence-collector-dev:resources:default", - "applyPolicies" : "[\"Default Policy\"]" - } - } ], - "scopes" : [ ], - "decisionStrategy" : "UNANIMOUS" - } - } ], - "clientScopes" : [ { - "id" : "448d9d12-2046-483f-9951-9cfb26270957", - "name" : "address", - "description" : "OpenID Connect built-in scope: address", - "protocol" : "openid-connect", - "attributes" : { - "include.in.token.scope" : "true", - "display.on.consent.screen" : "true", - "consent.screen.text" : "${addressScopeConsentText}" - }, - "protocolMappers" : [ { - "id" : "d9a1907f-8701-4b47-85a8-b7d959c37d52", - "name" : "address", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-address-mapper", - "consentRequired" : false, - "config" : { - "user.attribute.formatted" : "formatted", - "user.attribute.country" : "country", - "user.attribute.postal_code" : "postal_code", - "userinfo.token.claim" : "true", - "user.attribute.street" : "street", - "id.token.claim" : "true", - "user.attribute.region" : "region", - "access.token.claim" : "true", - "user.attribute.locality" : "locality" - } - } ] - }, { - "id" : "275d79c9-b59c-40f6-bea2-ce277f3bb3e0", - "name" : "email", - "description" : "OpenID Connect built-in scope: email", - "protocol" : "openid-connect", - "attributes" : { - "include.in.token.scope" : "true", - "display.on.consent.screen" : "true", - "consent.screen.text" : "${emailScopeConsentText}" - }, - "protocolMappers" : [ { - "id" : "e2e140c5-e12f-4a38-ad55-dbeb73558260", - "name" : "email", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usermodel-property-mapper", - "consentRequired" : false, - "config" : { - "userinfo.token.claim" : "true", - "user.attribute" : "email", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "email", - "jsonType.label" : "String" - } - }, { - "id" : "a22524be-6358-4d93-beaa-38faed65e198", - "name" : "email verified", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usermodel-property-mapper", - "consentRequired" : false, - "config" : { - "userinfo.token.claim" : "true", - "user.attribute" : "emailVerified", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "email_verified", - "jsonType.label" : "boolean" - } - } ] - }, { - "id" : "bbfebad4-3f48-432f-9696-1529017fd411", - "name" : "jhipster", - "description" : "Jhipster specific claims", - "protocol" : "openid-connect", - "attributes" : { - "include.in.token.scope" : "true", - "display.on.consent.screen" : "true" - }, - "protocolMappers" : [ { - "id" : "71c49d92-db9e-4669-b945-a6dd790b8b00", - "name" : "langKey", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usermodel-attribute-mapper", - "consentRequired" : false, - "config" : { - "userinfo.token.claim" : "true", - "user.attribute" : "langKey", - "id.token.claim" : "false", - "access.token.claim" : "false", - "claim.name" : "langKey", - "jsonType.label" : "String" - } - }, { - "id" : "79e9563d-3c27-4cb3-b8c7-cb11bc43ebc9", - "name" : "login", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usermodel-attribute-mapper", - "consentRequired" : false, - "config" : { - "userinfo.token.claim" : "true", - "user.attribute" : "preferred_username", - "id.token.claim" : "false", - "access.token.claim" : "false", - "claim.name" : "login", - "jsonType.label" : "String" - } - }, { - "id" : "d8ce7859-d0c3-4e55-9415-438c81bfdaa2", - "name" : "roles", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usermodel-realm-role-mapper", - "consentRequired" : false, - "config" : { - "multivalued" : "true", - "userinfo.token.claim" : "true", - "id.token.claim" : "false", - "access.token.claim" : "true", - "claim.name" : "roles", - "jsonType.label" : "String" - } - } ] - }, { - "id" : "3dd12f9d-3af5-4757-b89c-4d2a8c448316", - "name" : "microprofile-jwt", - "description" : "Microprofile - JWT built-in scope", - "protocol" : "openid-connect", - "attributes" : { - "include.in.token.scope" : "true", - "display.on.consent.screen" : "false" - }, - "protocolMappers" : [ { - "id" : "995d9d7f-97af-4c01-81d8-8ca11aa34553", - "name" : "groups", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usermodel-realm-role-mapper", - "consentRequired" : false, - "config" : { - "multivalued" : "true", - "user.attribute" : "foo", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "groups", - "jsonType.label" : "String" - } - }, { - "id" : "43df77e9-387b-4f80-bd3e-c2153178ee72", - "name" : "upn", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usermodel-property-mapper", - "consentRequired" : false, - "config" : { - "userinfo.token.claim" : "true", - "user.attribute" : "username", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "upn", - "jsonType.label" : "String" - } - } ] - }, { - "id" : "31c108bb-1587-4373-b46a-7d2f0d7acdba", - "name" : "offline_access", - "description" : "OpenID Connect built-in scope: offline_access", - "protocol" : "openid-connect", - "attributes" : { - "consent.screen.text" : "${offlineAccessScopeConsentText}", - "display.on.consent.screen" : "true" - } - }, { - "id" : "b8b09b9e-6096-46ae-8e90-3cd03d364a0a", - "name" : "phone", - "description" : "OpenID Connect built-in scope: phone", - "protocol" : "openid-connect", - "attributes" : { - "include.in.token.scope" : "true", - "display.on.consent.screen" : "true", - "consent.screen.text" : "${phoneScopeConsentText}" - }, - "protocolMappers" : [ { - "id" : "5464cfbe-e421-4034-8f6a-378e99476bf4", - "name" : "phone number", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usermodel-attribute-mapper", - "consentRequired" : false, - "config" : { - "userinfo.token.claim" : "true", - "user.attribute" : "phoneNumber", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "phone_number", - "jsonType.label" : "String" - } - }, { - "id" : "f8a484ce-7c5f-4562-8d61-ec161e2929f6", - "name" : "phone number verified", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usermodel-attribute-mapper", - "consentRequired" : false, - "config" : { - "userinfo.token.claim" : "true", - "user.attribute" : "phoneNumberVerified", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "phone_number_verified", - "jsonType.label" : "boolean" - } - } ] - }, { - "id" : "b188dc18-eca7-4941-ab04-d3e599e9aa93", - "name" : "profile", - "description" : "OpenID Connect built-in scope: profile", - "protocol" : "openid-connect", - "attributes" : { - "include.in.token.scope" : "true", - "display.on.consent.screen" : "true", - "consent.screen.text" : "${profileScopeConsentText}" - }, - "protocolMappers" : [ { - "id" : "0d52d80c-a7e1-45f9-a16e-1965220474d5", - "name" : "nickname", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usermodel-attribute-mapper", - "consentRequired" : false, - "config" : { - "userinfo.token.claim" : "true", - "user.attribute" : "nickname", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "nickname", - "jsonType.label" : "String" - } - }, { - "id" : "cf0e8f74-1996-4ad1-8bcc-3f331bea4e45", - "name" : "birthdate", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usermodel-attribute-mapper", - "consentRequired" : false, - "config" : { - "userinfo.token.claim" : "true", - "user.attribute" : "birthdate", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "birthdate", - "jsonType.label" : "String" - } - }, { - "id" : "c58346fb-1470-420c-a6cb-c115e833444b", - "name" : "full name", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-full-name-mapper", - "consentRequired" : false, - "config" : { - "id.token.claim" : "true", - "access.token.claim" : "true", - "userinfo.token.claim" : "true" - } - }, { - "id" : "bdfca3bd-1dda-4ebe-993c-ea11c674c919", - "name" : "gender", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usermodel-attribute-mapper", - "consentRequired" : false, - "config" : { - "userinfo.token.claim" : "true", - "user.attribute" : "gender", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "gender", - "jsonType.label" : "String" - } - }, { - "id" : "1299560c-f37d-47d2-96f7-712761cf679a", - "name" : "middle name", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usermodel-attribute-mapper", - "consentRequired" : false, - "config" : { - "userinfo.token.claim" : "true", - "user.attribute" : "middleName", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "middle_name", - "jsonType.label" : "String" - } - }, { - "id" : "c67dab67-c3b4-40c4-91fe-7c9ce61fca5f", - "name" : "zoneinfo", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usermodel-attribute-mapper", - "consentRequired" : false, - "config" : { - "userinfo.token.claim" : "true", - "user.attribute" : "zoneinfo", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "zoneinfo", - "jsonType.label" : "String" - } - }, { - "id" : "8682ba32-def5-4111-b2ab-79cd865844d0", - "name" : "family name", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usermodel-property-mapper", - "consentRequired" : false, - "config" : { - "userinfo.token.claim" : "true", - "user.attribute" : "lastName", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "family_name", - "jsonType.label" : "String" - } - }, { - "id" : "0ee61bf2-d022-420a-aa6d-c7e8bd60e24f", - "name" : "picture", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usermodel-attribute-mapper", - "consentRequired" : false, - "config" : { - "userinfo.token.claim" : "true", - "user.attribute" : "picture", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "picture", - "jsonType.label" : "String" - } - }, { - "id" : "3acdc903-7ceb-40b8-8516-ebbc7874d6e4", - "name" : "given name", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usermodel-property-mapper", - "consentRequired" : false, - "config" : { - "userinfo.token.claim" : "true", - "user.attribute" : "firstName", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "given_name", - "jsonType.label" : "String" - } - }, { - "id" : "d1fe9f83-141c-4c8c-9635-20367c7e5218", - "name" : "locale", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usermodel-attribute-mapper", - "consentRequired" : false, - "config" : { - "userinfo.token.claim" : "true", - "user.attribute" : "locale", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "locale", - "jsonType.label" : "String" - } - }, { - "id" : "502de8c4-4cdf-402b-8453-d407a7b666da", - "name" : "username", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usermodel-property-mapper", - "consentRequired" : false, - "config" : { - "userinfo.token.claim" : "true", - "user.attribute" : "username", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "preferred_username", - "jsonType.label" : "String" - } - }, { - "id" : "1603ac87-6a50-4205-b9b9-4ba4d3224d83", - "name" : "website", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usermodel-attribute-mapper", - "consentRequired" : false, - "config" : { - "userinfo.token.claim" : "true", - "user.attribute" : "website", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "website", - "jsonType.label" : "String" - } - }, { - "id" : "f2c9d6f6-06b7-415a-87b3-c872a26ab921", - "name" : "updated at", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usermodel-attribute-mapper", - "consentRequired" : false, - "config" : { - "userinfo.token.claim" : "true", - "user.attribute" : "updatedAt", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "updated_at", - "jsonType.label" : "String" - } - }, { - "id" : "ee586b78-b33e-4a0b-842f-9bd7059a747a", - "name" : "profile", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usermodel-attribute-mapper", - "consentRequired" : false, - "config" : { - "userinfo.token.claim" : "true", - "user.attribute" : "profile", - "id.token.claim" : "true", - "access.token.claim" : "true", - "claim.name" : "profile", - "jsonType.label" : "String" - } - } ] - }, { - "id" : "83717992-b174-46c3-99f1-1a097b02e99c", - "name" : "role_list", - "description" : "SAML role list", - "protocol" : "saml", - "attributes" : { - "consent.screen.text" : "${samlRoleListScopeConsentText}", - "display.on.consent.screen" : "true" - }, - "protocolMappers" : [ { - "id" : "0c0b8746-2e89-4ede-9ea6-ac76d2c66f33", - "name" : "role list", - "protocol" : "saml", - "protocolMapper" : "saml-role-list-mapper", - "consentRequired" : false, - "config" : { - "single" : "false", - "attribute.nameformat" : "Basic", - "attribute.name" : "Role" - } - } ] - }, { - "id" : "da1df8bb-b502-44fb-94a4-cff04b190a8c", - "name" : "roles", - "description" : "OpenID Connect scope for add user roles to the access token", - "protocol" : "openid-connect", - "attributes" : { - "include.in.token.scope" : "false", - "display.on.consent.screen" : "true", - "consent.screen.text" : "${rolesScopeConsentText}" - }, - "protocolMappers" : [ { - "id" : "cef58889-d64f-4405-a1f9-4978962472aa", - "name" : "realm roles", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usermodel-realm-role-mapper", - "consentRequired" : false, - "config" : { - "user.attribute" : "foo", - "access.token.claim" : "true", - "claim.name" : "realm_access.roles", - "jsonType.label" : "String", - "multivalued" : "true" - } - }, { - "id" : "44e1ccc5-63d0-464f-a88c-535864dba161", - "name" : "audience resolve", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-audience-resolve-mapper", - "consentRequired" : false, - "config" : { } - }, { - "id" : "fc7ab48f-7268-4f85-874c-8b35d00d5fb1", - "name" : "client roles", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-usermodel-client-role-mapper", - "consentRequired" : false, - "config" : { - "user.attribute" : "foo", - "access.token.claim" : "true", - "claim.name" : "resource_access.${client_id}.roles", - "jsonType.label" : "String", - "multivalued" : "true" - } - } ] - }, { - "id" : "cab2790d-6362-4d1a-96cb-427e906ea1d0", - "name" : "web-origins", - "description" : "OpenID Connect scope for add allowed web origins to the access token", - "protocol" : "openid-connect", - "attributes" : { - "include.in.token.scope" : "false", - "display.on.consent.screen" : "false", - "consent.screen.text" : "" - }, - "protocolMappers" : [ { - "id" : "e8c45111-ab73-4a68-a793-fdcc71c4f2ad", - "name" : "allowed web origins", - "protocol" : "openid-connect", - "protocolMapper" : "oidc-allowed-origins-mapper", - "consentRequired" : false, - "config" : { } - } ] - } ], - "defaultDefaultClientScopes" : [ "role_list", "profile", "email", "roles", "web-origins" ], - "defaultOptionalClientScopes" : [ "offline_access", "address", "phone", "microprofile-jwt" ], - "browserSecurityHeaders" : { - "contentSecurityPolicyReportOnly" : "", - "xContentTypeOptions" : "nosniff", - "xRobotsTag" : "none", - "xFrameOptions" : "ALLOW-FROM https://integrated-ui-test.k8s.medina.esilab.org", - "contentSecurityPolicy" : "ADD MANUALLY", - "xXSSProtection" : "1; mode=block", - "strictTransportSecurity" : "max-age=31536000; includeSubDomains" - }, - "smtpServer" : { - "password" : "medinaPassword", - "starttls" : "", - "auth" : "true", - "host" : "smtp.gmail.com", - "from" : "medinatestuser@gmail.com", - "ssl" : "true", - "user" : "medinatestuser@gmail.com" - }, - "eventsEnabled" : false, - "eventsListeners" : [ "jboss-logging" ], - "enabledEventTypes" : [ ], - "adminEventsEnabled" : false, - "adminEventsDetailsEnabled" : false, - "identityProviders" : [ { - "alias" : "oidc", - "displayName" : "Bosch Login", - "internalId" : "0a60d4b9-c19c-4df7-9d55-f27547b90af0", - "providerId" : "oidc", - "enabled" : true, - "updateProfileFirstLoginMode" : "on", - "trustEmail" : false, - "storeToken" : false, - "addReadTokenRoleOnCreate" : false, - "authenticateByDefault" : false, - "linkOnly" : false, - "firstBrokerLoginFlowAlias" : "first broker login", - "config" : { - "userInfoUrl" : "https://stfs.test-bosch.com/adfs/userinfo", - "validateSignature" : "true", - "clientId" : "acfbc2ab-64e4-4b64-ad0e-204ec212cbbf", - "tokenUrl" : "https://stfs.test-bosch.com/adfs/oauth2/token/", - "jwksUrl" : "https://stfs.test-bosch.com/adfs/discovery/keys", - "issuer" : "https://stfs.test-bosch.com/adfs", - "useJwksUrl" : "true", - "authorizationUrl" : "https://stfs.test-bosch.com/adfs/oauth2/authorize/", - "clientAuthMethod" : "client_secret_post", - "disableUserInfo" : "true", - "logoutUrl" : "https://stfs.test-bosch.com/adfs/oauth2/logout", - "syncMode" : "IMPORT", - "clientSecret" : "Iog6MCAS2DoU0tLURqTVOME5p_Fq-LY_eewuOye4" - } - } ], - "identityProviderMappers" : [ { - "id" : "eac64953-04e3-4720-bb21-c09750b6a42a", - "name" : "Default Compliance Manager mapper", - "identityProviderAlias" : "oidc", - "identityProviderMapper" : "oidc-hardcoded-role-idp-mapper", - "config" : { - "syncMode" : "INHERIT", - "role" : "Compliance Manager" - } - } ], - "components" : { - "org.keycloak.services.clientregistration.policy.ClientRegistrationPolicy" : [ { - "id" : "fbccf871-d01e-4d47-99d0-3bdce3bfa12c", - "name" : "Allowed Client Scopes", - "providerId" : "allowed-client-templates", - "subType" : "anonymous", - "subComponents" : { }, - "config" : { - "allow-default-scopes" : [ "true" ] - } - }, { - "id" : "611a0a79-84c4-4d2d-9d11-01eb58141a46", - "name" : "Trusted Hosts", - "providerId" : "trusted-hosts", - "subType" : "anonymous", - "subComponents" : { }, - "config" : { - "host-sending-registration-request-must-match" : [ "true" ], - "client-uris-must-match" : [ "true" ] - } - }, { - "id" : "2124ff56-7c6f-4095-ba92-ae335222f88c", - "name" : "Full Scope Disabled", - "providerId" : "scope", - "subType" : "anonymous", - "subComponents" : { }, - "config" : { } - }, { - "id" : "b8f02611-098d-402f-90a6-a1f09afcdb22", - "name" : "Allowed Protocol Mapper Types", - "providerId" : "allowed-protocol-mappers", - "subType" : "anonymous", - "subComponents" : { }, - "config" : { - "allowed-protocol-mapper-types" : [ "oidc-sha256-pairwise-sub-mapper", "saml-role-list-mapper", "saml-user-property-mapper", "saml-user-attribute-mapper", "oidc-usermodel-property-mapper", "oidc-address-mapper", "oidc-usermodel-attribute-mapper", "oidc-full-name-mapper" ] - } - }, { - "id" : "cca940dd-d866-44db-a211-0ed1bc682ae7", - "name" : "Allowed Protocol Mapper Types", - "providerId" : "allowed-protocol-mappers", - "subType" : "authenticated", - "subComponents" : { }, - "config" : { - "allowed-protocol-mapper-types" : [ "oidc-full-name-mapper", "oidc-usermodel-property-mapper", "saml-role-list-mapper", "oidc-address-mapper", "saml-user-property-mapper", "saml-user-attribute-mapper", "oidc-sha256-pairwise-sub-mapper", "oidc-usermodel-attribute-mapper" ] - } - }, { - "id" : "dfb48f4f-8760-419e-9337-15eb81a41fdb", - "name" : "Max Clients Limit", - "providerId" : "max-clients", - "subType" : "anonymous", - "subComponents" : { }, - "config" : { - "max-clients" : [ "200" ] - } - }, { - "id" : "dfbcfdd0-4628-4a27-927a-4a476017ca56", - "name" : "Allowed Client Scopes", - "providerId" : "allowed-client-templates", - "subType" : "authenticated", - "subComponents" : { }, - "config" : { - "allow-default-scopes" : [ "true" ] - } - }, { - "id" : "cb8bff43-35e8-4fbc-9758-02da2892008d", - "name" : "Consent Required", - "providerId" : "consent-required", - "subType" : "anonymous", - "subComponents" : { }, - "config" : { } - } ], - "org.keycloak.keys.KeyProvider" : [ { - "id" : "4fcc8a9a-8dac-4051-8c34-748bf12d011d", - "name" : "rsa-generated", - "providerId" : "rsa-generated", - "subComponents" : { }, - "config" : { - "privateKey" : [ "MIIEpAIBAAKCAQEAqpMWsm7G85cM6j1jJCxmM6UAssq+oVsfdFUNEXJPpjy4FGRo4cIzaSPjqLAHn1xrBY4wWoPQU+4h2RRurXw0ELLhCIy+LIfUU0djB/5v0s5vqzaj/v8nSKQuKT2NY04b1oNTSeUuL1/sopo8ZcvtOdD2gTlVE2qDQJvJuKxIK9D4r2h2E7Kh7GwI0VIuywi0Ehdbwm21LTZlcrrmNu1pzN8oodjz0uYRIQ/p+AJCa0b+RhFQWN40XTmW1hmERE/J21ZK8sMcmO0vKcg5v2yzDOMQUcTMVVA1MHER8Q08yTYWmyQNP6E3xobVhqwCeClzcNCw1SdNfOVTuqCiZOWQWQIDAQABAoIBAEhcYbKMYAYSPD5akGZWF30tMGCotboJyAw30HVoQvXIqGauOfgbxGeD/B4hnvox4IzYxxZ++K/CQ8Wtb05VdFjpKaHQ4xRNAvvZOt+3RoTtYl4FrgiNAYNFcve3zvUju5eC2qBsgu1CCkbom1qr6hUu2oPzaG32L3wHGsom++7p4YE7FAzfqrEhntlVouMf9oW2477823gcr4LtX3tz2uIw8ZtSGsAxPGWfunxtX9qTgEVzXUFYou94fn7u6vRbRKSqq/udjQcSRaPzdrdto98oH6Y+3rm0PKj5sTkJf8SJHJFCPTgIgnG/7VZm8ZVJAoGLLUGzNC6pgEFdYjDmhSkCgYEA+mQYOKF6f8c5axsrUXtHHoWKYjZCXnWCH+P+DJQAHFSvdPAZgLJ6odKS8tFhujh8murE5WGsVkXxqZOHwXqBHrWrpJhfO8otHPEklhjn2MAhrxWxHEVokdUJjfUzoK0S6RVni/4hZIFkj3322lW7KXdSoeM5dfe9hFKxYM8G+jMCgYEArmVGSJtOzrIAzRZCmMwXwW/rV9Hi8QQOJRy8IM5zLvQutZa3RbqGPjOnq8XjsT98L6w4tM6WsTXWmGxOKDFzPhtg3pxz0ghFC895WaDqz1EL3Wjzp0p1a0mqo8zA+vOh9h+0YQs649eOPHkdr5AvMqenpxIwhu7nG0WOK+OKl0MCgYEAzcYiza+PP6GXg3kxkWYRnXi7sFjNFFnX1aOF7gpXSPEjvKNxIf4LoB+w2lLO0L6JULstkyFBAym6H9V5lLy7jmRYqgz6/uT5TDa1DZFsQAot5HicNBKqjGaa0oo3oo155AnOLhNsl+9qmC46B1a7WKmSRC6700IFAtD+qwOYxVcCgYB1892ToietOUu9ar7kZbXziWUd4sGhzeJbS5Iahkf1jAZDn4qZyMyfKYTQc2nLKmsuO0enUsstVIKuWSKLoNaXPSFJr3vOpPU+RbeH3YSzb9eciy2xCnVceVjGrOghU8NJmqv/rv7Ht7VmRWzEn7qsgiSspWrY+KCrG2JLYP0NzQKBgQDtcbX43N7aGMs/wP2Y/PDoTPeIB6f0+D7rdoHBmK6nUxQ9V70uAyYC4WtJudrKkVKUKAK8oOgbD2Qne2t02pbYKxQQDyBGQObuyC28fA5DHl9F8j6jx2u+He1s23V9HZhxj36TOVIjdjctRCDGTg32RMLGZlli0St2hK9EWSrUvQ==" ], - "certificate" : [ "MIICmzCCAYMCBgF/LGg1XzANBgkqhkiG9w0BAQsFADARMQ8wDQYDVQQDDAZtZWRpbmEwHhcNMjIwMjI0MTU0MzIxWhcNMzIwMjI0MTU0NTAxWjARMQ8wDQYDVQQDDAZtZWRpbmEwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCqkxaybsbzlwzqPWMkLGYzpQCyyr6hWx90VQ0Rck+mPLgUZGjhwjNpI+OosAefXGsFjjBag9BT7iHZFG6tfDQQsuEIjL4sh9RTR2MH/m/Szm+rNqP+/ydIpC4pPY1jThvWg1NJ5S4vX+yimjxly+050PaBOVUTaoNAm8m4rEgr0PivaHYTsqHsbAjRUi7LCLQSF1vCbbUtNmVyuuY27WnM3yih2PPS5hEhD+n4AkJrRv5GEVBY3jRdOZbWGYRET8nbVkrywxyY7S8pyDm/bLMM4xBRxMxVUDUwcRHxDTzJNhabJA0/oTfGhtWGrAJ4KXNw0LDVJ0185VO6oKJk5ZBZAgMBAAEwDQYJKoZIhvcNAQELBQADggEBAD7yJ2HegJ3/LzAmn/JIDXH1qfZ2DgGyfFQk82tWmFnsxVaLrv0sehS7Ufza5JRsudmzL6I8LHTgYuS1zyDZ1kmEB4gIpmw+ZI4M+isIpuzGRz8B3t2y3jOnEKjykjTWWYQrINYQiqPKU8LSFwe+Uqtcqga0TqgZ2fO8tkeP74a7JVk1hd4JD50shuPIInPx5PfqN7xAUebyPeJk91RQVC4tSpIIlFyd13MFQOzocj9uB685SE6DT3vjguYod6tv7JIUme0+JZIhd67hBlZS71ebL2B0gcX7+9jKZi3oeGFX+2k5CWCHZUf7KBvY3WaxxZTlFCtRcNbWKkMUmVTjRJ8=" ], - "priority" : [ "100" ] - } - }, { - "id" : "025383fb-ebfe-4e5d-b82e-ada254fff0fc", - "name" : "hmac-generated", - "providerId" : "hmac-generated", - "subComponents" : { }, - "config" : { - "kid" : [ "672cf3de-8a6e-43a9-bbb3-3b4cda7477a5" ], - "secret" : [ "lxJLgn2fZb9sMr0OZOzv98PC9GZWRJRGrNP86lb99Ded4XqqVXPU5HGxdn6RCxXdJxZyydNbrCnzDhZSpYLJDw" ], - "priority" : [ "100" ], - "algorithm" : [ "HS256" ] - } - }, { - "id" : "9e25e190-e32d-4bc8-9c9d-f5683ba8d2c3", - "name" : "aes-generated", - "providerId" : "aes-generated", - "subComponents" : { }, - "config" : { - "kid" : [ "5fe1d9fe-f688-4e7b-8871-176b5cf97cd4" ], - "secret" : [ "o_z-vBEGNLSgbqxfgun_sg" ], - "priority" : [ "100" ] - } - } ] - }, - "internationalizationEnabled" : false, - "supportedLocales" : [ ], - "authenticationFlows" : [ { - "id" : "354f002d-8a77-4e21-bd29-5c1fc8685a0f", - "alias" : "Account verification options", - "description" : "Method with which to verity the existing account", - "providerId" : "basic-flow", - "topLevel" : false, - "builtIn" : true, - "authenticationExecutions" : [ { - "authenticator" : "idp-email-verification", - "requirement" : "ALTERNATIVE", - "priority" : 10, - "userSetupAllowed" : false, - "autheticatorFlow" : false - }, { - "requirement" : "ALTERNATIVE", - "priority" : 20, - "flowAlias" : "Verify Existing Account by Re-authentication", - "userSetupAllowed" : false, - "autheticatorFlow" : true - } ] - }, { - "id" : "9882e4d3-d9cd-4af1-bfe8-a8f73a1fa086", - "alias" : "Authentication Options", - "description" : "Authentication options.", - "providerId" : "basic-flow", - "topLevel" : false, - "builtIn" : true, - "authenticationExecutions" : [ { - "authenticator" : "basic-auth", - "requirement" : "REQUIRED", - "priority" : 10, - "userSetupAllowed" : false, - "autheticatorFlow" : false - }, { - "authenticator" : "basic-auth-otp", - "requirement" : "DISABLED", - "priority" : 20, - "userSetupAllowed" : false, - "autheticatorFlow" : false - }, { - "authenticator" : "auth-spnego", - "requirement" : "DISABLED", - "priority" : 30, - "userSetupAllowed" : false, - "autheticatorFlow" : false - } ] - }, { - "id" : "8e0d8a31-5418-47ab-befb-afeb7abf9322", - "alias" : "Browser - Conditional OTP", - "description" : "Flow to determine if the OTP is required for the authentication", - "providerId" : "basic-flow", - "topLevel" : false, - "builtIn" : true, - "authenticationExecutions" : [ { - "authenticator" : "conditional-user-configured", - "requirement" : "REQUIRED", - "priority" : 10, - "userSetupAllowed" : false, - "autheticatorFlow" : false - }, { - "authenticator" : "auth-otp-form", - "requirement" : "REQUIRED", - "priority" : 20, - "userSetupAllowed" : false, - "autheticatorFlow" : false - } ] - }, { - "id" : "676fcbe9-45bb-4455-9f12-0593ff40176f", - "alias" : "Direct Grant - Conditional OTP", - "description" : "Flow to determine if the OTP is required for the authentication", - "providerId" : "basic-flow", - "topLevel" : false, - "builtIn" : true, - "authenticationExecutions" : [ { - "authenticator" : "conditional-user-configured", - "requirement" : "REQUIRED", - "priority" : 10, - "userSetupAllowed" : false, - "autheticatorFlow" : false - }, { - "authenticator" : "direct-grant-validate-otp", - "requirement" : "REQUIRED", - "priority" : 20, - "userSetupAllowed" : false, - "autheticatorFlow" : false - } ] - }, { - "id" : "c1bca04e-0854-4c03-8386-3877bb028606", - "alias" : "First broker login - Conditional OTP", - "description" : "Flow to determine if the OTP is required for the authentication", - "providerId" : "basic-flow", - "topLevel" : false, - "builtIn" : true, - "authenticationExecutions" : [ { - "authenticator" : "conditional-user-configured", - "requirement" : "REQUIRED", - "priority" : 10, - "userSetupAllowed" : false, - "autheticatorFlow" : false - }, { - "authenticator" : "auth-otp-form", - "requirement" : "REQUIRED", - "priority" : 20, - "userSetupAllowed" : false, - "autheticatorFlow" : false - } ] - }, { - "id" : "4b63e991-30c5-4679-973a-0ee570dd9638", - "alias" : "Handle Existing Account", - "description" : "Handle what to do if there is existing account with same email/username like authenticated identity provider", - "providerId" : "basic-flow", - "topLevel" : false, - "builtIn" : true, - "authenticationExecutions" : [ { - "authenticator" : "idp-confirm-link", - "requirement" : "REQUIRED", - "priority" : 10, - "userSetupAllowed" : false, - "autheticatorFlow" : false - }, { - "requirement" : "REQUIRED", - "priority" : 20, - "flowAlias" : "Account verification options", - "userSetupAllowed" : false, - "autheticatorFlow" : true - } ] - }, { - "id" : "a106d5a7-3b1e-4325-a1a6-2f2a0eeedd62", - "alias" : "Reset - Conditional OTP", - "description" : "Flow to determine if the OTP should be reset or not. Set to REQUIRED to force.", - "providerId" : "basic-flow", - "topLevel" : false, - "builtIn" : true, - "authenticationExecutions" : [ { - "authenticator" : "conditional-user-configured", - "requirement" : "REQUIRED", - "priority" : 10, - "userSetupAllowed" : false, - "autheticatorFlow" : false - }, { - "authenticator" : "reset-otp", - "requirement" : "REQUIRED", - "priority" : 20, - "userSetupAllowed" : false, - "autheticatorFlow" : false - } ] - }, { - "id" : "d47a6e57-0348-4266-a214-89d44297aead", - "alias" : "User creation or linking", - "description" : "Flow for the existing/non-existing user alternatives", - "providerId" : "basic-flow", - "topLevel" : false, - "builtIn" : true, - "authenticationExecutions" : [ { - "authenticatorConfig" : "create unique user config", - "authenticator" : "idp-create-user-if-unique", - "requirement" : "ALTERNATIVE", - "priority" : 10, - "userSetupAllowed" : false, - "autheticatorFlow" : false - }, { - "requirement" : "ALTERNATIVE", - "priority" : 20, - "flowAlias" : "Handle Existing Account", - "userSetupAllowed" : false, - "autheticatorFlow" : true - } ] - }, { - "id" : "245da857-b7af-437c-88d4-7398b3d2d45a", - "alias" : "Verify Existing Account by Re-authentication", - "description" : "Reauthentication of existing account", - "providerId" : "basic-flow", - "topLevel" : false, - "builtIn" : true, - "authenticationExecutions" : [ { - "authenticator" : "idp-username-password-form", - "requirement" : "REQUIRED", - "priority" : 10, - "userSetupAllowed" : false, - "autheticatorFlow" : false - }, { - "requirement" : "CONDITIONAL", - "priority" : 20, - "flowAlias" : "First broker login - Conditional OTP", - "userSetupAllowed" : false, - "autheticatorFlow" : true - } ] - }, { - "id" : "de6e0cd8-a95c-4023-9e6c-c77fe186db35", - "alias" : "browser", - "description" : "browser based authentication", - "providerId" : "basic-flow", - "topLevel" : true, - "builtIn" : true, - "authenticationExecutions" : [ { - "authenticator" : "auth-cookie", - "requirement" : "ALTERNATIVE", - "priority" : 10, - "userSetupAllowed" : false, - "autheticatorFlow" : false - }, { - "authenticator" : "auth-spnego", - "requirement" : "DISABLED", - "priority" : 20, - "userSetupAllowed" : false, - "autheticatorFlow" : false - }, { - "authenticator" : "identity-provider-redirector", - "requirement" : "ALTERNATIVE", - "priority" : 25, - "userSetupAllowed" : false, - "autheticatorFlow" : false - }, { - "requirement" : "ALTERNATIVE", - "priority" : 30, - "flowAlias" : "forms", - "userSetupAllowed" : false, - "autheticatorFlow" : true - } ] - }, { - "id" : "f6c25350-2637-4086-b681-60e5151ac98d", - "alias" : "clients", - "description" : "Base authentication for clients", - "providerId" : "client-flow", - "topLevel" : true, - "builtIn" : true, - "authenticationExecutions" : [ { - "authenticator" : "client-secret", - "requirement" : "ALTERNATIVE", - "priority" : 10, - "userSetupAllowed" : false, - "autheticatorFlow" : false - }, { - "authenticator" : "client-jwt", - "requirement" : "ALTERNATIVE", - "priority" : 20, - "userSetupAllowed" : false, - "autheticatorFlow" : false - }, { - "authenticator" : "client-secret-jwt", - "requirement" : "ALTERNATIVE", - "priority" : 30, - "userSetupAllowed" : false, - "autheticatorFlow" : false - }, { - "authenticator" : "client-x509", - "requirement" : "ALTERNATIVE", - "priority" : 40, - "userSetupAllowed" : false, - "autheticatorFlow" : false - } ] - }, { - "id" : "aed0a710-7542-4431-8d52-0bb12b3a2df5", - "alias" : "direct grant", - "description" : "OpenID Connect Resource Owner Grant", - "providerId" : "basic-flow", - "topLevel" : true, - "builtIn" : true, - "authenticationExecutions" : [ { - "authenticator" : "direct-grant-validate-username", - "requirement" : "REQUIRED", - "priority" : 10, - "userSetupAllowed" : false, - "autheticatorFlow" : false - }, { - "authenticator" : "direct-grant-validate-password", - "requirement" : "REQUIRED", - "priority" : 20, - "userSetupAllowed" : false, - "autheticatorFlow" : false - }, { - "requirement" : "CONDITIONAL", - "priority" : 30, - "flowAlias" : "Direct Grant - Conditional OTP", - "userSetupAllowed" : false, - "autheticatorFlow" : true - } ] - }, { - "id" : "9d5ea5e5-6e65-47bc-b105-9a1a1bebac11", - "alias" : "docker auth", - "description" : "Used by Docker clients to authenticate against the IDP", - "providerId" : "basic-flow", - "topLevel" : true, - "builtIn" : true, - "authenticationExecutions" : [ { - "authenticator" : "docker-http-basic-authenticator", - "requirement" : "REQUIRED", - "priority" : 10, - "userSetupAllowed" : false, - "autheticatorFlow" : false - } ] - }, { - "id" : "8660561d-943b-4b20-9c6a-7ac9e4ca00e5", - "alias" : "first broker login", - "description" : "Actions taken after first broker login with identity provider account, which is not yet linked to any Keycloak account", - "providerId" : "basic-flow", - "topLevel" : true, - "builtIn" : true, - "authenticationExecutions" : [ { - "authenticatorConfig" : "review profile config", - "authenticator" : "idp-review-profile", - "requirement" : "REQUIRED", - "priority" : 10, - "userSetupAllowed" : false, - "autheticatorFlow" : false - }, { - "requirement" : "REQUIRED", - "priority" : 20, - "flowAlias" : "User creation or linking", - "userSetupAllowed" : false, - "autheticatorFlow" : true - } ] - }, { - "id" : "75c3dc38-54e0-4421-8ab2-0c590437d0c5", - "alias" : "forms", - "description" : "Username, password, otp and other auth forms.", - "providerId" : "basic-flow", - "topLevel" : false, - "builtIn" : true, - "authenticationExecutions" : [ { - "authenticator" : "auth-username-password-form", - "requirement" : "REQUIRED", - "priority" : 10, - "userSetupAllowed" : false, - "autheticatorFlow" : false - }, { - "requirement" : "CONDITIONAL", - "priority" : 20, - "flowAlias" : "Browser - Conditional OTP", - "userSetupAllowed" : false, - "autheticatorFlow" : true - } ] - }, { - "id" : "4c848397-5bfd-4a05-9ce1-b3ee4c655d52", - "alias" : "http challenge", - "description" : "An authentication flow based on challenge-response HTTP Authentication Schemes", - "providerId" : "basic-flow", - "topLevel" : true, - "builtIn" : true, - "authenticationExecutions" : [ { - "authenticator" : "no-cookie-redirect", - "requirement" : "REQUIRED", - "priority" : 10, - "userSetupAllowed" : false, - "autheticatorFlow" : false - }, { - "requirement" : "REQUIRED", - "priority" : 20, - "flowAlias" : "Authentication Options", - "userSetupAllowed" : false, - "autheticatorFlow" : true - } ] - }, { - "id" : "9e6bae92-80ac-4714-ab65-708dc1c08d4e", - "alias" : "registration", - "description" : "registration flow", - "providerId" : "basic-flow", - "topLevel" : true, - "builtIn" : true, - "authenticationExecutions" : [ { - "authenticator" : "registration-page-form", - "requirement" : "REQUIRED", - "priority" : 10, - "flowAlias" : "registration form", - "userSetupAllowed" : false, - "autheticatorFlow" : true - } ] - }, { - "id" : "7ca21b11-88fc-44a6-915a-6690086d51fa", - "alias" : "registration form", - "description" : "registration form", - "providerId" : "form-flow", - "topLevel" : false, - "builtIn" : true, - "authenticationExecutions" : [ { - "authenticator" : "registration-user-creation", - "requirement" : "REQUIRED", - "priority" : 20, - "userSetupAllowed" : false, - "autheticatorFlow" : false - }, { - "authenticator" : "registration-profile-action", - "requirement" : "REQUIRED", - "priority" : 40, - "userSetupAllowed" : false, - "autheticatorFlow" : false - }, { - "authenticator" : "registration-password-action", - "requirement" : "REQUIRED", - "priority" : 50, - "userSetupAllowed" : false, - "autheticatorFlow" : false - }, { - "authenticator" : "registration-recaptcha-action", - "requirement" : "DISABLED", - "priority" : 60, - "userSetupAllowed" : false, - "autheticatorFlow" : false - } ] - }, { - "id" : "91b8df64-8790-4cc7-916a-549144cd1cb1", - "alias" : "reset credentials", - "description" : "Reset credentials for a user if they forgot their password or something", - "providerId" : "basic-flow", - "topLevel" : true, - "builtIn" : true, - "authenticationExecutions" : [ { - "authenticator" : "reset-credentials-choose-user", - "requirement" : "REQUIRED", - "priority" : 10, - "userSetupAllowed" : false, - "autheticatorFlow" : false - }, { - "authenticator" : "reset-credential-email", - "requirement" : "REQUIRED", - "priority" : 20, - "userSetupAllowed" : false, - "autheticatorFlow" : false - }, { - "authenticator" : "reset-password", - "requirement" : "REQUIRED", - "priority" : 30, - "userSetupAllowed" : false, - "autheticatorFlow" : false - }, { - "requirement" : "CONDITIONAL", - "priority" : 40, - "flowAlias" : "Reset - Conditional OTP", - "userSetupAllowed" : false, - "autheticatorFlow" : true - } ] - }, { - "id" : "15dce0c8-895b-4e06-a405-707be49326b5", - "alias" : "saml ecp", - "description" : "SAML ECP Profile Authentication Flow", - "providerId" : "basic-flow", - "topLevel" : true, - "builtIn" : true, - "authenticationExecutions" : [ { - "authenticator" : "http-basic-authenticator", - "requirement" : "REQUIRED", - "priority" : 10, - "userSetupAllowed" : false, - "autheticatorFlow" : false - } ] - } ], - "authenticatorConfig" : [ { - "id" : "a538254e-ef65-4316-b432-2b9f37b842a0", - "alias" : "create unique user config", - "config" : { - "require.password.update.after.registration" : "false" - } - }, { - "id" : "218ba7cc-4f94-4782-802c-819ee6054f56", - "alias" : "review profile config", - "config" : { - "update.profile.on.first.login" : "missing" - } - } ], - "requiredActions" : [ { - "alias" : "CONFIGURE_TOTP", - "name" : "Configure OTP", - "providerId" : "CONFIGURE_TOTP", - "enabled" : true, - "defaultAction" : false, - "priority" : 10, - "config" : { } - }, { - "alias" : "terms_and_conditions", - "name" : "Terms and Conditions", - "providerId" : "terms_and_conditions", - "enabled" : false, - "defaultAction" : false, - "priority" : 20, - "config" : { } - }, { - "alias" : "UPDATE_PASSWORD", - "name" : "Update Password", - "providerId" : "UPDATE_PASSWORD", - "enabled" : true, - "defaultAction" : false, - "priority" : 30, - "config" : { } - }, { - "alias" : "UPDATE_PROFILE", - "name" : "Update Profile", - "providerId" : "UPDATE_PROFILE", - "enabled" : true, - "defaultAction" : false, - "priority" : 40, - "config" : { } - }, { - "alias" : "VERIFY_EMAIL", - "name" : "Verify Email", - "providerId" : "VERIFY_EMAIL", - "enabled" : true, - "defaultAction" : false, - "priority" : 50, - "config" : { } - }, { - "alias" : "delete_account", - "name" : "Delete Account", - "providerId" : "delete_account", - "enabled" : false, - "defaultAction" : false, - "priority" : 60, - "config" : { } - }, { - "alias" : "update_user_locale", - "name" : "Update User Locale", - "providerId" : "update_user_locale", - "enabled" : true, - "defaultAction" : false, - "priority" : 1000, - "config" : { } - } ], - "browserFlow" : "browser", - "registrationFlow" : "registration", - "directGrantFlow" : "direct grant", - "resetCredentialsFlow" : "reset credentials", - "clientAuthenticationFlow" : "clients", - "dockerAuthenticationFlow" : "docker auth", - "attributes" : { - "clientOfflineSessionMaxLifespan" : "0", - "clientSessionIdleTimeout" : "0", - "clientSessionMaxLifespan" : "0", - "frontendUrl" : "", - "clientOfflineSessionIdleTimeout" : "0" - }, - "keycloakVersion" : "12.0.4", - "userManagedAccessAllowed" : false +{ + "id" : "medina", + "realm" : "medina", + "displayName" : "", + "notBefore" : 1657179281, + "revokeRefreshToken" : false, + "refreshTokenMaxReuse" : 0, + "accessTokenLifespan" : 300, + "accessTokenLifespanForImplicitFlow" : 900, + "ssoSessionIdleTimeout" : 7200, + "ssoSessionMaxLifespan" : 36000, + "ssoSessionIdleTimeoutRememberMe" : 0, + "ssoSessionMaxLifespanRememberMe" : 0, + "offlineSessionIdleTimeout" : 2592000, + "offlineSessionMaxLifespanEnabled" : false, + "offlineSessionMaxLifespan" : 5184000, + "clientSessionIdleTimeout" : 0, + "clientSessionMaxLifespan" : 0, + "clientOfflineSessionIdleTimeout" : 0, + "clientOfflineSessionMaxLifespan" : 0, + "accessCodeLifespan" : 60, + "accessCodeLifespanUserAction" : 300, + "accessCodeLifespanLogin" : 1800, + "actionTokenGeneratedByAdminLifespan" : 43200, + "actionTokenGeneratedByUserLifespan" : 300, + "enabled" : true, + "sslRequired" : "external", + "registrationAllowed" : false, + "registrationEmailAsUsername" : false, + "rememberMe" : false, + "verifyEmail" : false, + "loginWithEmailAllowed" : true, + "duplicateEmailsAllowed" : false, + "resetPasswordAllowed" : false, + "editUsernameAllowed" : false, + "bruteForceProtected" : false, + "permanentLockout" : false, + "maxFailureWaitSeconds" : 900, + "minimumQuickLoginWaitSeconds" : 60, + "waitIncrementSeconds" : 60, + "quickLoginCheckMilliSeconds" : 1000, + "maxDeltaTimeSeconds" : 43200, + "failureFactor" : 30, + "roles" : { + "realm" : [ { + "id" : "2f6015a8-ddee-42f9-99c5-4760bd5fb5c7", + "name" : "ROLE_USER", + "description" : "temporary role for catalogue jhipster", + "composite" : false, + "clientRole" : false, + "containerId" : "medina", + "attributes" : { } + }, { + "id" : "9d96522b-ff58-498d-ad7f-11a747bd924e", + "name" : "offline_access", + "description" : "${role_offline-access}", + "composite" : false, + "clientRole" : false, + "containerId" : "medina", + "attributes" : { } + }, { + "id" : "417a650d-7309-41d2-aecd-cd179c656c65", + "name" : "Auditor", + "description" : "The Conformity Assessment Body (CAB) is a body that performs conformity assessment services with the goal of demonstrating that specified requirements are fulfilled.", + "composite" : true, + "composites" : { + "client" : { + "api-swagger" : [ "user" ], + "integrated-ui" : [ "showCCE", "showUser", "showOrchestrator", "admin" ] + } + }, + "clientRole" : false, + "containerId" : "medina", + "attributes" : { } + }, { + "id" : "f4be5cbc-9612-40c8-912d-7db581b103b5", + "name" : "ProductSecurityEng", + "description" : "Product (Security) Engineer (UC1) - Oversees the build, deploy, and run of a product and its system components.", + "composite" : true, + "composites" : { + "client" : { + "integrated-ui" : [ "showAMOE", "showCNL", "user", "showSATRA", "showCatalogue", "showCCE", "showUser", "showOrchestrator" ] + } + }, + "clientRole" : false, + "containerId" : "medina", + "attributes" : { } + }, { + "id" : "5044ff42-f2d7-4611-8c21-e8db2acc5a21", + "name" : "SecurityGovernance", + "description" : "IT Security Governance (UC1) - Its main objective is the protection of Bosch business models, products, services, and data.", + "composite" : true, + "composites" : { + "client" : { + "integrated-ui" : [ "showAMOE", "showCNL", "user", "showSATRA", "showCatalogue", "showCCE", "showUser", "showOrchestrator" ] + } + }, + "clientRole" : false, + "containerId" : "medina", + "attributes" : { } + }, { + "id" : "e7a1a6f7-61b0-475a-9a53-6a74419bab2b", + "name" : "ProductOwner", + "description" : "Product and Service Owner (UC1) - The Product & Service Owner is the central point of contact for all questions concerning a specific Bosch IT product or service.", + "composite" : true, + "composites" : { + "client" : { + "integrated-ui" : [ "showAMOE", "showCNL", "user", "showSATRA", "showCatalogue", "showCCE", "showUser", "showOrchestrator" ] + } + }, + "clientRole" : false, + "containerId" : "medina", + "attributes" : { } + }, { + "id" : "8bd9d01c-32ed-46ac-8e19-75433e2c883a", + "name" : "DomainGovernance", + "description" : "Domain Governance (UC1) - Acts as the core competence holder and responsible topic owner for product security.", + "composite" : true, + "composites" : { + "client" : { + "integrated-ui" : [ "showAMOE", "showCNL", "user", "showSATRA", "showCatalogue", "showCCE", "showUser", "showOrchestrator" ] + } + }, + "clientRole" : false, + "containerId" : "medina", + "attributes" : { } + }, { + "id" : "1c22589c-f6d3-4ce4-bdfa-1bea5ef89815", + "name" : "SecurityAnalyst", + "description" : "Security Analyst (UC1) - Responsible for ensuring that the Bosch Group’s digital assets and sensitive information are protected as well as evaluating and reporting on the efficiency of the security policies in place.", + "composite" : true, + "composites" : { + "client" : { + "integrated-ui" : [ "showAMOE", "showCNL", "user", "showSATRA", "showCatalogue", "showCCE", "showUser", "showOrchestrator" ] + } + }, + "clientRole" : false, + "containerId" : "medina", + "attributes" : { } + }, { + "id" : "0f08df2b-4b64-487c-9e51-2580a02ae0ef", + "name" : "Customer", + "description" : "The customer is either a company consuming cloud products or services (B2B, business-to-business context), or an individual (B2C, business-to-customer context).", + "composite" : false, + "clientRole" : false, + "containerId" : "medina", + "attributes" : { } + }, { + "id" : "dac0890c-0957-40ed-b72f-37ca91a59d6e", + "name" : "Company", + "description" : "Most of the defined roles are employed by the company. Products of company are being audited", + "composite" : true, + "composites" : { + "client" : { + "integrated-ui" : [ "showAMOE", "showCNL", "user", "showSATRA", "showCatalogue", "showCCE", "showUser", "showOrchestrator" ] + } + }, + "clientRole" : false, + "containerId" : "medina", + "attributes" : { } + }, { + "id" : "f4c52c7f-c34d-4101-8c11-523dbc526d72", + "name" : "ICO", + "description" : "Internal Control Owner - Responsible for creating internal controls. Executing the internal controls.", + "composite" : false, + "clientRole" : false, + "containerId" : "medina", + "attributes" : { } + }, { + "id" : "ec325a48-83c2-4b16-96be-305dc4767132", + "name" : "uma_authorization", + "description" : "${role_uma_authorization}", + "composite" : false, + "clientRole" : false, + "containerId" : "medina", + "attributes" : { } + }, { + "id" : "64dbcf9f-4231-4163-828a-5fa4fe9db278", + "name" : "CISO", + "description" : "Chief Information Security Officer - Responsible for security in the company, chooses what security controls should be implemented\n\nThe Chief Information Security Officer (CISO) UC1 is who the Compliance Manager has to report to.", + "composite" : true, + "composites" : { + "client" : { + "integrated-ui" : [ "showAMOE", "showCNL", "user", "showSATRA", "showCatalogue", "showCCE", "showUser", "showOrchestrator" ] + } + }, + "clientRole" : false, + "containerId" : "medina", + "attributes" : { } + }, { + "id" : "e7c3caa6-1e16-4cf6-9484-b0af649117df", + "name" : "Compliance Manager", + "description" : "Responsible for the implementation of security control frameworks.\nResponsible for the correct implementation of the internal controls.\nResponsible for incident management.\nResponsible for performing internal audits.", + "composite" : true, + "composites" : { + "client" : { + "raof" : [ "engine" ], + "cnl-editor-frontend" : [ "user" ], + "integrated-ui" : [ "showSSI", "user", "showSATRA", "showUser", "showAMOE", "showCNL", "showCatalogue", "showCCE", "showOrchestrator", "admin" ], + "nl2cnl-translator-client" : [ "user" ] + } + }, + "clientRole" : false, + "containerId" : "medina", + "attributes" : { } + }, { + "id" : "fd93daa9-1357-4ba3-989d-7bf4b7ba2a07", + "name" : "ROLE_ADMIN", + "description" : "temporary role for catalogue jhipster", + "composite" : false, + "clientRole" : false, + "containerId" : "medina", + "attributes" : { } + } ], + "client" : { + "catalogue-backend" : [ ], + "raof-app" : [ { + "id" : "9f63da36-943c-4b9e-a92e-2632a76663dd", + "name" : "uma_protection", + "composite" : false, + "clientRole" : true, + "containerId" : "b1293ae0-e720-40cb-ae6f-db7fc9b1fe92", + "attributes" : { } + }, { + "id" : "d252437f-135a-4d7d-8af5-479572a0c33a", + "name" : "app", + "composite" : false, + "clientRole" : true, + "containerId" : "b1293ae0-e720-40cb-ae6f-db7fc9b1fe92", + "attributes" : { } + } ], + "security-admin-console" : [ ], + "wazuh-vat-evidence-collector-dev" : [ { + "id" : "3c40a84f-dc61-43d1-a607-e3fad0df3766", + "name" : "uma_protection", + "composite" : false, + "clientRole" : true, + "containerId" : "aa18689d-6d81-4b92-8b9e-291eb4733408", + "attributes" : { } + } ], + "clouditor-assessment" : [ ], + "account-console" : [ ], + "ssi-frontend" : [ ], + "amoe-client" : [ ], + "dsl-mapper-client" : [ { + "id" : "eeeb0fe7-bdc7-480a-9ad2-9de9c1dec3e1", + "name" : "uma_protection", + "composite" : false, + "clientRole" : true, + "containerId" : "26022d63-5c85-4953-9995-1e55fc6218ee", + "attributes" : { } + } ], + "cce-dev" : [ { + "id" : "aa5844fb-a4f8-4cfa-8514-1f4033e8bd9c", + "name" : "uma_protection", + "composite" : false, + "clientRole" : true, + "containerId" : "dc64b28b-a696-4b0c-8e24-2aeae138c3e5", + "attributes" : { } + } ], + "clouditor-cli" : [ ], + "codyze" : [ ], + "admin-cli" : [ ], + "catalogue-jhipster-control-center" : [ ], + "catalogue-registry" : [ ], + "clouditor-orchestrator" : [ ], + "realm-management" : [ { + "id" : "e02ce89a-c0b9-43b5-b6be-5c515624927a", + "name" : "manage-clients", + "description" : "${role_manage-clients}", + "composite" : false, + "clientRole" : true, + "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", + "attributes" : { } + }, { + "id" : "5bc05c8b-6d6a-45a1-92f7-cc33f4fe57bd", + "name" : "view-authorization", + "description" : "${role_view-authorization}", + "composite" : false, + "clientRole" : true, + "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", + "attributes" : { } + }, { + "id" : "0ee5608f-ab3a-4a8e-889b-e0d230a2fc86", + "name" : "view-clients", + "description" : "${role_view-clients}", + "composite" : true, + "composites" : { + "client" : { + "realm-management" : [ "query-clients" ] + } + }, + "clientRole" : true, + "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", + "attributes" : { } + }, { + "id" : "c2bd9190-451c-45d7-9588-412e1c40d5fd", + "name" : "manage-authorization", + "description" : "${role_manage-authorization}", + "composite" : false, + "clientRole" : true, + "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", + "attributes" : { } + }, { + "id" : "83e3e683-50b5-4050-b88b-2178342a13f8", + "name" : "manage-events", + "description" : "${role_manage-events}", + "composite" : false, + "clientRole" : true, + "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", + "attributes" : { } + }, { + "id" : "4e9c2113-f0d3-4691-bb66-49e3ca218d63", + "name" : "query-clients", + "description" : "${role_query-clients}", + "composite" : false, + "clientRole" : true, + "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", + "attributes" : { } + }, { + "id" : "cdca2718-5853-4969-9b63-2186e0382085", + "name" : "query-realms", + "description" : "${role_query-realms}", + "composite" : false, + "clientRole" : true, + "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", + "attributes" : { } + }, { + "id" : "33eb311b-fdbc-4ccf-b367-ae2b1c8c2e55", + "name" : "view-users", + "description" : "${role_view-users}", + "composite" : true, + "composites" : { + "client" : { + "realm-management" : [ "query-users", "query-groups" ] + } + }, + "clientRole" : true, + "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", + "attributes" : { } + }, { + "id" : "56382323-69f8-4eca-b433-aa14ccc83be3", + "name" : "manage-identity-providers", + "description" : "${role_manage-identity-providers}", + "composite" : false, + "clientRole" : true, + "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", + "attributes" : { } + }, { + "id" : "2db34bf8-3fac-4fb8-8ed4-b7f44cadcb2e", + "name" : "create-client", + "description" : "${role_create-client}", + "composite" : false, + "clientRole" : true, + "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", + "attributes" : { } + }, { + "id" : "ae7b03e5-747f-4341-8add-1c872658bec4", + "name" : "view-events", + "description" : "${role_view-events}", + "composite" : false, + "clientRole" : true, + "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", + "attributes" : { } + }, { + "id" : "a607a195-5e2c-4701-855d-d202ba52a313", + "name" : "manage-users", + "description" : "${role_manage-users}", + "composite" : false, + "clientRole" : true, + "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", + "attributes" : { } + }, { + "id" : "3f2bf59d-4b3f-425a-a75f-e6b8c6d27af0", + "name" : "view-realm", + "description" : "${role_view-realm}", + "composite" : false, + "clientRole" : true, + "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", + "attributes" : { } + }, { + "id" : "d23239ef-028a-4409-b965-e20ea6ac8795", + "name" : "impersonation", + "description" : "${role_impersonation}", + "composite" : false, + "clientRole" : true, + "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", + "attributes" : { } + }, { + "id" : "f724e1e9-a878-4ae3-9bc8-995767add1a3", + "name" : "manage-realm", + "description" : "${role_manage-realm}", + "composite" : false, + "clientRole" : true, + "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", + "attributes" : { } + }, { + "id" : "e6b7421d-7d5c-4f1c-bb48-0a873c9870c4", + "name" : "query-users", + "description" : "${role_query-users}", + "composite" : false, + "clientRole" : true, + "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", + "attributes" : { } + }, { + "id" : "7a81ec99-e710-409d-bd34-ae3642a1912d", + "name" : "view-identity-providers", + "description" : "${role_view-identity-providers}", + "composite" : false, + "clientRole" : true, + "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", + "attributes" : { } + }, { + "id" : "fbeca797-27ee-44a0-8566-bec5666e6bcc", + "name" : "query-groups", + "description" : "${role_query-groups}", + "composite" : false, + "clientRole" : true, + "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", + "attributes" : { } + }, { + "id" : "f9ea5c84-0690-47f4-b887-a3351ca800de", + "name" : "realm-admin", + "description" : "${role_realm-admin}", + "composite" : true, + "composites" : { + "client" : { + "realm-management" : [ "view-authorization", "manage-clients", "view-clients", "manage-authorization", "query-clients", "manage-events", "view-users", "query-realms", "manage-identity-providers", "create-client", "view-events", "view-realm", "manage-users", "impersonation", "manage-realm", "query-users", "view-identity-providers", "query-groups" ] + } + }, + "clientRole" : true, + "containerId" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", + "attributes" : { } + } ], + "api-swagger" : [ { + "id" : "a7aa8c9f-7cc5-4c91-8657-31b74ba02a1a", + "name" : "uma_protection", + "composite" : false, + "clientRole" : true, + "containerId" : "a08fc1fe-7c85-4c1c-9d04-604c6e35faa8", + "attributes" : { } + }, { + "id" : "88fa7113-8fd5-4dd4-940d-e0e2e06471d4", + "name" : "user", + "composite" : false, + "clientRole" : true, + "containerId" : "a08fc1fe-7c85-4c1c-9d04-604c6e35faa8", + "attributes" : { } + } ], + "cnl-editor-frontend" : [ { + "id" : "910ffe29-95b3-4b82-a734-b24bff7cfa8d", + "name" : "user", + "composite" : false, + "clientRole" : true, + "containerId" : "15a81bd1-4edd-4e2a-87ec-3bbcac30d2a3", + "attributes" : { } + } ], + "life-cycle-manager" : [ ], + "integrated-ui" : [ { + "id" : "a5a53481-ea0b-45c2-862d-f7d0fb34f729", + "name" : "showAMOE", + "composite" : false, + "clientRole" : true, + "containerId" : "1150f83f-37bc-4b14-98a0-e179aaee0f6c", + "attributes" : { } + }, { + "id" : "b4d956c3-d994-4f84-8b38-fc6d852b6bdd", + "name" : "showCNL", + "composite" : false, + "clientRole" : true, + "containerId" : "1150f83f-37bc-4b14-98a0-e179aaee0f6c", + "attributes" : { } + }, { + "id" : "1bc56f79-8b88-4f8f-bd29-ba45697c34e0", + "name" : "showSSI", + "composite" : false, + "clientRole" : true, + "containerId" : "1150f83f-37bc-4b14-98a0-e179aaee0f6c", + "attributes" : { } + }, { + "id" : "258c00de-d88c-4239-908b-be79f895c3b0", + "name" : "user", + "composite" : false, + "clientRole" : true, + "containerId" : "1150f83f-37bc-4b14-98a0-e179aaee0f6c", + "attributes" : { } + }, { + "id" : "98832eba-06b3-4ded-b942-d57c7ebdbe31", + "name" : "showSATRA", + "composite" : false, + "clientRole" : true, + "containerId" : "1150f83f-37bc-4b14-98a0-e179aaee0f6c", + "attributes" : { } + }, { + "id" : "d93343d0-0b68-4ca0-b2f8-eb3b15e72e2e", + "name" : "showCatalogue", + "composite" : false, + "clientRole" : true, + "containerId" : "1150f83f-37bc-4b14-98a0-e179aaee0f6c", + "attributes" : { } + }, { + "id" : "eb3782f2-ac99-463b-8f27-0aebd9268da9", + "name" : "showCCE", + "composite" : false, + "clientRole" : true, + "containerId" : "1150f83f-37bc-4b14-98a0-e179aaee0f6c", + "attributes" : { } + }, { + "id" : "0e7789d4-aeaf-435d-9b9d-28a8940eb54d", + "name" : "showUser", + "composite" : false, + "clientRole" : true, + "containerId" : "1150f83f-37bc-4b14-98a0-e179aaee0f6c", + "attributes" : { } + }, { + "id" : "ae424f76-ac11-4a9b-939d-67ab55a0fc5a", + "name" : "admin", + "composite" : false, + "clientRole" : true, + "containerId" : "1150f83f-37bc-4b14-98a0-e179aaee0f6c", + "attributes" : { } + }, { + "id" : "4282e3ba-2852-4363-9656-ac8a4506b615", + "name" : "showOrchestrator", + "composite" : false, + "clientRole" : true, + "containerId" : "1150f83f-37bc-4b14-98a0-e179aaee0f6c", + "attributes" : { } + } ], + "ccd-client" : [ ], + "broker" : [ { + "id" : "381e01c5-2dce-4da6-854b-334d015e7224", + "name" : "read-token", + "description" : "${role_read-token}", + "composite" : false, + "clientRole" : true, + "containerId" : "8d1a867d-537c-433e-8234-b3582127cc54", + "attributes" : { } + } ], + "clouditor-ui" : [ ], + "trustworthiness-client" : [ ], + "raof" : [ { + "id" : "1b9ea322-ed7f-4c54-b7f3-21d54f0df796", + "name" : "engine", + "composite" : true, + "composites" : { + "client" : { + "raof" : [ "engine" ] + } + }, + "clientRole" : true, + "containerId" : "7de21575-b215-40f4-b6b1-d2f6abc33dcd", + "attributes" : { } + } ], + "nl2cnl-translator-client" : [ { + "id" : "8fdf06d3-6c44-4aa3-bb0a-80dc589ced1c", + "name" : "uma_protection", + "composite" : false, + "clientRole" : true, + "containerId" : "9f7c65f7-9ae9-4c9e-9bd7-971d0cbe146d", + "attributes" : { } + }, { + "id" : "4486610d-0195-463c-bf2f-cf4cd10001c8", + "name" : "user", + "composite" : false, + "clientRole" : true, + "containerId" : "9f7c65f7-9ae9-4c9e-9bd7-971d0cbe146d", + "attributes" : { } + } ], + "monitor-client" : [ ], + "catalogue-gateway" : [ ], + "clouditor-discovery" : [ ], + "account" : [ { + "id" : "ad76fbd3-fd48-4820-8454-c9e6e8b21da5", + "name" : "manage-consent", + "description" : "${role_manage-consent}", + "composite" : true, + "composites" : { + "client" : { + "account" : [ "view-consent" ] + } + }, + "clientRole" : true, + "containerId" : "8bd89baf-08f6-4e4b-8394-6b4dd6050ed2", + "attributes" : { } + }, { + "id" : "3cf9ad63-38af-430f-86da-bf7455dfb668", + "name" : "view-applications", + "description" : "${role_view-applications}", + "composite" : false, + "clientRole" : true, + "containerId" : "8bd89baf-08f6-4e4b-8394-6b4dd6050ed2", + "attributes" : { } + }, { + "id" : "a47fd133-6ba5-4870-af1b-9a17b76be404", + "name" : "view-consent", + "description" : "${role_view-consent}", + "composite" : false, + "clientRole" : true, + "containerId" : "8bd89baf-08f6-4e4b-8394-6b4dd6050ed2", + "attributes" : { } + }, { + "id" : "36ac4d35-7384-40c3-a877-7a2934bc9250", + "name" : "manage-account-links", + "description" : "${role_manage-account-links}", + "composite" : false, + "clientRole" : true, + "containerId" : "8bd89baf-08f6-4e4b-8394-6b4dd6050ed2", + "attributes" : { } + }, { + "id" : "3e5612a2-7c5c-4026-a6ac-7a332e266aab", + "name" : "manage-account", + "description" : "${role_manage-account}", + "composite" : true, + "composites" : { + "client" : { + "account" : [ "manage-account-links" ] + } + }, + "clientRole" : true, + "containerId" : "8bd89baf-08f6-4e4b-8394-6b4dd6050ed2", + "attributes" : { } + }, { + "id" : "1062c184-cad0-462d-ad3a-d51d5208536c", + "name" : "delete-account", + "description" : "${role_delete-account}", + "composite" : false, + "clientRole" : true, + "containerId" : "8bd89baf-08f6-4e4b-8394-6b4dd6050ed2", + "attributes" : { } + }, { + "id" : "d1a2381b-d165-43fb-a79d-8c614c46b96e", + "name" : "view-profile", + "description" : "${role_view-profile}", + "composite" : false, + "clientRole" : true, + "containerId" : "8bd89baf-08f6-4e4b-8394-6b4dd6050ed2", + "attributes" : { } + } ] + } + }, + "groups" : [ { + "id" : "166cd956-3363-4c60-8cfd-439802de3cbf", + "name" : "Bosch Cloud Service", + "path" : "/Bosch Cloud Service", + "attributes" : { + "cloudserviceid" : [ "45816733-94d7-4664-b176-c1cb7ae18cdd" ] + }, + "realmRoles" : [ ], + "clientRoles" : { }, + "subGroups" : [ ] + }, { + "id" : "6bb4273f-6d43-4e99-afc8-da20de523af0", + "name" : "Bosch_IaaS", + "path" : "/Bosch_IaaS", + "attributes" : { + "cloudserviceid" : [ "937210b1-a9f2-4929-bbbc-5a7ecc0f089f" ] + }, + "realmRoles" : [ ], + "clientRoles" : { }, + "subGroups" : [ ] + }, { + "id" : "c77dd236-fc1e-4379-97f4-6cf10cc73ee9", + "name" : "Bosch_PaaS", + "path" : "/Bosch_PaaS", + "attributes" : { + "cloudserviceid" : [ "dc1eff0d-4afd-4e2f-8b62-13458c56a540" ] + }, + "realmRoles" : [ ], + "clientRoles" : { }, + "subGroups" : [ ] + }, { + "id" : "5b2ebad6-4a48-40f4-889e-dab65b5815ac", + "name" : "Bosch_SaaS", + "path" : "/Bosch_SaaS", + "attributes" : { + "cloudserviceid" : [ "f7c1e5c3-511e-45d1-bf7c-867cdc6a8db9" ] + }, + "realmRoles" : [ ], + "clientRoles" : { }, + "subGroups" : [ ] + }, { + "id" : "2bd68002-b386-49f8-a982-174e9fdfa3cb", + "name" : "DefaultCloudService", + "path" : "/DefaultCloudService", + "attributes" : { + "cloudserviceid" : [ "00000000-0000-0000-0000-000000000000" ] + }, + "realmRoles" : [ ], + "clientRoles" : { }, + "subGroups" : [ ] + }, { + "id" : "b0ebc028-4997-44fc-856d-bda80eefd29b", + "name" : "Fabasoft Cloud 1", + "path" : "/Fabasoft Cloud 1", + "attributes" : { + "cloudserviceid" : [ "5f7c6df4-d3a4-41e2-b1e0-757eb3b7c3a7" ] + }, + "realmRoles" : [ ], + "clientRoles" : { }, + "subGroups" : [ ] + }, { + "id" : "3542ee13-d9e3-432e-99f5-11733bceafb5", + "name" : "OldDefaultCS", + "path" : "/OldDefaultCS", + "attributes" : { + "cloudserviceid" : [ "00000000-0000-0000-000000000000" ] + }, + "realmRoles" : [ ], + "clientRoles" : { }, + "subGroups" : [ ] + }, { + "id" : "b18d27ac-f4dc-4e3b-b488-e59e3af21eb5", + "name" : "TestCloudService", + "path" : "/TestCloudService", + "attributes" : { + "cloudserviceid" : [ "cf52d866-993f-11ec-b909-0242ac120002" ] + }, + "realmRoles" : [ ], + "clientRoles" : { }, + "subGroups" : [ ] + }, { + "id" : "fe88c642-63e3-4223-ab55-ded3d4edc650", + "name" : "TestCloudService2", + "path" : "/TestCloudService2", + "attributes" : { + "cloudserviceid" : [ "793dcdfe-9940-11ec-b909-0242ac120002" ] + }, + "realmRoles" : [ ], + "clientRoles" : { }, + "subGroups" : [ ] + } ], + "defaultRoles" : [ "offline_access", "uma_authorization" ], + "requiredCredentials" : [ "password" ], + "otpPolicyType" : "totp", + "otpPolicyAlgorithm" : "HmacSHA1", + "otpPolicyInitialCounter" : 0, + "otpPolicyDigits" : 6, + "otpPolicyLookAheadWindow" : 1, + "otpPolicyPeriod" : 30, + "otpSupportedApplications" : [ "FreeOTP", "Google Authenticator" ], + "webAuthnPolicyRpEntityName" : "keycloak", + "webAuthnPolicySignatureAlgorithms" : [ "ES256" ], + "webAuthnPolicyRpId" : "", + "webAuthnPolicyAttestationConveyancePreference" : "not specified", + "webAuthnPolicyAuthenticatorAttachment" : "not specified", + "webAuthnPolicyRequireResidentKey" : "not specified", + "webAuthnPolicyUserVerificationRequirement" : "not specified", + "webAuthnPolicyCreateTimeout" : 0, + "webAuthnPolicyAvoidSameAuthenticatorRegister" : false, + "webAuthnPolicyAcceptableAaguids" : [ ], + "webAuthnPolicyPasswordlessRpEntityName" : "keycloak", + "webAuthnPolicyPasswordlessSignatureAlgorithms" : [ "ES256" ], + "webAuthnPolicyPasswordlessRpId" : "", + "webAuthnPolicyPasswordlessAttestationConveyancePreference" : "not specified", + "webAuthnPolicyPasswordlessAuthenticatorAttachment" : "not specified", + "webAuthnPolicyPasswordlessRequireResidentKey" : "not specified", + "webAuthnPolicyPasswordlessUserVerificationRequirement" : "not specified", + "webAuthnPolicyPasswordlessCreateTimeout" : 0, + "webAuthnPolicyPasswordlessAvoidSameAuthenticatorRegister" : false, + "webAuthnPolicyPasswordlessAcceptableAaguids" : [ ], + "users" : [ { + "id" : "bb6244c3-35ec-4908-b4e0-73b159cc7a04", + "createdTimestamp" : 1646126460390, + "username" : "admin", + "enabled" : true, + "totp" : false, + "emailVerified" : true, + "firstName" : "admin", + "email" : "admin@localhost", + "credentials" : [ { + "id" : "4525a467-f0db-47e7-9f5a-edae4109844a", + "type" : "password", + "createdDate" : 1646126469027, + "secretData" : "{\"value\":\"BaRnqXmvxOYEu8fmlMYD+tpEIhbvW6m4KR9lzAl4f02Lt2WBUK2v7S/QobMoYEXqGWQxLpJnpsUcKlY9YGSiMw==\",\"salt\":\"rjK2JqIKXPdb1A03p8VcQw==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "ROLE_USER", "offline_access", "Auditor", "uma_authorization", "ROLE_ADMIN", "Compliance Manager" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ "/Bosch Cloud Service", "/Bosch_IaaS", "/Bosch_PaaS", "/Bosch_SaaS", "/Fabasoft Cloud 1" ] + }, { + "id" : "3a3fec51-75aa-4782-8ef1-3c628963a60c", + "createdTimestamp" : 1676296927181, + "username" : "aitor.gomez@tecnalia.com", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "credentials" : [ { + "id" : "b15073b7-8012-431e-9625-0ca7b18edcc6", + "type" : "password", + "createdDate" : 1676296979998, + "secretData" : "{\"value\":\"U4yMKC7iUy0fZhOVeCt6lcEJhsextqOUJr/4WWASTNvFs94QOEtwiGWGizayZuI+bAj1wYBZDkhag7gBVGWUhw==\",\"salt\":\"BP+fXsvLhh1dEMwhfwUjrg==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "ROLE_USER", "offline_access", "Auditor", "uma_authorization", "Compliance Manager" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "08fbe789-4ada-4b3a-bcf1-dc20b469911b", + "createdTimestamp" : 1646739467160, + "username" : "amoe_test", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "credentials" : [ { + "id" : "da7be389-1b6a-42fa-8eb6-95fc83dc1cfa", + "type" : "password", + "createdDate" : 1668502519374, + "secretData" : "{\"value\":\"M7scn95mREfmO8vIpOTG6NTmsmHLvr9EjBOtr8Zclp7WFXddB7+j1kx58ABIOOBP8ZS48k3xgAUemRt72VNEeg==\",\"salt\":\"pJsw1f2K2Dtfo2RX4lg2yg==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "ICO", "uma_authorization" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ "/DefaultCloudService", "/OldDefaultCS" ] + }, { + "id" : "688d9e58-8963-43be-b2f7-ab69845fc336", + "createdTimestamp" : 1674114558155, + "username" : "auditor", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "credentials" : [ { + "id" : "2ccf2ad5-f8f6-4fd7-b590-3398a2317911", + "type" : "password", + "createdDate" : 1674114569399, + "secretData" : "{\"value\":\"ewwivz4LK7bkn9jnPdMENK7sR3y7E8MBh12FxvNcWioOMA2dsORZgDct4CIykAlkybn7XFyEcvbPQm0N9G3/Gw==\",\"salt\":\"ypdbFumQE+Df+0UDoUa0ow==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "Auditor", "uma_authorization" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ "/DefaultCloudService", "/OldDefaultCS" ] + }, { + "id" : "c87d3504-6360-4a55-bf60-feccba3f0c13", + "createdTimestamp" : 1677070325719, + "username" : "borja.urkizu", + "enabled" : true, + "totp" : false, + "emailVerified" : true, + "firstName" : "Borja", + "lastName" : "Urkizu", + "email" : "borja.urquizu@tecnalia.com", + "credentials" : [ { + "id" : "ed1458ff-57bb-42eb-ab4d-6a0284190427", + "type" : "password", + "createdDate" : 1677070341176, + "secretData" : "{\"value\":\"Ur4vImGULh34LRv3mEAkWdHxl1sp02u+wkXqjznOR0rLETxHGW+Aq8pctrlUy0QbTG8aEctbuXoSTORB3sZFgw==\",\"salt\":\"WykVEsLFyHsHEuUQceCJgw==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 1677076106, + "groups" : [ ] + }, { + "id" : "8adbe3fd-210d-4ea1-84a0-a297756639aa", + "createdTimestamp" : 1653572749804, + "username" : "bosch_test", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "email" : "m.fazzolari@iit.cnr.it", + "credentials" : [ { + "id" : "7a420a9c-ba11-43d8-9da1-13d53a962cbe", + "type" : "password", + "createdDate" : 1653572824786, + "secretData" : "{\"value\":\"2i/eA+1NOHQ1biq8GcsqwBW/CwAQkSQ9Hhb07VG2ZzDPKWnkfkLRXy8u+TRaWOtyfqRd2Xtmq0LT6J0aPrhovg==\",\"salt\":\"gMXcUs5vhSgkdfKleRTHKw==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "Auditor", "uma_authorization", "Compliance Manager" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "fa0e5868-aa50-4a84-9e87-50f354663b94", + "createdTimestamp" : 1673272487638, + "username" : "ccd_admin", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "credentials" : [ { + "id" : "c88f49cc-9add-4bdf-b912-18864f414927", + "type" : "password", + "createdDate" : 1673272673399, + "secretData" : "{\"value\":\"IKAWwbzgvn83kYMgGucRztae2+96EPktrvMgGIRGACgGsl0RVguXFN6S9dd4Z6jHzvaPx81T376dvmwNhzPLXg==\",\"salt\":\"Dg4Pi9VASgefg849TyDyTg==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "ROLE_USER", "offline_access", "Auditor", "uma_authorization", "CISO", "ROLE_ADMIN", "Compliance Manager" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ "/Fabasoft Cloud 1" ] + }, { + "id" : "58b1e813-3cae-4393-a0bb-0cd9f6696f0b", + "createdTimestamp" : 1674114452103, + "username" : "ciso", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "credentials" : [ { + "id" : "9fec8a96-2f84-42fe-a4b3-cc46553051fc", + "type" : "password", + "createdDate" : 1674114461934, + "secretData" : "{\"value\":\"ISBbJ1EN/h8hk4k358O/xxliu7REW+BjftW0JJ7cE8M41uOrSXId3eti2hjRLNbTka4nsjM4hH7aLAvps7+PFw==\",\"salt\":\"QHrM0wPFPuHeBh5sbUl85A==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "ROLE_USER", "offline_access", "uma_authorization" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ "/DefaultCloudService", "/OldDefaultCS" ] + }, { + "id" : "697b478d-4f1f-4810-9725-5f56a9ae16a0", + "createdTimestamp" : 1655205513528, + "username" : "cnr-test", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "firstName" : "stefano", + "lastName" : "Fagnano", + "email" : "stefanocb98@gmail.com", + "attributes" : { + "locale" : [ "en" ] + }, + "credentials" : [ { + "id" : "6b4c3b07-6792-4b15-8d89-f0a23f835446", + "type" : "password", + "createdDate" : 1655205534437, + "secretData" : "{\"value\":\"ouW1+/MjW1avsBwLoNhZRV5oLXNWYZZMjQP1FKanhZklpkwdLwasmm2lCGGYj5/0BEB9o1o/c0uBkZaukOTdxA==\",\"salt\":\"5Ij3l5iIutoKPAQ4rd99vA==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization" ], + "clientRoles" : { + "raof" : [ "engine" ], + "raof-app" : [ "uma_protection" ], + "integrated-ui" : [ "user" ], + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "5b083c04-bbda-48be-8441-fbe16968902b", + "createdTimestamp" : 1650710929018, + "username" : "cnr-user", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "firstName" : "Stefano", + "lastName" : "Fagnano", + "email" : "stefano.fagnano@me.com", + "credentials" : [ { + "id" : "fe14429e-56cf-4810-8ca2-7fab0ea81a80", + "type" : "password", + "createdDate" : 1650710973177, + "secretData" : "{\"value\":\"t+/Zdw3TRlptIsNjJh22t1t2rJmNsanwsZkqfgI0++tKxhnq8pMZCHmX8RTLuotokLNPjzC+oWTxpOjdQwJ5vg==\",\"salt\":\"7NvfqfUVIqeY9uVBwG5+kw==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization", "Compliance Manager" ], + "clientRoles" : { + "raof" : [ "engine" ], + "raof-app" : [ "uma_protection" ], + "integrated-ui" : [ "user", "showSATRA", "showUser", "showAMOE", "showCNL", "showCatalogue", "showCCE", "showOrchestrator" ], + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 1653233799, + "groups" : [ ] + }, { + "id" : "96cd59af-6edb-42cf-a753-3744cb6bbac1", + "createdTimestamp" : 1655198337858, + "username" : "compliance_manager_test", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "credentials" : [ { + "id" : "b8bada5e-3f3e-4e2e-88ab-2248a33f94e2", + "type" : "password", + "createdDate" : 1655731227673, + "secretData" : "{\"value\":\"RSKjd8hZQqSGf3kYViWWnIBujcRW9OJUtecUlUAPwqFGjYLCNVLCdizFc//WQTSnYWABsBLnT2d5bYqfN+Xwgg==\",\"salt\":\"zlnTjyaMsFoHl9K6/6B1Mw==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization", "Compliance Manager" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "1247915b-d17c-4b5b-aad6-889c24225420", + "createdTimestamp" : 1646842473867, + "username" : "fabasoftpe", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "credentials" : [ { + "id" : "99ea9dc6-b4b3-4e0b-8aa9-2ecf58daa670", + "type" : "password", + "createdDate" : 1646842549296, + "secretData" : "{\"value\":\"rjCSXoy+G2SbrGgLqP8Qtx9eJYGheRLzVaZ2W7tZ7SO14I9K7W0GZFK7gg/wwZe7fNCT4c+kTWuuK42cR7JAiA==\",\"salt\":\"ViuDtUVx++5GGlqT+Kajvg==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "ROLE_USER", "offline_access", "uma_authorization", "Compliance Manager" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "d1350fbb-44dc-460a-b09f-09e39d24813b", + "createdTimestamp" : 1653900244095, + "username" : "jlunagar", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "firstName" : "Jesus", + "lastName" : "Luna", + "email" : "jesus.lunagarcia@de.bosch.com", + "credentials" : [ ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "federatedIdentities" : [ { + "identityProvider" : "oidc", + "userId" : "GKn0JglY4EuL/COIDpC4xtWS8XbWmlQcWNN1lxaxTMw=", + "userName" : "gkn0jgly4eul/coidpc4xtws8xbwmlqcwnn1lxaxtmw=" + } ], + "realmRoles" : [ "ROLE_USER", "offline_access", "Auditor", "ProductSecurityEng", "uma_authorization", "Compliance Manager" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ "/Bosch Cloud Service", "/Bosch_IaaS", "/Bosch_PaaS", "/Bosch_SaaS" ] + }, { + "id" : "dbdb2c43-a90d-4bd8-a29a-c23d00e8a5fc", + "createdTimestamp" : 1646842573862, + "username" : "lawexpert", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "credentials" : [ { + "id" : "47c67cc2-9fec-471f-aee3-b93cb8fb50d4", + "type" : "password", + "createdDate" : 1646842584938, + "secretData" : "{\"value\":\"4u0v3JqYQ/m7qYSuG8gcxfdMveQyTLkOK1t9YTXsdH9b6XWmcmx+eemKvvZzlhGLrZ2JoyRv3Emr7E3gacWvbw==\",\"salt\":\"hKwIjTGtDpDCPw0r7xFMyA==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization", "Compliance Manager" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "9c1f2d59-15e9-4b6f-b62d-bc1a89121611", + "createdTimestamp" : 1668089128545, + "username" : "levilĂĽbbe", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "firstName" : "levi", + "lastName" : "lĂĽbbe", + "email" : "fixed-term.levi.luebbe@de.bosch.com", + "credentials" : [ ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "federatedIdentities" : [ { + "identityProvider" : "oidc", + "userId" : "n/s6GK+IJlhIlRsPzqrQtbn5RmwurgRTzMuZh/9IFGg=", + "userName" : "n/s6gk+ijlhilrspzqrqtbn5rmwurgrtzmuzh/9ifgg=" + } ], + "realmRoles" : [ "offline_access", "Auditor", "uma_authorization", "Compliance Manager" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "24f4e5ea-768f-41d2-97a5-180eab0a2cd2", + "createdTimestamp" : 1656606618490, + "username" : "luca", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "email" : "lucapetrillo0@gmail.com", + "credentials" : [ { + "id" : "0e36b228-c1a7-4876-b30e-ed734c18e1d6", + "type" : "password", + "createdDate" : 1657094922413, + "secretData" : "{\"value\":\"7rSaBeOmKvggX4nc+aIOZZN0HzPy1y6jvm+l1h1NCIHvsHbsV0td6DLdwN7dKcGDv2JvFHZhWtLe79FBKOMLUQ==\",\"salt\":\"7JCqQJE+eleRnUqHsIT96A==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "42f7dcd9-4a64-45eb-b11f-68000800cfd2", + "createdTimestamp" : 1653476339140, + "username" : "michela", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "email" : "michela.fazzolari@iit.cnr.it", + "credentials" : [ { + "id" : "f11e0aa4-b14d-49f9-a47b-12caa3783abc", + "type" : "password", + "createdDate" : 1653476386915, + "secretData" : "{\"value\":\"pv8WFjM2fwr4CXjzxiDGYsC5NHoXW9u6fTrQnaPooiTNM7So+om+r6cymlLlekMSqTpMmGhLjWeojU4AzmK/4A==\",\"salt\":\"J+UV0jk36JGBWKdMKI8Crg==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "Auditor", "uma_authorization", "Compliance Manager", "ROLE_ADMIN" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "5459884f-0e81-4541-b0f7-039143074658", + "createdTimestamp" : 1647939833771, + "username" : "nl2cnl_test", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "credentials" : [ { + "id" : "4e0de4fc-6cc3-41d8-a47c-f227054b51c8", + "type" : "password", + "createdDate" : 1653482432876, + "secretData" : "{\"value\":\"9kDSblUIi3qHDKENh03CKnav0rebP09uB1EnDk4+3ipG3fLCFv5+d6oyk1Aco6okz7Ugc8zmEthpZOC0VLoyoQ==\",\"salt\":\"1nIQJb9TrKemavzyz47zrg==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "668c3e8f-6b35-4b00-9b4e-e1d1bd6841a0", + "createdTimestamp" : 1677076049929, + "username" : "orchestrator", + "enabled" : true, + "totp" : false, + "emailVerified" : true, + "firstName" : "Orchestrator", + "lastName" : "Medina", + "email" : "orchestrator@medina.bclab.dev", + "credentials" : [ { + "id" : "b9e59d3f-1211-4150-ad39-755efbe0e407", + "type" : "password", + "createdDate" : 1677076069203, + "secretData" : "{\"value\":\"2CqMus7fnhbh2d2uOBghtuwnHzuhhfLLuPHV7XHEubeQ0hgwgpWjRzSOUIwclr3+1lZaI13Yv2bLZ/q7/80UXQ==\",\"salt\":\"GJatjw0K4XReLkiPhFiHpQ==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "bf2f2d65-53a8-47b8-b356-1efb838d3326", + "createdTimestamp" : 1656491163464, + "username" : "patrick.weiss", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "firstName" : "Patrick", + "lastName" : "Weiss", + "email" : "patrick.weiss3@de.bosch.com", + "credentials" : [ ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "federatedIdentities" : [ { + "identityProvider" : "oidc", + "userId" : "TQQySlVjXN8OaaXkrKUKJEMCx3dfuu4MuIuKiRgXgF8=", + "userName" : "tqqyslvjxn8oaaxkrkukjemcx3dfuu4muiukirgxgf8=" + } ], + "realmRoles" : [ "offline_access", "Auditor", "uma_authorization", "Compliance Manager" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "bb6d0c7f-e4ea-4f42-9375-f741b1ebac97", + "createdTimestamp" : 1646841881112, + "username" : "policyexpert", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "credentials" : [ { + "id" : "f9c4ca91-072f-418e-8bfb-0ef499620490", + "type" : "password", + "createdDate" : 1646841889121, + "secretData" : "{\"value\":\"6OlHWWs4Bad2qqMXi7PdiCAsNLjQTmbhgssnGuFAlTeMJeI/k48B8ahGyrJ2RYO4WcM29yBCEBZoZOWx7QUXEQ==\",\"salt\":\"FUl+Hwy2OqSWb+po3PvAGQ==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization", "Compliance Manager" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "7fcfeba8-2512-4c10-b1e8-fac6d623a83e", + "createdTimestamp" : 1647940816157, + "username" : "service-account-admin-cli", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "serviceAccountClientId" : "admin-cli", + "credentials" : [ ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "465eb553-71ea-47bb-8557-3753e1679b0b", + "createdTimestamp" : 1648629087836, + "username" : "service-account-api-swagger", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "serviceAccountClientId" : "api-swagger", + "credentials" : [ ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization" ], + "clientRoles" : { + "api-swagger" : [ "uma_protection" ], + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "4ccb51e5-5911-4052-914b-41120086c8ef", + "createdTimestamp" : 1648043982626, + "username" : "service-account-catalogue-backend", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "serviceAccountClientId" : "catalogue-backend", + "credentials" : [ ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "72b2d795-8d27-4aa7-a935-4c1ce274f27d", + "createdTimestamp" : 1650355454172, + "username" : "service-account-cce-dev", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "serviceAccountClientId" : "cce-dev", + "credentials" : [ ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization" ], + "clientRoles" : { + "cce-dev" : [ "uma_protection" ], + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "4aafc668-9855-44b2-a079-a271a3c4a515", + "createdTimestamp" : 1646860326928, + "username" : "service-account-clouditor-assessment", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "serviceAccountClientId" : "clouditor-assessment", + "credentials" : [ ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "89145876-b402-435f-bcfc-1a5da1f948ac", + "createdTimestamp" : 1646860316152, + "username" : "service-account-clouditor-discovery", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "serviceAccountClientId" : "clouditor-discovery", + "credentials" : [ ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "b52e96e0-3392-47bf-ad13-201376a985e4", + "createdTimestamp" : 1653484108491, + "username" : "service-account-clouditor-orchestrator", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "serviceAccountClientId" : "clouditor-orchestrator", + "credentials" : [ ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "a5916f7c-3494-4b8b-a899-d6424762a7e8", + "createdTimestamp" : 1646917353062, + "username" : "service-account-codyze", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "serviceAccountClientId" : "codyze", + "credentials" : [ ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "9c823d23-ca0d-4003-be08-11290cd15540", + "createdTimestamp" : 1676626307644, + "username" : "service-account-dsl-mapper-client", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "serviceAccountClientId" : "dsl-mapper-client", + "credentials" : [ ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ], + "dsl-mapper-client" : [ "uma_protection" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "6e8ff208-0ede-436c-b1ee-b853d33c3d81", + "createdTimestamp" : 1646998107929, + "username" : "service-account-life-cycle-manager", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "serviceAccountClientId" : "life-cycle-manager", + "credentials" : [ ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "7cdaece4-9f13-4a89-9e46-f56a3cee862e", + "createdTimestamp" : 1647940729928, + "username" : "service-account-nl2cnl-translator-client", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "serviceAccountClientId" : "nl2cnl-translator-client", + "credentials" : [ ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization" ], + "clientRoles" : { + "nl2cnl-translator-client" : [ "uma_protection" ], + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "43256450-bcb4-4115-ae7b-952462768dde", + "createdTimestamp" : 1650957338070, + "username" : "service-account-raof-app", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "serviceAccountClientId" : "raof-app", + "credentials" : [ ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization" ], + "clientRoles" : { + "raof-app" : [ "uma_protection" ], + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "d12a0ea0-d7d4-4194-b8f7-6e1190bbfcff", + "createdTimestamp" : 1650377634668, + "username" : "service-account-wazuh-vat-evidence-collector-dev", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "serviceAccountClientId" : "wazuh-vat-evidence-collector-dev", + "credentials" : [ ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization" ], + "clientRoles" : { + "wazuh-vat-evidence-collector-dev" : [ "uma_protection" ], + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "787a1621-e37e-40c4-b1a7-a333f9da5a05", + "createdTimestamp" : 1656679585693, + "username" : "test", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "credentials" : [ { + "id" : "95e47d91-9f53-4ac7-bdfd-f8d5009cd308", + "type" : "password", + "createdDate" : 1656679596593, + "secretData" : "{\"value\":\"C/tf6qkDu/0Or67kcs3UpWKhLlqgkXDdeyADRGl4I2r8FANh8KPQHCzHNT3SDUuIYt73zXZY86Xm3UKiy+4JMA==\",\"salt\":\"9kRsUVjmdC6DulVCqCPRNg==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ "UPDATE_PASSWORD" ], + "realmRoles" : [ "offline_access", "uma_authorization" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + }, { + "id" : "725a7e3a-a8c5-4d39-9c5a-54a71d61a879", + "createdTimestamp" : 1674205372898, + "username" : "uc1_auditor", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "credentials" : [ { + "id" : "c4a2a405-4de0-4c2f-8c39-923adace7445", + "type" : "password", + "createdDate" : 1674205402426, + "secretData" : "{\"value\":\"oqLrUgtXPyQNEZGNC7aeJZXXJ6Z56cLB5gwM1DQsBz3JU0yKm4yy4t43cGiw/abjz3/HI5SOESOz6SM2xrLUTQ==\",\"salt\":\"hsXz2PbS+NIBghBwgvcRNg==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "Auditor", "uma_authorization" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ "/Bosch_IaaS", "/Bosch_PaaS" ] + }, { + "id" : "3b459d9b-9bd1-468b-8012-a162630a33ed", + "createdTimestamp" : 1674205292315, + "username" : "uc1_ciso", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "credentials" : [ { + "id" : "937b51f4-e826-40a8-b8db-f118925c77a8", + "type" : "password", + "createdDate" : 1674205312603, + "secretData" : "{\"value\":\"y0IqJU0Fv6Yj36Ch0MZbGI4TTnUfzCSiA+WoPEG2auvA1BVeoBjqU6mqCTWHil3RvC7g96RQlnaIL90w57gZMw==\",\"salt\":\"nHq+5RhN6GR54X3FLJWu7Q==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization", "CISO" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ "/Bosch_IaaS", "/Bosch_PaaS", "/Bosch_SaaS" ] + }, { + "id" : "baed7025-7461-4d80-92bf-f513ea9a8185", + "createdTimestamp" : 1674205028179, + "username" : "uc1_domgov", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "credentials" : [ { + "id" : "8ce4465c-9fa8-491a-8f05-abf177665378", + "type" : "password", + "createdDate" : 1674205043664, + "secretData" : "{\"value\":\"tG71AR8NuORQK4Pfxf3YE42mmtf4PqRdkF2YF1bf8K+8VMLQ2+/vee/aniQK0ddRSu7ltDYNpc4tlJDO41q78Q==\",\"salt\":\"suseDBCyG8SAvs6DVFpxEQ==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization", "DomainGovernance" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ "/Bosch_IaaS", "/Bosch_PaaS" ] + }, { + "id" : "97b71c76-c9dd-4443-90c3-f16f10e9b6f2", + "createdTimestamp" : 1674205091346, + "username" : "uc1_prodown", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "credentials" : [ { + "id" : "2552c083-bc6b-4f29-8c98-5ab003fbef3a", + "type" : "password", + "createdDate" : 1674205107775, + "secretData" : "{\"value\":\"3cAw0zVxg+g7CMOPvr9MIEgNlBIaafjWiDxDH+L4OJh4jDY/dyltTZktYjTjr1vFmvCSAgqQNXXFKINkj+x8Xw==\",\"salt\":\"xymy30Xq5yaS/xkjq7eIyw==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization", "ProductOwner" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ "/Bosch_IaaS" ] + }, { + "id" : "bda0a003-282e-49b2-bf32-77f25dedfefa", + "createdTimestamp" : 1674205169100, + "username" : "uc1_prodsec", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "credentials" : [ { + "id" : "5fc1fafa-adfa-45ea-9a30-42ef4481afb3", + "type" : "password", + "createdDate" : 1674205239801, + "secretData" : "{\"value\":\"wl8AZBMs7MW/pODanRGx+ZNMROd6PgsBwZ7xoRLwSZux9O4waa/Qlk88gPouCQJgImZoYwhJJtBynkoZgiVcZA==\",\"salt\":\"AWeQMnoHIdsUrIqFOChpyA==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "ProductSecurityEng", "uma_authorization" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ "/Bosch_IaaS" ] + }, { + "id" : "3ae71bea-f95f-47a5-b6af-7f927054bb48", + "createdTimestamp" : 1674204946879, + "username" : "uc1_secanalyst", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "credentials" : [ { + "id" : "0a112696-7361-48ca-b9e6-46026d69bc58", + "type" : "password", + "createdDate" : 1674204964341, + "secretData" : "{\"value\":\"ubazXkdp5cGV1qzBdruFtIJWMGNjockdEDFCmpe5wN7lx0/kpXJ07HvXKhp6blLvmg3tmndISpf4SuPcadr4Mw==\",\"salt\":\"k+xIZTfvDlQ0+Dsk6AcyMA==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization", "SecurityAnalyst" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ "/Bosch_IaaS", "/Bosch_PaaS", "/Bosch_SaaS" ] + }, { + "id" : "a994fd2f-2ff7-4532-973f-023f0a6254a1", + "createdTimestamp" : 1674204837223, + "username" : "uc1_secgov", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "credentials" : [ { + "id" : "cbc54bca-f5d2-4407-9b0a-d0994e12dd10", + "type" : "password", + "createdDate" : 1674204924220, + "secretData" : "{\"value\":\"hss5pSQaEyETkxrebvdyT5BafR3YQhjzYM9uQU2mLqGTN/nZuXHTedpZtK7dqleas6u5BzZBRFJSyOAi16YPmg==\",\"salt\":\"ZQpfjOieeIpVnRaLL9DI2A==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "offline_access", "uma_authorization", "SecurityGovernance" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ "/Bosch_IaaS", "/Bosch_PaaS", "/Bosch_SaaS" ] + }, { + "id" : "a2d9c454-960f-47e9-860e-e1876cdd81e7", + "createdTimestamp" : 1648054983093, + "username" : "user", + "enabled" : true, + "totp" : false, + "emailVerified" : false, + "firstName" : "U.", + "lastName" : "Ser", + "email" : "user@localhost", + "credentials" : [ { + "id" : "b6a60d24-da76-47f4-a07b-885bac646b7a", + "type" : "password", + "createdDate" : 1650406346090, + "secretData" : "{\"value\":\"NTNpm0k7ky3gLf9pcYTklGY8qn0LPwCrhUYu94nhHVUl1vp5IHb5eSjgFJjpFaKKObNDcz7qJFWjyJ/mWCtwGA==\",\"salt\":\"fQAJhWFTktzewkFQ5ypbRQ==\",\"additionalParameters\":{}}", + "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}" + } ], + "disableableCredentialTypes" : [ ], + "requiredActions" : [ ], + "realmRoles" : [ "ROLE_USER", "offline_access", "Auditor", "uma_authorization" ], + "clientRoles" : { + "account" : [ "manage-account", "view-profile" ] + }, + "notBefore" : 0, + "groups" : [ ] + } ], + "scopeMappings" : [ { + "clientScope" : "offline_access", + "roles" : [ "offline_access" ] + } ], + "clientScopeMappings" : { + "account" : [ { + "client" : "account-console", + "roles" : [ "manage-account" ] + } ] + }, + "clients" : [ { + "id" : "8bd89baf-08f6-4e4b-8394-6b4dd6050ed2", + "clientId" : "account", + "name" : "${client_account}", + "rootUrl" : "${authBaseUrl}", + "baseUrl" : "/realms/medina/account/", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "533f8bfc-73ca-4950-a17e-29510052e70a", + "defaultRoles" : [ "manage-account", "view-profile" ], + "redirectUris" : [ "/realms/medina/account/*" ], + "webOrigins" : [ ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : false, + "serviceAccountsEnabled" : false, + "publicClient" : false, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : false, + "nodeReRegistrationTimeout" : 0, + "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "8f7fee7a-d32e-4c08-85fd-0a92ace43970", + "clientId" : "account-console", + "name" : "${client_account-console}", + "rootUrl" : "${authBaseUrl}", + "baseUrl" : "/realms/medina/account/", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "0ffbdc8a-e2b4-4693-abc0-cf08d0a3127e", + "redirectUris" : [ "/realms/medina/account/*" ], + "webOrigins" : [ ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : false, + "serviceAccountsEnabled" : false, + "publicClient" : true, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "pkce.code.challenge.method" : "S256" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : false, + "nodeReRegistrationTimeout" : 0, + "protocolMappers" : [ { + "id" : "edc42cad-bd34-4811-8354-0adaee774340", + "name" : "audience resolve", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-audience-resolve-mapper", + "consentRequired" : false, + "config" : { } + } ], + "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "24244b46-4845-4734-a061-bcb8ec91b84c", + "clientId" : "admin-cli", + "name" : "${client_admin-cli}", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "c29d2164-1f3d-476b-951c-c5eea7518fd6", + "redirectUris" : [ ], + "webOrigins" : [ ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : false, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : true, + "serviceAccountsEnabled" : true, + "publicClient" : false, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "false", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : 0, + "protocolMappers" : [ { + "id" : "8b8f8749-0adc-492d-a73d-3029413881be", + "name" : "Client ID", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientId", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientId", + "jsonType.label" : "String" + } + }, { + "id" : "6117fb7e-ecbe-4f0f-90da-d5a5c805e5d7", + "name" : "Client IP Address", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientAddress", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientAddress", + "jsonType.label" : "String" + } + }, { + "id" : "786a08b5-a459-43d0-b0d4-1d45a084a14a", + "name" : "Client Host", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientHost", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientHost", + "jsonType.label" : "String" + } + } ], + "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "a25b15fc-202b-4dc6-9340-fcc94f491a24", + "clientId" : "amoe-client", + "rootUrl" : "https://amoe-test.k8s.medina.esilab.org/", + "adminUrl" : "https://amoe-test.k8s.medina.esilab.org/", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "54d58c5f-dfd7-4902-819c-5b316ca13770", + "redirectUris" : [ "*" ], + "webOrigins" : [ "*" ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : true, + "serviceAccountsEnabled" : false, + "publicClient" : false, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "true", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "backchannel.logout.url" : "https://amoe-test.k8s.medina.esilab.org/openid/logout_request", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "protocolMappers" : [ { + "id" : "7adfc5e5-5248-4737-8b84-78567a897980", + "name" : "Client Host", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientHost", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientHost", + "jsonType.label" : "String" + } + }, { + "id" : "f96e6e25-77e4-4ffe-a4ca-5081f6dd3488", + "name" : "Client ID", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientId", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientId", + "jsonType.label" : "String" + } + }, { + "id" : "0078d78f-a368-41c5-9c41-16ba08b0dd64", + "name" : "Client IP Address", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientAddress", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientAddress", + "jsonType.label" : "String" + } + } ], + "defaultClientScopes" : [ "web-origins", "role_list", "cloudservice", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "a08fc1fe-7c85-4c1c-9d04-604c6e35faa8", + "clientId" : "api-swagger", + "rootUrl" : "https://api-swagger-test.k8s.medina.esilab.org", + "adminUrl" : "https://api-swagger-test.k8s.medina.esilab.org", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "c29a5cf2-52c0-4fa2-89fc-8951fa80ce84", + "redirectUris" : [ "https://api-swagger-test.k8s.medina.esilab.org/*" ], + "webOrigins" : [ "https://api-swagger-test.k8s.medina.esilab.org" ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : true, + "serviceAccountsEnabled" : true, + "authorizationServicesEnabled" : true, + "publicClient" : false, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "protocolMappers" : [ { + "id" : "a1b33188-ca81-44c0-ba56-772581a94038", + "name" : "Client IP Address", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientAddress", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientAddress", + "jsonType.label" : "String" + } + }, { + "id" : "7455b7e4-2b73-4a6d-b7e6-8434370a7a85", + "name" : "Client Host", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientHost", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientHost", + "jsonType.label" : "String" + } + }, { + "id" : "d9167dc9-6937-4bea-bc20-6e885857ccd0", + "name" : "Client ID", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientId", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientId", + "jsonType.label" : "String" + } + } ], + "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ], + "authorizationSettings" : { + "allowRemoteResourceManagement" : true, + "policyEnforcementMode" : "ENFORCING", + "resources" : [ { + "name" : "Default Resource", + "type" : "urn:api-swagger:resources:default", + "ownerManagedAccess" : false, + "attributes" : { }, + "_id" : "b8d55282-f977-4e89-9e8e-2b3e8ef07200", + "uris" : [ "/*" ] + } ], + "policies" : [ { + "id" : "9dc0a736-90a6-4428-be5a-0695b9153f93", + "name" : "Default Policy", + "description" : "A policy that grants access only for users within this realm", + "type" : "js", + "logic" : "POSITIVE", + "decisionStrategy" : "AFFIRMATIVE", + "config" : { + "code" : "// by default, grants any permission associated with this policy\n$evaluation.grant();\n" + } + }, { + "id" : "4058b893-6396-4351-ae9c-e4ecf5329d18", + "name" : "Default Permission", + "description" : "A permission that applies to the default resource type", + "type" : "resource", + "logic" : "POSITIVE", + "decisionStrategy" : "UNANIMOUS", + "config" : { + "defaultResourceType" : "urn:api-swagger:resources:default", + "applyPolicies" : "[\"Default Policy\"]" + } + } ], + "scopes" : [ ], + "decisionStrategy" : "UNANIMOUS" + } + }, { + "id" : "8d1a867d-537c-433e-8234-b3582127cc54", + "clientId" : "broker", + "name" : "${client_broker}", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "4293f846-3a76-4628-a9a4-810bebcdc51b", + "redirectUris" : [ ], + "webOrigins" : [ ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : false, + "serviceAccountsEnabled" : false, + "publicClient" : false, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : false, + "nodeReRegistrationTimeout" : 0, + "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "df274002-83dd-4c7f-b64b-8cf7b90d9a97", + "clientId" : "catalogue-backend", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "47b59168-f965-4a6f-941c-ae7ee1ba463c", + "redirectUris" : [ ], + "webOrigins" : [ ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : false, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : false, + "serviceAccountsEnabled" : true, + "publicClient" : false, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "protocolMappers" : [ { + "id" : "6ea5df11-551c-44e4-a4e7-74e787bea43e", + "name" : "Client Host", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientHost", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientHost", + "jsonType.label" : "String" + } + }, { + "id" : "0544b98a-f678-4395-b3cf-bdb0529a5661", + "name" : "Client IP Address", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientAddress", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientAddress", + "jsonType.label" : "String" + } + }, { + "id" : "adace2ba-512e-4856-a187-75031220377d", + "name" : "Client ID", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientId", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientId", + "jsonType.label" : "String" + } + } ], + "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "fa074dc3-e8de-4f34-9437-dc5d93f60f9a", + "clientId" : "catalogue-gateway", + "rootUrl" : "https://catalogue-test.k8s.medina.esilab.org", + "adminUrl" : "https://catalogue-test.k8s.medina.esilab.org", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "1895c8be-10f2-4243-a7da-8443aa1a2851", + "redirectUris" : [ "*" ], + "webOrigins" : [ "*" ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : true, + "directAccessGrantsEnabled" : false, + "serviceAccountsEnabled" : false, + "publicClient" : true, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "defaultClientScopes" : [ "web-origins", "jhipster", "role_list", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "b7769853-8605-4a36-9352-7633d3be0f22", + "clientId" : "catalogue-jhipster-control-center", + "rootUrl" : "http://localhost:7419", + "adminUrl" : "http://localhost:7419", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "a77e5efc-e542-4ed2-b8a2-535fe4c4fb34", + "redirectUris" : [ "dev.localhost.ionic:*", "http://127.0.0.1:*", "http://localhost:*", "https://127.0.0.1:*", "https://localhost:*" ], + "webOrigins" : [ "*" ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : true, + "directAccessGrantsEnabled" : false, + "serviceAccountsEnabled" : false, + "publicClient" : true, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "645cf799-be24-42fd-a169-f9d5fc39be31", + "clientId" : "catalogue-registry", + "rootUrl" : "https://catalogue-registry-test.k8s.medina.esilab.org", + "adminUrl" : "https://catalogue-registry-test.k8s.medina.esilab.org", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "ff31a06d-d850-48d2-8355-6723e856c1b6", + "redirectUris" : [ "*" ], + "webOrigins" : [ "*" ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : true, + "serviceAccountsEnabled" : false, + "publicClient" : true, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "defaultClientScopes" : [ "web-origins", "jhipster", "role_list", "roles", "profile", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "12d63192-94cd-4692-b557-ab76a331eaa6", + "clientId" : "ccd-client", + "name" : "Company compliance dashboard", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "cc728558-1c40-48ae-8be4-e48b582a727a", + "redirectUris" : [ "http://localhost:8080/" ], + "webOrigins" : [ ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : true, + "serviceAccountsEnabled" : false, + "publicClient" : false, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "defaultClientScopes" : [ "web-origins", "role_list", "cloudservice", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "dc64b28b-a696-4b0c-8e24-2aeae138c3e5", + "clientId" : "cce-dev", + "rootUrl" : "http://cce-api-test.k8s.medina.esilab.org/", + "adminUrl" : "http://cce-api-test.k8s.medina.esilab.org/", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "efe3acb8-b4c1-43f0-a3a2-b75402e76afc", + "redirectUris" : [ "http://cce-api-test.k8s.medina.esilab.org/*" ], + "webOrigins" : [ "http://cce-api-test.k8s.medina.esilab.org" ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : true, + "serviceAccountsEnabled" : true, + "authorizationServicesEnabled" : true, + "publicClient" : false, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "protocolMappers" : [ { + "id" : "12f94f61-bb5e-41dc-ae0b-20206ff6173c", + "name" : "Client IP Address", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientAddress", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientAddress", + "jsonType.label" : "String" + } + }, { + "id" : "3920d8ac-45ea-4bf5-a203-1c831cb845ab", + "name" : "Client Host", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientHost", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientHost", + "jsonType.label" : "String" + } + }, { + "id" : "5f427941-d12d-432c-b883-ac39fe209705", + "name" : "Client ID", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientId", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientId", + "jsonType.label" : "String" + } + } ], + "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ], + "authorizationSettings" : { + "allowRemoteResourceManagement" : true, + "policyEnforcementMode" : "ENFORCING", + "resources" : [ { + "name" : "Default Resource", + "type" : "urn:cce-dev:resources:default", + "ownerManagedAccess" : false, + "attributes" : { }, + "_id" : "ef475897-65aa-4813-a810-340268090336", + "uris" : [ "/*" ] + } ], + "policies" : [ { + "id" : "ff85e02d-5048-473c-8bd0-fa22b6574852", + "name" : "Default Policy", + "description" : "A policy that grants access only for users within this realm", + "type" : "js", + "logic" : "POSITIVE", + "decisionStrategy" : "AFFIRMATIVE", + "config" : { + "code" : "// by default, grants any permission associated with this policy\n$evaluation.grant();\n" + } + }, { + "id" : "043cee90-99a8-4f2b-9ad2-3f37ce518483", + "name" : "Default Permission", + "description" : "A permission that applies to the default resource type", + "type" : "resource", + "logic" : "POSITIVE", + "decisionStrategy" : "UNANIMOUS", + "config" : { + "defaultResourceType" : "urn:cce-dev:resources:default", + "applyPolicies" : "[\"Default Policy\"]" + } + } ], + "scopes" : [ ], + "decisionStrategy" : "UNANIMOUS" + } + }, { + "id" : "4a57f2cd-5b99-4b78-ba31-d994521abd30", + "clientId" : "clouditor-assessment", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "4a47f42a-df33-418f-b687-64e7c8ffbbda", + "redirectUris" : [ "https://security-assessment-test.k8s.medina.esilab.org" ], + "webOrigins" : [ ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : false, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : false, + "serviceAccountsEnabled" : true, + "publicClient" : false, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "protocolMappers" : [ { + "id" : "caf7c5a7-f72e-44d8-aa9d-37c185e415ca", + "name" : "Client ID", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientId", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientId", + "jsonType.label" : "String" + } + }, { + "id" : "7dde8113-bf11-4cb4-be6b-d342ed64b1b6", + "name" : "Client Host", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientHost", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientHost", + "jsonType.label" : "String" + } + }, { + "id" : "1261d141-6010-4868-b659-2ce26e1680b4", + "name" : "Client IP Address", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientAddress", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientAddress", + "jsonType.label" : "String" + } + } ], + "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "69bba521-b088-45a6-9e56-bd29e557cea4", + "clientId" : "clouditor-cli", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "c3228efe-8dc3-4c09-bc89-8bdc362ae878", + "redirectUris" : [ "http://localhost:10000/callback" ], + "webOrigins" : [ ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : false, + "serviceAccountsEnabled" : false, + "publicClient" : true, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "8fedfacb-2df9-4342-be33-7d3e18dc316f", + "clientId" : "clouditor-discovery", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "2f38b7bd-c3fa-4e7b-af59-5b8d67ddd8c1", + "redirectUris" : [ "https://orchestrator-test.k8s.medina.esilab.org/" ], + "webOrigins" : [ ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : false, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : false, + "serviceAccountsEnabled" : true, + "publicClient" : false, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "protocolMappers" : [ { + "id" : "8dfab4e0-512c-4879-8878-c949ba32a641", + "name" : "Client Host", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientHost", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientHost", + "jsonType.label" : "String" + } + }, { + "id" : "9bba24ce-80f6-4a69-844d-7406c39d678b", + "name" : "Client ID", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientId", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientId", + "jsonType.label" : "String" + } + }, { + "id" : "112001f6-9584-4949-9d79-4d8e337bb9eb", + "name" : "Client IP Address", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientAddress", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientAddress", + "jsonType.label" : "String" + } + } ], + "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "ce4b155c-c77a-417f-a1c5-22d3bc3c3a20", + "clientId" : "clouditor-orchestrator", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "4372318c-7a05-4bb3-a65b-901cfd2eaf71", + "redirectUris" : [ ], + "webOrigins" : [ ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : false, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : false, + "serviceAccountsEnabled" : true, + "publicClient" : false, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "protocolMappers" : [ { + "id" : "e9bd48f8-7fe3-4bec-892f-25af6d7216ec", + "name" : "Client ID", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientId", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientId", + "jsonType.label" : "String" + } + }, { + "id" : "a6f09782-2765-4198-bb53-cbcef5f73762", + "name" : "Client Host", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientHost", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientHost", + "jsonType.label" : "String" + } + }, { + "id" : "ac80d2a2-f2aa-4448-9c51-bfa17eab14d9", + "name" : "Client IP Address", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientAddress", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientAddress", + "jsonType.label" : "String" + } + } ], + "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "fcf4c413-07b8-40e1-9ee0-2ffa646dfdf5", + "clientId" : "clouditor-ui", + "rootUrl" : "https://orchestrator-test.k8s.medina.esilab.org", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "7a189e46-8e44-4968-9228-2115e84dbcdd", + "redirectUris" : [ "https://orchestrator-test.k8s.medina.esilab.org/callback" ], + "webOrigins" : [ "https://orchestrator-test.k8s.medina.esilab.org" ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : false, + "serviceAccountsEnabled" : false, + "publicClient" : true, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "15a81bd1-4edd-4e2a-87ec-3bbcac30d2a3", + "clientId" : "cnl-editor-frontend", + "rootUrl" : "https://cnl-editor-frontend-test.k8s.medina.esilab.org", + "adminUrl" : "https://cnl-editor-frontend-test.k8s.medina.esilab.org", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "e6b76254-187d-441b-9061-cb6b03dd51a4", + "redirectUris" : [ "https://cnl-editor-frontend-test.k8s.medina.esilab.org/*", "http://cnl-editor-frontend-test.k8s.medina.esilab.org/*" ], + "webOrigins" : [ "https://cnl-editor-frontend-test.k8s.medina.esilab.org" ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : true, + "serviceAccountsEnabled" : false, + "publicClient" : true, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "01fce0c3-2db7-46dd-af1c-115dc1800053", + "clientId" : "codyze", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "7ff65ca2-a54a-4093-84f3-3b5756cc4e5c", + "redirectUris" : [ ], + "webOrigins" : [ ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : false, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : false, + "serviceAccountsEnabled" : true, + "publicClient" : false, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "protocolMappers" : [ { + "id" : "43fbe8e9-8141-4868-b85c-91220bd5f08f", + "name" : "Client IP Address", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientAddress", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientAddress", + "jsonType.label" : "String" + } + }, { + "id" : "ab5e553c-34e4-4411-b6c2-23235f3d7f84", + "name" : "Client ID", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientId", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientId", + "jsonType.label" : "String" + } + }, { + "id" : "8d070365-134e-4302-b0bd-e6ce82b1c2db", + "name" : "Client Host", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientHost", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientHost", + "jsonType.label" : "String" + } + } ], + "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "26022d63-5c85-4953-9995-1e55fc6218ee", + "clientId" : "dsl-mapper-client", + "rootUrl" : "https://dsl-mapper-test.k8s.medina.esilab.org/", + "adminUrl" : "https://dsl-mapper-test.k8s.medina.esilab.org/", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "7bc8355f-87fd-4b3d-a618-cdef53b92321", + "redirectUris" : [ "https://dsl-mapper-test.k8s.medina.esilab.org/*" ], + "webOrigins" : [ "https://dsl-mapper-test.k8s.medina.esilab.org" ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : true, + "serviceAccountsEnabled" : true, + "authorizationServicesEnabled" : true, + "publicClient" : false, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "protocolMappers" : [ { + "id" : "ef4bd7c8-b761-4e49-bfa8-6377bccf863b", + "name" : "Client IP Address", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientAddress", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientAddress", + "jsonType.label" : "String" + } + }, { + "id" : "ac38f9c5-f1b1-4dc9-af1a-0cda98005323", + "name" : "Client Host", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientHost", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientHost", + "jsonType.label" : "String" + } + }, { + "id" : "1a069a20-00f6-44d8-9562-55fabe8463bb", + "name" : "Client ID", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientId", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientId", + "jsonType.label" : "String" + } + } ], + "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ], + "authorizationSettings" : { + "allowRemoteResourceManagement" : true, + "policyEnforcementMode" : "ENFORCING", + "resources" : [ { + "name" : "Default Resource", + "type" : "urn:dsl-mapper-client:resources:default", + "ownerManagedAccess" : false, + "attributes" : { }, + "_id" : "df7f5e63-00f0-4820-8720-62d46c37623e", + "uris" : [ "/*" ] + } ], + "policies" : [ { + "id" : "2ff423c8-85e1-444f-aa71-9955f65f5111", + "name" : "Default Policy", + "description" : "A policy that grants access only for users within this realm", + "type" : "js", + "logic" : "POSITIVE", + "decisionStrategy" : "AFFIRMATIVE", + "config" : { + "code" : "// by default, grants any permission associated with this policy\n$evaluation.grant();\n" + } + }, { + "id" : "b8a4e8bc-fdc7-4759-b4a5-72069c256df0", + "name" : "Default Permission", + "description" : "A permission that applies to the default resource type", + "type" : "resource", + "logic" : "POSITIVE", + "decisionStrategy" : "UNANIMOUS", + "config" : { + "defaultResourceType" : "urn:dsl-mapper-client:resources:default", + "applyPolicies" : "[\"Default Policy\"]" + } + } ], + "scopes" : [ ], + "decisionStrategy" : "UNANIMOUS" + } + }, { + "id" : "1150f83f-37bc-4b14-98a0-e179aaee0f6c", + "clientId" : "integrated-ui", + "rootUrl" : "https://integrated-ui-test.k8s.medina.esilab.org", + "adminUrl" : "https://integrated-ui-test.k8s.medina.esilab.org", + "baseUrl" : "https://integrated-ui-test.k8s.medina.esilab.org", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "9049e030-2e66-496e-accf-b7a5037bc0eb", + "redirectUris" : [ "https://integrated-ui-test.k8s.medina.esilab.org/*" ], + "webOrigins" : [ "https://integrated-ui-test.k8s.medina.esilab.org" ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : true, + "serviceAccountsEnabled" : false, + "publicClient" : true, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "defaultClientScopes" : [ "web-origins", "role_list", "cloudservice", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "095fac49-b0b4-4c44-b5b9-fa22bed6d160", + "clientId" : "life-cycle-manager", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "0191bfe6-1d93-4d89-b1e4-4b505d348057", + "redirectUris" : [ ], + "webOrigins" : [ ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : false, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : false, + "serviceAccountsEnabled" : true, + "publicClient" : false, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "protocolMappers" : [ { + "id" : "cdb336c7-b22f-44c6-b30b-9136364b8229", + "name" : "Client IP Address", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientAddress", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientAddress", + "jsonType.label" : "String" + } + }, { + "id" : "3c6e3fe1-37bb-4ef0-a162-720b0d78b3af", + "name" : "Client ID", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientId", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientId", + "jsonType.label" : "String" + } + }, { + "id" : "e39ee5e2-dd4a-4d0e-9fc3-a0a84b200143", + "name" : "Client Host", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientHost", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientHost", + "jsonType.label" : "String" + } + } ], + "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "61ee3d47-ab97-4c44-ab6a-b3a8d9f43590", + "clientId" : "monitor-client", + "rootUrl" : "https://kibana.medina.bclab.dev", + "baseUrl" : "https://kibana.medina.bclab.dev", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "99d8f618-90c3-4765-a986-44eeedef2866", + "redirectUris" : [ "https://kibana.medina.bclab.dev/oauth2/callback" ], + "webOrigins" : [ "*" ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : true, + "serviceAccountsEnabled" : false, + "publicClient" : false, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "login_theme" : "keycloak", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "false", + "backchannel.logout.url" : "", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "9f7c65f7-9ae9-4c9e-9bd7-971d0cbe146d", + "clientId" : "nl2cnl-translator-client", + "rootUrl" : "https://nl2cnl-translator-test.k8s.medina.esilab.org/", + "adminUrl" : "https://nl2cnl-translator-test.k8s.medina.esilab.org/", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "b1d1d98d-b5e5-46ac-9b45-30502cfb53ab", + "redirectUris" : [ "https://nl2cnl-translator-test.k8s.medina.esilab.org/*" ], + "webOrigins" : [ "https://nl2cnl-translator-test.k8s.medina.esilab.org" ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : true, + "serviceAccountsEnabled" : true, + "authorizationServicesEnabled" : true, + "publicClient" : false, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "protocolMappers" : [ { + "id" : "ad2d1f98-62a8-4859-8cce-1ce4034b9920", + "name" : "Client Host", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientHost", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientHost", + "jsonType.label" : "String" + } + }, { + "id" : "480e69e8-ebca-4e89-8d20-24bba626bbce", + "name" : "Client ID", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientId", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientId", + "jsonType.label" : "String" + } + }, { + "id" : "42724a07-f05f-4d65-82cb-b1c2288810d8", + "name" : "Client IP Address", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientAddress", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientAddress", + "jsonType.label" : "String" + } + } ], + "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ], + "authorizationSettings" : { + "allowRemoteResourceManagement" : true, + "policyEnforcementMode" : "ENFORCING", + "resources" : [ { + "name" : "Default Resource", + "type" : "urn:nl2cnl-translator-client:resources:default", + "ownerManagedAccess" : false, + "attributes" : { }, + "_id" : "cf0de028-f233-4f59-83cb-3d60d34450a3", + "uris" : [ "/*" ] + } ], + "policies" : [ { + "id" : "46935297-5bfb-4a43-b493-b28efe8c863b", + "name" : "Default Policy", + "description" : "A policy that grants access only for users within this realm", + "type" : "js", + "logic" : "POSITIVE", + "decisionStrategy" : "AFFIRMATIVE", + "config" : { + "code" : "// by default, grants any permission associated with this policy\n$evaluation.grant();\n" + } + }, { + "id" : "9cd3da2f-0302-4033-a9ed-36758ffa7730", + "name" : "Default Permission", + "description" : "A permission that applies to the default resource type", + "type" : "resource", + "logic" : "POSITIVE", + "decisionStrategy" : "UNANIMOUS", + "config" : { + "defaultResourceType" : "urn:nl2cnl-translator-client:resources:default", + "applyPolicies" : "[\"Default Policy\"]" + } + } ], + "scopes" : [ ], + "decisionStrategy" : "UNANIMOUS" + } + }, { + "id" : "7de21575-b215-40f4-b6b1-d2f6abc33dcd", + "clientId" : "raof", + "rootUrl" : "http://risk-assessment-engine-test.k8s.medina.esilab.org", + "adminUrl" : "http://risk-assessment-engine-test.k8s.medina.esilab.org", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "506f998b-6c24-48ed-9d93-f21a321c2581", + "redirectUris" : [ "http://risk-assessment-engine-test.k8s.medina.esilab.org/*" ], + "webOrigins" : [ "http://risk-assessment-engine-test.k8s.medina.esilab.org" ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : true, + "serviceAccountsEnabled" : false, + "publicClient" : true, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "b1293ae0-e720-40cb-ae6f-db7fc9b1fe92", + "clientId" : "raof-app", + "rootUrl" : "http://risk-assessment-app-test.k8s.medina.esilab.org", + "adminUrl" : "http://risk-assessment-app-test.k8s.medina.esilab.org", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "d7ca4514-90bf-40c9-b824-05c78acd9c93", + "redirectUris" : [ "http://risk-assessment-app-test.k8s.medina.esilab.org/*" ], + "webOrigins" : [ "http://risk-assessment-app-test.k8s.medina.esilab.org" ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : true, + "serviceAccountsEnabled" : true, + "authorizationServicesEnabled" : true, + "publicClient" : false, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "protocolMappers" : [ { + "id" : "76f2834e-94f2-4d8d-9840-d4b363ba7a8b", + "name" : "Client Host", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientHost", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientHost", + "jsonType.label" : "String" + } + }, { + "id" : "8c8a582f-4e95-437f-a9c7-79d6e3f84a78", + "name" : "Client IP Address", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientAddress", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientAddress", + "jsonType.label" : "String" + } + }, { + "id" : "65c739a9-5e22-4825-85bd-0c9b7547a395", + "name" : "Client ID", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientId", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientId", + "jsonType.label" : "String" + } + } ], + "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ], + "authorizationSettings" : { + "allowRemoteResourceManagement" : true, + "policyEnforcementMode" : "ENFORCING", + "resources" : [ { + "name" : "Default Resource", + "type" : "urn:roaf-app:resources:default", + "ownerManagedAccess" : false, + "attributes" : { }, + "_id" : "83aa363b-796b-4081-b49f-69b88d87f3b2", + "uris" : [ "/*" ] + } ], + "policies" : [ { + "id" : "291bd70b-29f1-4806-9963-ebced36fa800", + "name" : "Default Policy", + "description" : "A policy that grants access only for users within this realm", + "type" : "js", + "logic" : "POSITIVE", + "decisionStrategy" : "AFFIRMATIVE", + "config" : { + "code" : "// by default, grants any permission associated with this policy\n$evaluation.grant();\n" + } + }, { + "id" : "3ba28abc-eeec-48bd-bca9-41b10c38525e", + "name" : "Default Permission", + "description" : "A permission that applies to the default resource type", + "type" : "resource", + "logic" : "POSITIVE", + "decisionStrategy" : "UNANIMOUS", + "config" : { + "defaultResourceType" : "urn:roaf-app:resources:default", + "applyPolicies" : "[\"Default Policy\"]" + } + } ], + "scopes" : [ ], + "decisionStrategy" : "UNANIMOUS" + } + }, { + "id" : "6aea36ea-1f6d-44fd-b839-185872bd7d11", + "clientId" : "realm-management", + "name" : "${client_realm-management}", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "eac6413c-b76b-4d1a-b4dc-b217fe77326b", + "redirectUris" : [ ], + "webOrigins" : [ ], + "notBefore" : 0, + "bearerOnly" : true, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : false, + "serviceAccountsEnabled" : false, + "publicClient" : false, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : false, + "nodeReRegistrationTimeout" : 0, + "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "7d57284a-3eba-4ceb-8088-b13aeef3df24", + "clientId" : "security-admin-console", + "name" : "${client_security-admin-console}", + "rootUrl" : "${authAdminUrl}", + "baseUrl" : "/admin/medina/console/", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "11fb3ec1-97dc-46e4-aee3-7d61493a0184", + "redirectUris" : [ "/admin/medina/console/*" ], + "webOrigins" : [ "+" ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : false, + "serviceAccountsEnabled" : false, + "publicClient" : true, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "pkce.code.challenge.method" : "S256" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : false, + "nodeReRegistrationTimeout" : 0, + "protocolMappers" : [ { + "id" : "ce06926e-1e52-49b7-86ea-ddfd7665b90b", + "name" : "locale", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-attribute-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "locale", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "locale", + "jsonType.label" : "String" + } + } ], + "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "2a7af76e-a19f-43bd-959f-065bb33eab68", + "clientId" : "ssi-frontend", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "f267fc9b-4592-4a4c-b365-3b61416795f8", + "redirectUris" : [ "https://ssi-framework-ui-test.k8s.medina.esilab.org/*" ], + "webOrigins" : [ "https://ssi-framework-ui-test.k8s.medina.esilab.org" ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : true, + "serviceAccountsEnabled" : false, + "publicClient" : true, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "1b75d80d-cfed-4646-9d75-485835684dd2", + "clientId" : "trustworthiness-client", + "rootUrl" : "https://kibana.medina.bclab.dev", + "baseUrl" : "https://kibana.medina.bclab.dev", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "c8fff6e5-7b3e-4663-bfea-d7b4b46615eb", + "redirectUris" : [ "https://kibana.medina.bclab.dev/*" ], + "webOrigins" : [ ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : true, + "serviceAccountsEnabled" : false, + "publicClient" : false, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ] + }, { + "id" : "aa18689d-6d81-4b92-8b9e-291eb4733408", + "clientId" : "wazuh-vat-evidence-collector-dev", + "rootUrl" : "http://wazuh-vat-evidence-collector-test.k8s.medina.esilab.org/", + "adminUrl" : "http://wazuh-vat-evidence-collector-test.k8s.medina.esilab.org/", + "surrogateAuthRequired" : false, + "enabled" : true, + "alwaysDisplayInConsole" : false, + "clientAuthenticatorType" : "client-secret", + "secret" : "68dec932-77fc-4322-8089-d64c3a3317bf", + "redirectUris" : [ "http://wazuh-vat-evidence-collector-test.k8s.medina.esilab.org/*" ], + "webOrigins" : [ "http://wazuh-vat-evidence-collector-test.k8s.medina.esilab.org" ], + "notBefore" : 0, + "bearerOnly" : false, + "consentRequired" : false, + "standardFlowEnabled" : true, + "implicitFlowEnabled" : false, + "directAccessGrantsEnabled" : true, + "serviceAccountsEnabled" : true, + "authorizationServicesEnabled" : true, + "publicClient" : false, + "frontchannelLogout" : false, + "protocol" : "openid-connect", + "attributes" : { + "saml.assertion.signature" : "false", + "saml.force.post.binding" : "false", + "saml.multivalued.roles" : "false", + "saml.encrypt" : "false", + "backchannel.logout.revoke.offline.tokens" : "false", + "saml.server.signature" : "false", + "saml.server.signature.keyinfo.ext" : "false", + "exclude.session.state.from.auth.response" : "false", + "backchannel.logout.session.required" : "true", + "client_credentials.use_refresh_token" : "false", + "saml_force_name_id_format" : "false", + "saml.client.signature" : "false", + "tls.client.certificate.bound.access.tokens" : "false", + "saml.authnstatement" : "false", + "display.on.consent.screen" : "false", + "saml.onetimeuse.condition" : "false" + }, + "authenticationFlowBindingOverrides" : { }, + "fullScopeAllowed" : true, + "nodeReRegistrationTimeout" : -1, + "protocolMappers" : [ { + "id" : "21e80b89-4ab6-4eb1-b1b1-1a44c133e922", + "name" : "Client IP Address", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientAddress", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientAddress", + "jsonType.label" : "String" + } + }, { + "id" : "f9117947-484b-4486-9299-97a1bac403bc", + "name" : "Client Host", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientHost", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientHost", + "jsonType.label" : "String" + } + }, { + "id" : "a610e8bf-64c2-4c57-ba45-f576d1dbd1b9", + "name" : "Client ID", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usersessionmodel-note-mapper", + "consentRequired" : false, + "config" : { + "user.session.note" : "clientId", + "userinfo.token.claim" : "true", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "clientId", + "jsonType.label" : "String" + } + } ], + "defaultClientScopes" : [ "web-origins", "role_list", "profile", "roles", "email" ], + "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ], + "authorizationSettings" : { + "allowRemoteResourceManagement" : true, + "policyEnforcementMode" : "ENFORCING", + "resources" : [ { + "name" : "Default Resource", + "type" : "urn:wazuh-vat-evidence-collector-dev:resources:default", + "ownerManagedAccess" : false, + "attributes" : { }, + "_id" : "9b151dde-64db-48eb-a5c8-1cb76dbda106", + "uris" : [ "/*" ] + } ], + "policies" : [ { + "id" : "ea4d0471-d8e0-4eb3-b978-5e08ed330193", + "name" : "Default Policy", + "description" : "A policy that grants access only for users within this realm", + "type" : "js", + "logic" : "POSITIVE", + "decisionStrategy" : "AFFIRMATIVE", + "config" : { + "code" : "// by default, grants any permission associated with this policy\n$evaluation.grant();\n" + } + }, { + "id" : "d56c4a80-9aea-4527-80b8-fa8736d55cbe", + "name" : "Default Permission", + "description" : "A permission that applies to the default resource type", + "type" : "resource", + "logic" : "POSITIVE", + "decisionStrategy" : "UNANIMOUS", + "config" : { + "defaultResourceType" : "urn:wazuh-vat-evidence-collector-dev:resources:default", + "applyPolicies" : "[\"Default Policy\"]" + } + } ], + "scopes" : [ ], + "decisionStrategy" : "UNANIMOUS" + } + } ], + "clientScopes" : [ { + "id" : "448d9d12-2046-483f-9951-9cfb26270957", + "name" : "address", + "description" : "OpenID Connect built-in scope: address", + "protocol" : "openid-connect", + "attributes" : { + "include.in.token.scope" : "true", + "display.on.consent.screen" : "true", + "consent.screen.text" : "${addressScopeConsentText}" + }, + "protocolMappers" : [ { + "id" : "d9a1907f-8701-4b47-85a8-b7d959c37d52", + "name" : "address", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-address-mapper", + "consentRequired" : false, + "config" : { + "user.attribute.formatted" : "formatted", + "user.attribute.country" : "country", + "user.attribute.postal_code" : "postal_code", + "userinfo.token.claim" : "true", + "user.attribute.street" : "street", + "id.token.claim" : "true", + "user.attribute.region" : "region", + "access.token.claim" : "true", + "user.attribute.locality" : "locality" + } + } ] + }, { + "id" : "b47e3994-eb81-47e9-97a2-823e79d8be59", + "name" : "cloudservice", + "protocol" : "openid-connect", + "attributes" : { + "include.in.token.scope" : "true", + "display.on.consent.screen" : "true" + }, + "protocolMappers" : [ { + "id" : "33effe3a-a17a-4755-8b46-fe0330d05f68", + "name" : "cloudserviceid", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-attribute-mapper", + "consentRequired" : false, + "config" : { + "aggregate.attrs" : "true", + "multivalued" : "true", + "userinfo.token.claim" : "true", + "user.attribute" : "cloudserviceid", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "cloudserviceid", + "jsonType.label" : "String" + } + }, { + "id" : "4f753a40-baed-4dd8-aada-712460bac638", + "name" : "cloudserviceproviderid", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-attribute-mapper", + "consentRequired" : false, + "config" : { + "aggregate.attrs" : "true", + "multivalued" : "true", + "userinfo.token.claim" : "true", + "user.attribute" : "cloudserviceproviderid", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "cloudserviceproviderid", + "jsonType.label" : "String" + } + } ] + }, { + "id" : "275d79c9-b59c-40f6-bea2-ce277f3bb3e0", + "name" : "email", + "description" : "OpenID Connect built-in scope: email", + "protocol" : "openid-connect", + "attributes" : { + "include.in.token.scope" : "true", + "display.on.consent.screen" : "true", + "consent.screen.text" : "${emailScopeConsentText}" + }, + "protocolMappers" : [ { + "id" : "e2e140c5-e12f-4a38-ad55-dbeb73558260", + "name" : "email", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-property-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "email", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "email", + "jsonType.label" : "String" + } + }, { + "id" : "a22524be-6358-4d93-beaa-38faed65e198", + "name" : "email verified", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-property-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "emailVerified", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "email_verified", + "jsonType.label" : "boolean" + } + } ] + }, { + "id" : "bbfebad4-3f48-432f-9696-1529017fd411", + "name" : "jhipster", + "description" : "Jhipster specific claims", + "protocol" : "openid-connect", + "attributes" : { + "include.in.token.scope" : "true", + "display.on.consent.screen" : "true" + }, + "protocolMappers" : [ { + "id" : "71c49d92-db9e-4669-b945-a6dd790b8b00", + "name" : "langKey", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-attribute-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "langKey", + "id.token.claim" : "false", + "access.token.claim" : "false", + "claim.name" : "langKey", + "jsonType.label" : "String" + } + }, { + "id" : "79e9563d-3c27-4cb3-b8c7-cb11bc43ebc9", + "name" : "login", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-attribute-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "preferred_username", + "id.token.claim" : "false", + "access.token.claim" : "false", + "claim.name" : "login", + "jsonType.label" : "String" + } + }, { + "id" : "d8ce7859-d0c3-4e55-9415-438c81bfdaa2", + "name" : "roles", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-realm-role-mapper", + "consentRequired" : false, + "config" : { + "multivalued" : "true", + "userinfo.token.claim" : "true", + "id.token.claim" : "false", + "access.token.claim" : "true", + "claim.name" : "roles", + "jsonType.label" : "String" + } + } ] + }, { + "id" : "3dd12f9d-3af5-4757-b89c-4d2a8c448316", + "name" : "microprofile-jwt", + "description" : "Microprofile - JWT built-in scope", + "protocol" : "openid-connect", + "attributes" : { + "include.in.token.scope" : "true", + "display.on.consent.screen" : "false" + }, + "protocolMappers" : [ { + "id" : "995d9d7f-97af-4c01-81d8-8ca11aa34553", + "name" : "groups", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-realm-role-mapper", + "consentRequired" : false, + "config" : { + "multivalued" : "true", + "userinfo.token.claim" : "true", + "user.attribute" : "foo", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "groups", + "jsonType.label" : "String" + } + }, { + "id" : "43df77e9-387b-4f80-bd3e-c2153178ee72", + "name" : "upn", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-property-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "username", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "upn", + "jsonType.label" : "String" + } + } ] + }, { + "id" : "31c108bb-1587-4373-b46a-7d2f0d7acdba", + "name" : "offline_access", + "description" : "OpenID Connect built-in scope: offline_access", + "protocol" : "openid-connect", + "attributes" : { + "consent.screen.text" : "${offlineAccessScopeConsentText}", + "display.on.consent.screen" : "true" + } + }, { + "id" : "b8b09b9e-6096-46ae-8e90-3cd03d364a0a", + "name" : "phone", + "description" : "OpenID Connect built-in scope: phone", + "protocol" : "openid-connect", + "attributes" : { + "include.in.token.scope" : "true", + "display.on.consent.screen" : "true", + "consent.screen.text" : "${phoneScopeConsentText}" + }, + "protocolMappers" : [ { + "id" : "5464cfbe-e421-4034-8f6a-378e99476bf4", + "name" : "phone number", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-attribute-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "phoneNumber", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "phone_number", + "jsonType.label" : "String" + } + }, { + "id" : "f8a484ce-7c5f-4562-8d61-ec161e2929f6", + "name" : "phone number verified", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-attribute-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "phoneNumberVerified", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "phone_number_verified", + "jsonType.label" : "boolean" + } + } ] + }, { + "id" : "b188dc18-eca7-4941-ab04-d3e599e9aa93", + "name" : "profile", + "description" : "OpenID Connect built-in scope: profile", + "protocol" : "openid-connect", + "attributes" : { + "include.in.token.scope" : "true", + "display.on.consent.screen" : "true", + "consent.screen.text" : "${profileScopeConsentText}" + }, + "protocolMappers" : [ { + "id" : "0d52d80c-a7e1-45f9-a16e-1965220474d5", + "name" : "nickname", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-attribute-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "nickname", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "nickname", + "jsonType.label" : "String" + } + }, { + "id" : "cf0e8f74-1996-4ad1-8bcc-3f331bea4e45", + "name" : "birthdate", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-attribute-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "birthdate", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "birthdate", + "jsonType.label" : "String" + } + }, { + "id" : "c58346fb-1470-420c-a6cb-c115e833444b", + "name" : "full name", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-full-name-mapper", + "consentRequired" : false, + "config" : { + "id.token.claim" : "true", + "access.token.claim" : "true", + "userinfo.token.claim" : "true" + } + }, { + "id" : "bdfca3bd-1dda-4ebe-993c-ea11c674c919", + "name" : "gender", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-attribute-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "gender", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "gender", + "jsonType.label" : "String" + } + }, { + "id" : "1299560c-f37d-47d2-96f7-712761cf679a", + "name" : "middle name", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-attribute-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "middleName", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "middle_name", + "jsonType.label" : "String" + } + }, { + "id" : "c67dab67-c3b4-40c4-91fe-7c9ce61fca5f", + "name" : "zoneinfo", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-attribute-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "zoneinfo", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "zoneinfo", + "jsonType.label" : "String" + } + }, { + "id" : "8682ba32-def5-4111-b2ab-79cd865844d0", + "name" : "family name", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-property-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "lastName", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "family_name", + "jsonType.label" : "String" + } + }, { + "id" : "0ee61bf2-d022-420a-aa6d-c7e8bd60e24f", + "name" : "picture", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-attribute-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "picture", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "picture", + "jsonType.label" : "String" + } + }, { + "id" : "3acdc903-7ceb-40b8-8516-ebbc7874d6e4", + "name" : "given name", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-property-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "firstName", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "given_name", + "jsonType.label" : "String" + } + }, { + "id" : "d1fe9f83-141c-4c8c-9635-20367c7e5218", + "name" : "locale", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-attribute-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "locale", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "locale", + "jsonType.label" : "String" + } + }, { + "id" : "502de8c4-4cdf-402b-8453-d407a7b666da", + "name" : "username", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-property-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "username", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "preferred_username", + "jsonType.label" : "String" + } + }, { + "id" : "1603ac87-6a50-4205-b9b9-4ba4d3224d83", + "name" : "website", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-attribute-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "website", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "website", + "jsonType.label" : "String" + } + }, { + "id" : "f2c9d6f6-06b7-415a-87b3-c872a26ab921", + "name" : "updated at", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-attribute-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "updatedAt", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "updated_at", + "jsonType.label" : "String" + } + }, { + "id" : "ee586b78-b33e-4a0b-842f-9bd7059a747a", + "name" : "profile", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-attribute-mapper", + "consentRequired" : false, + "config" : { + "userinfo.token.claim" : "true", + "user.attribute" : "profile", + "id.token.claim" : "true", + "access.token.claim" : "true", + "claim.name" : "profile", + "jsonType.label" : "String" + } + } ] + }, { + "id" : "83717992-b174-46c3-99f1-1a097b02e99c", + "name" : "role_list", + "description" : "SAML role list", + "protocol" : "saml", + "attributes" : { + "consent.screen.text" : "${samlRoleListScopeConsentText}", + "display.on.consent.screen" : "true" + }, + "protocolMappers" : [ { + "id" : "0c0b8746-2e89-4ede-9ea6-ac76d2c66f33", + "name" : "role list", + "protocol" : "saml", + "protocolMapper" : "saml-role-list-mapper", + "consentRequired" : false, + "config" : { + "single" : "false", + "attribute.nameformat" : "Basic", + "attribute.name" : "Role" + } + } ] + }, { + "id" : "da1df8bb-b502-44fb-94a4-cff04b190a8c", + "name" : "roles", + "description" : "OpenID Connect scope for add user roles to the access token", + "protocol" : "openid-connect", + "attributes" : { + "include.in.token.scope" : "false", + "display.on.consent.screen" : "true", + "consent.screen.text" : "${rolesScopeConsentText}" + }, + "protocolMappers" : [ { + "id" : "cef58889-d64f-4405-a1f9-4978962472aa", + "name" : "realm roles", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-realm-role-mapper", + "consentRequired" : false, + "config" : { + "user.attribute" : "foo", + "access.token.claim" : "true", + "claim.name" : "realm_access.roles", + "jsonType.label" : "String", + "multivalued" : "true" + } + }, { + "id" : "44e1ccc5-63d0-464f-a88c-535864dba161", + "name" : "audience resolve", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-audience-resolve-mapper", + "consentRequired" : false, + "config" : { } + }, { + "id" : "fc7ab48f-7268-4f85-874c-8b35d00d5fb1", + "name" : "client roles", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-usermodel-client-role-mapper", + "consentRequired" : false, + "config" : { + "user.attribute" : "foo", + "access.token.claim" : "true", + "claim.name" : "resource_access.${client_id}.roles", + "jsonType.label" : "String", + "multivalued" : "true" + } + } ] + }, { + "id" : "cab2790d-6362-4d1a-96cb-427e906ea1d0", + "name" : "web-origins", + "description" : "OpenID Connect scope for add allowed web origins to the access token", + "protocol" : "openid-connect", + "attributes" : { + "include.in.token.scope" : "false", + "display.on.consent.screen" : "false", + "consent.screen.text" : "" + }, + "protocolMappers" : [ { + "id" : "e8c45111-ab73-4a68-a793-fdcc71c4f2ad", + "name" : "allowed web origins", + "protocol" : "openid-connect", + "protocolMapper" : "oidc-allowed-origins-mapper", + "consentRequired" : false, + "config" : { } + } ] + } ], + "defaultDefaultClientScopes" : [ "role_list", "profile", "email", "roles", "web-origins" ], + "defaultOptionalClientScopes" : [ "offline_access", "address", "phone", "microprofile-jwt" ], + "browserSecurityHeaders" : { + "contentSecurityPolicyReportOnly" : "", + "xContentTypeOptions" : "nosniff", + "xRobotsTag" : "none", + "xFrameOptions" : "ALLOW-FROM https://integrated-ui-test.k8s.medina.esilab.org", + "contentSecurityPolicy" : "frame-src 'self' https://integrated-ui-test.k8s.medina.esilab.org; frame-ancestors 'self' https://ssi-framework-ui-test.k8s.medina.esilab.org https://integrated-ui-test.k8s.medina.esilab.org; object-src https://integrated-ui-test.k8s.medina.esilab.org;", + "xXSSProtection" : "1; mode=block", + "strictTransportSecurity" : "max-age=31536000; includeSubDomains" + }, + "smtpServer" : { + "password" : "medinaPassword", + "starttls" : "", + "auth" : "true", + "host" : "smtp.gmail.com", + "from" : "medinatestuser@gmail.com", + "ssl" : "true", + "user" : "medinatestuser@gmail.com" + }, + "eventsEnabled" : false, + "eventsListeners" : [ "jboss-logging" ], + "enabledEventTypes" : [ ], + "adminEventsEnabled" : false, + "adminEventsDetailsEnabled" : false, + "identityProviders" : [ { + "alias" : "oidc", + "displayName" : "Bosch Login", + "internalId" : "0a60d4b9-c19c-4df7-9d55-f27547b90af0", + "providerId" : "oidc", + "enabled" : true, + "updateProfileFirstLoginMode" : "on", + "trustEmail" : false, + "storeToken" : false, + "addReadTokenRoleOnCreate" : false, + "authenticateByDefault" : false, + "linkOnly" : false, + "firstBrokerLoginFlowAlias" : "first broker login", + "config" : { + "userInfoUrl" : "https://stfs.test-bosch.com/adfs/userinfo", + "validateSignature" : "true", + "clientId" : "acfbc2ab-64e4-4b64-ad0e-204ec212cbbf", + "tokenUrl" : "https://stfs.test-bosch.com/adfs/oauth2/token/", + "jwksUrl" : "https://stfs.test-bosch.com/adfs/discovery/keys", + "issuer" : "https://stfs.test-bosch.com/adfs", + "useJwksUrl" : "true", + "authorizationUrl" : "https://stfs.test-bosch.com/adfs/oauth2/authorize/", + "clientAuthMethod" : "client_secret_post", + "disableUserInfo" : "true", + "logoutUrl" : "https://stfs.test-bosch.com/adfs/oauth2/logout", + "syncMode" : "IMPORT", + "clientSecret" : "Iog6MCAS2DoU0tLURqTVOME5p_Fq-LY_eewuOye4" + } + } ], + "identityProviderMappers" : [ { + "id" : "cee2fe7d-394c-4a29-acae-e533461f8c96", + "name" : "Default Compliance Manager mapper", + "identityProviderAlias" : "oidc", + "identityProviderMapper" : "oidc-hardcoded-role-idp-mapper", + "config" : { + "syncMode" : "INHERIT", + "role" : "Compliance Manager" + } + }, { + "id" : "b1411ad2-ab3e-4cf2-8395-804b7a4851a6", + "name" : "Username Custom Mapper", + "identityProviderAlias" : "oidc", + "identityProviderMapper" : "oidc-username-idp-mapper", + "config" : { + "template" : "${CLAIM.email}", + "syncMode" : "INHERIT", + "attribute" : "${CLAIM.email}", + "target" : "LOCAL" + } + }, { + "id" : "b91b6d50-33dd-4ef1-862d-9df57fb2ace8", + "name" : "IDM2BCD_MEDINA_ROLE_Auditor", + "identityProviderAlias" : "oidc", + "identityProviderMapper" : "oidc-role-idp-mapper", + "config" : { + "syncMode" : "FORCE", + "claim" : "IDM2BCD_MEDINA_ROLE_Auditor", + "role" : "Auditor", + "claim.value" : "IDM2BCD_MEDINA_ROLE_Auditor" + } + } ], + "components" : { + "org.keycloak.services.clientregistration.policy.ClientRegistrationPolicy" : [ { + "id" : "fbccf871-d01e-4d47-99d0-3bdce3bfa12c", + "name" : "Allowed Client Scopes", + "providerId" : "allowed-client-templates", + "subType" : "anonymous", + "subComponents" : { }, + "config" : { + "allow-default-scopes" : [ "true" ] + } + }, { + "id" : "611a0a79-84c4-4d2d-9d11-01eb58141a46", + "name" : "Trusted Hosts", + "providerId" : "trusted-hosts", + "subType" : "anonymous", + "subComponents" : { }, + "config" : { + "host-sending-registration-request-must-match" : [ "true" ], + "client-uris-must-match" : [ "true" ] + } + }, { + "id" : "2124ff56-7c6f-4095-ba92-ae335222f88c", + "name" : "Full Scope Disabled", + "providerId" : "scope", + "subType" : "anonymous", + "subComponents" : { }, + "config" : { } + }, { + "id" : "b8f02611-098d-402f-90a6-a1f09afcdb22", + "name" : "Allowed Protocol Mapper Types", + "providerId" : "allowed-protocol-mappers", + "subType" : "anonymous", + "subComponents" : { }, + "config" : { + "allowed-protocol-mapper-types" : [ "oidc-sha256-pairwise-sub-mapper", "saml-role-list-mapper", "oidc-address-mapper", "oidc-usermodel-attribute-mapper", "saml-user-attribute-mapper", "saml-user-property-mapper", "oidc-full-name-mapper", "oidc-usermodel-property-mapper" ] + } + }, { + "id" : "cca940dd-d866-44db-a211-0ed1bc682ae7", + "name" : "Allowed Protocol Mapper Types", + "providerId" : "allowed-protocol-mappers", + "subType" : "authenticated", + "subComponents" : { }, + "config" : { + "allowed-protocol-mapper-types" : [ "oidc-usermodel-property-mapper", "oidc-address-mapper", "saml-user-property-mapper", "oidc-usermodel-attribute-mapper", "oidc-sha256-pairwise-sub-mapper", "oidc-full-name-mapper", "saml-role-list-mapper", "saml-user-attribute-mapper" ] + } + }, { + "id" : "dfb48f4f-8760-419e-9337-15eb81a41fdb", + "name" : "Max Clients Limit", + "providerId" : "max-clients", + "subType" : "anonymous", + "subComponents" : { }, + "config" : { + "max-clients" : [ "200" ] + } + }, { + "id" : "dfbcfdd0-4628-4a27-927a-4a476017ca56", + "name" : "Allowed Client Scopes", + "providerId" : "allowed-client-templates", + "subType" : "authenticated", + "subComponents" : { }, + "config" : { + "allow-default-scopes" : [ "true" ] + } + }, { + "id" : "cb8bff43-35e8-4fbc-9758-02da2892008d", + "name" : "Consent Required", + "providerId" : "consent-required", + "subType" : "anonymous", + "subComponents" : { }, + "config" : { } + } ], + "org.keycloak.keys.KeyProvider" : [ { + "id" : "4fcc8a9a-8dac-4051-8c34-748bf12d011d", + "name" : "rsa-generated", + "providerId" : "rsa-generated", + "subComponents" : { }, + "config" : { + "privateKey" : [ "MIIEpAIBAAKCAQEAqpMWsm7G85cM6j1jJCxmM6UAssq+oVsfdFUNEXJPpjy4FGRo4cIzaSPjqLAHn1xrBY4wWoPQU+4h2RRurXw0ELLhCIy+LIfUU0djB/5v0s5vqzaj/v8nSKQuKT2NY04b1oNTSeUuL1/sopo8ZcvtOdD2gTlVE2qDQJvJuKxIK9D4r2h2E7Kh7GwI0VIuywi0Ehdbwm21LTZlcrrmNu1pzN8oodjz0uYRIQ/p+AJCa0b+RhFQWN40XTmW1hmERE/J21ZK8sMcmO0vKcg5v2yzDOMQUcTMVVA1MHER8Q08yTYWmyQNP6E3xobVhqwCeClzcNCw1SdNfOVTuqCiZOWQWQIDAQABAoIBAEhcYbKMYAYSPD5akGZWF30tMGCotboJyAw30HVoQvXIqGauOfgbxGeD/B4hnvox4IzYxxZ++K/CQ8Wtb05VdFjpKaHQ4xRNAvvZOt+3RoTtYl4FrgiNAYNFcve3zvUju5eC2qBsgu1CCkbom1qr6hUu2oPzaG32L3wHGsom++7p4YE7FAzfqrEhntlVouMf9oW2477823gcr4LtX3tz2uIw8ZtSGsAxPGWfunxtX9qTgEVzXUFYou94fn7u6vRbRKSqq/udjQcSRaPzdrdto98oH6Y+3rm0PKj5sTkJf8SJHJFCPTgIgnG/7VZm8ZVJAoGLLUGzNC6pgEFdYjDmhSkCgYEA+mQYOKF6f8c5axsrUXtHHoWKYjZCXnWCH+P+DJQAHFSvdPAZgLJ6odKS8tFhujh8murE5WGsVkXxqZOHwXqBHrWrpJhfO8otHPEklhjn2MAhrxWxHEVokdUJjfUzoK0S6RVni/4hZIFkj3322lW7KXdSoeM5dfe9hFKxYM8G+jMCgYEArmVGSJtOzrIAzRZCmMwXwW/rV9Hi8QQOJRy8IM5zLvQutZa3RbqGPjOnq8XjsT98L6w4tM6WsTXWmGxOKDFzPhtg3pxz0ghFC895WaDqz1EL3Wjzp0p1a0mqo8zA+vOh9h+0YQs649eOPHkdr5AvMqenpxIwhu7nG0WOK+OKl0MCgYEAzcYiza+PP6GXg3kxkWYRnXi7sFjNFFnX1aOF7gpXSPEjvKNxIf4LoB+w2lLO0L6JULstkyFBAym6H9V5lLy7jmRYqgz6/uT5TDa1DZFsQAot5HicNBKqjGaa0oo3oo155AnOLhNsl+9qmC46B1a7WKmSRC6700IFAtD+qwOYxVcCgYB1892ToietOUu9ar7kZbXziWUd4sGhzeJbS5Iahkf1jAZDn4qZyMyfKYTQc2nLKmsuO0enUsstVIKuWSKLoNaXPSFJr3vOpPU+RbeH3YSzb9eciy2xCnVceVjGrOghU8NJmqv/rv7Ht7VmRWzEn7qsgiSspWrY+KCrG2JLYP0NzQKBgQDtcbX43N7aGMs/wP2Y/PDoTPeIB6f0+D7rdoHBmK6nUxQ9V70uAyYC4WtJudrKkVKUKAK8oOgbD2Qne2t02pbYKxQQDyBGQObuyC28fA5DHl9F8j6jx2u+He1s23V9HZhxj36TOVIjdjctRCDGTg32RMLGZlli0St2hK9EWSrUvQ==" ], + "certificate" : [ "MIICmzCCAYMCBgF/LGg1XzANBgkqhkiG9w0BAQsFADARMQ8wDQYDVQQDDAZtZWRpbmEwHhcNMjIwMjI0MTU0MzIxWhcNMzIwMjI0MTU0NTAxWjARMQ8wDQYDVQQDDAZtZWRpbmEwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCqkxaybsbzlwzqPWMkLGYzpQCyyr6hWx90VQ0Rck+mPLgUZGjhwjNpI+OosAefXGsFjjBag9BT7iHZFG6tfDQQsuEIjL4sh9RTR2MH/m/Szm+rNqP+/ydIpC4pPY1jThvWg1NJ5S4vX+yimjxly+050PaBOVUTaoNAm8m4rEgr0PivaHYTsqHsbAjRUi7LCLQSF1vCbbUtNmVyuuY27WnM3yih2PPS5hEhD+n4AkJrRv5GEVBY3jRdOZbWGYRET8nbVkrywxyY7S8pyDm/bLMM4xBRxMxVUDUwcRHxDTzJNhabJA0/oTfGhtWGrAJ4KXNw0LDVJ0185VO6oKJk5ZBZAgMBAAEwDQYJKoZIhvcNAQELBQADggEBAD7yJ2HegJ3/LzAmn/JIDXH1qfZ2DgGyfFQk82tWmFnsxVaLrv0sehS7Ufza5JRsudmzL6I8LHTgYuS1zyDZ1kmEB4gIpmw+ZI4M+isIpuzGRz8B3t2y3jOnEKjykjTWWYQrINYQiqPKU8LSFwe+Uqtcqga0TqgZ2fO8tkeP74a7JVk1hd4JD50shuPIInPx5PfqN7xAUebyPeJk91RQVC4tSpIIlFyd13MFQOzocj9uB685SE6DT3vjguYod6tv7JIUme0+JZIhd67hBlZS71ebL2B0gcX7+9jKZi3oeGFX+2k5CWCHZUf7KBvY3WaxxZTlFCtRcNbWKkMUmVTjRJ8=" ], + "priority" : [ "100" ] + } + }, { + "id" : "025383fb-ebfe-4e5d-b82e-ada254fff0fc", + "name" : "hmac-generated", + "providerId" : "hmac-generated", + "subComponents" : { }, + "config" : { + "kid" : [ "672cf3de-8a6e-43a9-bbb3-3b4cda7477a5" ], + "secret" : [ "lxJLgn2fZb9sMr0OZOzv98PC9GZWRJRGrNP86lb99Ded4XqqVXPU5HGxdn6RCxXdJxZyydNbrCnzDhZSpYLJDw" ], + "priority" : [ "100" ], + "algorithm" : [ "HS256" ] + } + }, { + "id" : "9e25e190-e32d-4bc8-9c9d-f5683ba8d2c3", + "name" : "aes-generated", + "providerId" : "aes-generated", + "subComponents" : { }, + "config" : { + "kid" : [ "5fe1d9fe-f688-4e7b-8871-176b5cf97cd4" ], + "secret" : [ "o_z-vBEGNLSgbqxfgun_sg" ], + "priority" : [ "100" ] + } + } ] + }, + "internationalizationEnabled" : false, + "supportedLocales" : [ ], + "authenticationFlows" : [ { + "id" : "4e345988-b128-46e4-9840-15cbd314b031", + "alias" : "Account verification options", + "description" : "Method with which to verity the existing account", + "providerId" : "basic-flow", + "topLevel" : false, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticator" : "idp-email-verification", + "requirement" : "ALTERNATIVE", + "priority" : 10, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "requirement" : "ALTERNATIVE", + "priority" : 20, + "flowAlias" : "Verify Existing Account by Re-authentication", + "userSetupAllowed" : false, + "autheticatorFlow" : true + } ] + }, { + "id" : "16646d4e-e1db-4f66-8701-4ca62813d859", + "alias" : "Authentication Options", + "description" : "Authentication options.", + "providerId" : "basic-flow", + "topLevel" : false, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticator" : "basic-auth", + "requirement" : "REQUIRED", + "priority" : 10, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "authenticator" : "basic-auth-otp", + "requirement" : "DISABLED", + "priority" : 20, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "authenticator" : "auth-spnego", + "requirement" : "DISABLED", + "priority" : 30, + "userSetupAllowed" : false, + "autheticatorFlow" : false + } ] + }, { + "id" : "309678aa-e97c-4ad3-a7ea-2c0dc252de47", + "alias" : "Browser - Conditional OTP", + "description" : "Flow to determine if the OTP is required for the authentication", + "providerId" : "basic-flow", + "topLevel" : false, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticator" : "conditional-user-configured", + "requirement" : "REQUIRED", + "priority" : 10, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "authenticator" : "auth-otp-form", + "requirement" : "REQUIRED", + "priority" : 20, + "userSetupAllowed" : false, + "autheticatorFlow" : false + } ] + }, { + "id" : "3d96e9f7-f668-46f1-99cf-068c0d514713", + "alias" : "Direct Grant - Conditional OTP", + "description" : "Flow to determine if the OTP is required for the authentication", + "providerId" : "basic-flow", + "topLevel" : false, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticator" : "conditional-user-configured", + "requirement" : "REQUIRED", + "priority" : 10, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "authenticator" : "direct-grant-validate-otp", + "requirement" : "REQUIRED", + "priority" : 20, + "userSetupAllowed" : false, + "autheticatorFlow" : false + } ] + }, { + "id" : "825c4d73-a1af-47be-ba7a-d62319b9240d", + "alias" : "First broker login - Conditional OTP", + "description" : "Flow to determine if the OTP is required for the authentication", + "providerId" : "basic-flow", + "topLevel" : false, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticator" : "conditional-user-configured", + "requirement" : "REQUIRED", + "priority" : 10, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "authenticator" : "auth-otp-form", + "requirement" : "REQUIRED", + "priority" : 20, + "userSetupAllowed" : false, + "autheticatorFlow" : false + } ] + }, { + "id" : "7c1e0476-f5ad-4827-9aae-1224f6f28c52", + "alias" : "Handle Existing Account", + "description" : "Handle what to do if there is existing account with same email/username like authenticated identity provider", + "providerId" : "basic-flow", + "topLevel" : false, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticator" : "idp-confirm-link", + "requirement" : "REQUIRED", + "priority" : 10, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "requirement" : "REQUIRED", + "priority" : 20, + "flowAlias" : "Account verification options", + "userSetupAllowed" : false, + "autheticatorFlow" : true + } ] + }, { + "id" : "c691ba21-0f24-42e2-9cf1-cfd9a2739ea2", + "alias" : "Reset - Conditional OTP", + "description" : "Flow to determine if the OTP should be reset or not. Set to REQUIRED to force.", + "providerId" : "basic-flow", + "topLevel" : false, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticator" : "conditional-user-configured", + "requirement" : "REQUIRED", + "priority" : 10, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "authenticator" : "reset-otp", + "requirement" : "REQUIRED", + "priority" : 20, + "userSetupAllowed" : false, + "autheticatorFlow" : false + } ] + }, { + "id" : "ef9de341-61ba-4f15-8b14-98e6af4d495c", + "alias" : "User creation or linking", + "description" : "Flow for the existing/non-existing user alternatives", + "providerId" : "basic-flow", + "topLevel" : false, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticatorConfig" : "create unique user config", + "authenticator" : "idp-create-user-if-unique", + "requirement" : "ALTERNATIVE", + "priority" : 10, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "requirement" : "ALTERNATIVE", + "priority" : 20, + "flowAlias" : "Handle Existing Account", + "userSetupAllowed" : false, + "autheticatorFlow" : true + } ] + }, { + "id" : "93f5bb64-ad12-4637-ba04-89f8adc1eac7", + "alias" : "Verify Existing Account by Re-authentication", + "description" : "Reauthentication of existing account", + "providerId" : "basic-flow", + "topLevel" : false, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticator" : "idp-username-password-form", + "requirement" : "REQUIRED", + "priority" : 10, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "requirement" : "CONDITIONAL", + "priority" : 20, + "flowAlias" : "First broker login - Conditional OTP", + "userSetupAllowed" : false, + "autheticatorFlow" : true + } ] + }, { + "id" : "afae3552-259b-44e9-ab36-74d57670dd42", + "alias" : "browser", + "description" : "browser based authentication", + "providerId" : "basic-flow", + "topLevel" : true, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticator" : "auth-cookie", + "requirement" : "ALTERNATIVE", + "priority" : 10, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "authenticator" : "auth-spnego", + "requirement" : "DISABLED", + "priority" : 20, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "authenticator" : "identity-provider-redirector", + "requirement" : "ALTERNATIVE", + "priority" : 25, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "requirement" : "ALTERNATIVE", + "priority" : 30, + "flowAlias" : "forms", + "userSetupAllowed" : false, + "autheticatorFlow" : true + } ] + }, { + "id" : "cf41a633-5d8f-4d11-acbe-1033dd4adfb2", + "alias" : "clients", + "description" : "Base authentication for clients", + "providerId" : "client-flow", + "topLevel" : true, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticator" : "client-secret", + "requirement" : "ALTERNATIVE", + "priority" : 10, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "authenticator" : "client-jwt", + "requirement" : "ALTERNATIVE", + "priority" : 20, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "authenticator" : "client-secret-jwt", + "requirement" : "ALTERNATIVE", + "priority" : 30, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "authenticator" : "client-x509", + "requirement" : "ALTERNATIVE", + "priority" : 40, + "userSetupAllowed" : false, + "autheticatorFlow" : false + } ] + }, { + "id" : "34de92f5-764b-4857-abd2-bee203a5c22a", + "alias" : "direct grant", + "description" : "OpenID Connect Resource Owner Grant", + "providerId" : "basic-flow", + "topLevel" : true, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticator" : "direct-grant-validate-username", + "requirement" : "REQUIRED", + "priority" : 10, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "authenticator" : "direct-grant-validate-password", + "requirement" : "REQUIRED", + "priority" : 20, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "requirement" : "CONDITIONAL", + "priority" : 30, + "flowAlias" : "Direct Grant - Conditional OTP", + "userSetupAllowed" : false, + "autheticatorFlow" : true + } ] + }, { + "id" : "29081142-ad8f-4553-a85a-4170089d10d6", + "alias" : "docker auth", + "description" : "Used by Docker clients to authenticate against the IDP", + "providerId" : "basic-flow", + "topLevel" : true, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticator" : "docker-http-basic-authenticator", + "requirement" : "REQUIRED", + "priority" : 10, + "userSetupAllowed" : false, + "autheticatorFlow" : false + } ] + }, { + "id" : "9d53ad47-0546-4164-88fa-64328f92bd88", + "alias" : "first broker login", + "description" : "Actions taken after first broker login with identity provider account, which is not yet linked to any Keycloak account", + "providerId" : "basic-flow", + "topLevel" : true, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticatorConfig" : "review profile config", + "authenticator" : "idp-review-profile", + "requirement" : "REQUIRED", + "priority" : 10, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "requirement" : "REQUIRED", + "priority" : 20, + "flowAlias" : "User creation or linking", + "userSetupAllowed" : false, + "autheticatorFlow" : true + } ] + }, { + "id" : "f8abede7-b7cb-42c0-af0e-c06b1949004e", + "alias" : "forms", + "description" : "Username, password, otp and other auth forms.", + "providerId" : "basic-flow", + "topLevel" : false, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticator" : "auth-username-password-form", + "requirement" : "REQUIRED", + "priority" : 10, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "requirement" : "CONDITIONAL", + "priority" : 20, + "flowAlias" : "Browser - Conditional OTP", + "userSetupAllowed" : false, + "autheticatorFlow" : true + } ] + }, { + "id" : "9ab6d7a4-b959-4262-ae5a-88e242864b50", + "alias" : "http challenge", + "description" : "An authentication flow based on challenge-response HTTP Authentication Schemes", + "providerId" : "basic-flow", + "topLevel" : true, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticator" : "no-cookie-redirect", + "requirement" : "REQUIRED", + "priority" : 10, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "requirement" : "REQUIRED", + "priority" : 20, + "flowAlias" : "Authentication Options", + "userSetupAllowed" : false, + "autheticatorFlow" : true + } ] + }, { + "id" : "03bddbee-3d9f-4086-b0ec-dbc5c25cad90", + "alias" : "registration", + "description" : "registration flow", + "providerId" : "basic-flow", + "topLevel" : true, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticator" : "registration-page-form", + "requirement" : "REQUIRED", + "priority" : 10, + "flowAlias" : "registration form", + "userSetupAllowed" : false, + "autheticatorFlow" : true + } ] + }, { + "id" : "f02b131f-75ff-43f8-a5b1-0cece634c1b6", + "alias" : "registration form", + "description" : "registration form", + "providerId" : "form-flow", + "topLevel" : false, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticator" : "registration-user-creation", + "requirement" : "REQUIRED", + "priority" : 20, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "authenticator" : "registration-profile-action", + "requirement" : "REQUIRED", + "priority" : 40, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "authenticator" : "registration-password-action", + "requirement" : "REQUIRED", + "priority" : 50, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "authenticator" : "registration-recaptcha-action", + "requirement" : "DISABLED", + "priority" : 60, + "userSetupAllowed" : false, + "autheticatorFlow" : false + } ] + }, { + "id" : "079a9e08-88cd-4b54-8e85-d295c81b480a", + "alias" : "reset credentials", + "description" : "Reset credentials for a user if they forgot their password or something", + "providerId" : "basic-flow", + "topLevel" : true, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticator" : "reset-credentials-choose-user", + "requirement" : "REQUIRED", + "priority" : 10, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "authenticator" : "reset-credential-email", + "requirement" : "REQUIRED", + "priority" : 20, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "authenticator" : "reset-password", + "requirement" : "REQUIRED", + "priority" : 30, + "userSetupAllowed" : false, + "autheticatorFlow" : false + }, { + "requirement" : "CONDITIONAL", + "priority" : 40, + "flowAlias" : "Reset - Conditional OTP", + "userSetupAllowed" : false, + "autheticatorFlow" : true + } ] + }, { + "id" : "e2b4da1c-01bf-4e26-8fdf-acd874ce9da5", + "alias" : "saml ecp", + "description" : "SAML ECP Profile Authentication Flow", + "providerId" : "basic-flow", + "topLevel" : true, + "builtIn" : true, + "authenticationExecutions" : [ { + "authenticator" : "http-basic-authenticator", + "requirement" : "REQUIRED", + "priority" : 10, + "userSetupAllowed" : false, + "autheticatorFlow" : false + } ] + } ], + "authenticatorConfig" : [ { + "id" : "3359a03e-b42b-480a-a1a1-462ffb4023c2", + "alias" : "create unique user config", + "config" : { + "require.password.update.after.registration" : "false" + } + }, { + "id" : "3f25f088-0cd6-4a14-b740-bddb462e1098", + "alias" : "review profile config", + "config" : { + "update.profile.on.first.login" : "missing" + } + } ], + "requiredActions" : [ { + "alias" : "CONFIGURE_TOTP", + "name" : "Configure OTP", + "providerId" : "CONFIGURE_TOTP", + "enabled" : true, + "defaultAction" : false, + "priority" : 10, + "config" : { } + }, { + "alias" : "terms_and_conditions", + "name" : "Terms and Conditions", + "providerId" : "terms_and_conditions", + "enabled" : false, + "defaultAction" : false, + "priority" : 20, + "config" : { } + }, { + "alias" : "UPDATE_PASSWORD", + "name" : "Update Password", + "providerId" : "UPDATE_PASSWORD", + "enabled" : true, + "defaultAction" : false, + "priority" : 30, + "config" : { } + }, { + "alias" : "UPDATE_PROFILE", + "name" : "Update Profile", + "providerId" : "UPDATE_PROFILE", + "enabled" : true, + "defaultAction" : false, + "priority" : 40, + "config" : { } + }, { + "alias" : "VERIFY_EMAIL", + "name" : "Verify Email", + "providerId" : "VERIFY_EMAIL", + "enabled" : true, + "defaultAction" : false, + "priority" : 50, + "config" : { } + }, { + "alias" : "delete_account", + "name" : "Delete Account", + "providerId" : "delete_account", + "enabled" : false, + "defaultAction" : false, + "priority" : 60, + "config" : { } + }, { + "alias" : "update_user_locale", + "name" : "Update User Locale", + "providerId" : "update_user_locale", + "enabled" : true, + "defaultAction" : false, + "priority" : 1000, + "config" : { } + } ], + "browserFlow" : "browser", + "registrationFlow" : "registration", + "directGrantFlow" : "direct grant", + "resetCredentialsFlow" : "reset credentials", + "clientAuthenticationFlow" : "clients", + "dockerAuthenticationFlow" : "docker auth", + "attributes" : { + "clientOfflineSessionMaxLifespan" : "0", + "clientSessionIdleTimeout" : "0", + "clientSessionMaxLifespan" : "0", + "frontendUrl" : "", + "clientOfflineSessionIdleTimeout" : "0" + }, + "keycloakVersion" : "12.0.4", + "userManagedAccessAllowed" : false } \ No newline at end of file diff --git a/docker-compose-dev-expose.yaml b/docker-compose-dev-expose.yaml index a139a711012799444de11fc7de1ac633b285964b..636d2e8f5e96becaab68cfe085fea7ebee875a59 100755 --- a/docker-compose-dev-expose.yaml +++ b/docker-compose-dev-expose.yaml @@ -1,15 +1,14 @@ -# SPDX-License-Identifier: Apache-2.0 -version: "3.8" - -services: - medina-mysql: - ports: - - 3306:3306 - - # cocgateway-app: - # ports: - # - 8180:8080 - - # cocbackend-app: - # ports: - # - 8181:8081 +version: "3.8" + +services: + medina-mysql: + ports: + - 3306:3306 + + # cocgateway-app: + # ports: + # - 8180:8080 + + # cocbackend-app: + # ports: + # - 8181:8081 diff --git a/docker-compose-dev.yaml b/docker-compose-dev.yaml index 41e50bca488b0be1ee4bc2756a17413d6bb635ff..81f875f387f45d0260a93d13ebcbff278f3a0087 100755 --- a/docker-compose-dev.yaml +++ b/docker-compose-dev.yaml @@ -1,4 +1,3 @@ -# SPDX-License-Identifier: Apache-2.0 services: jhipster-registry: diff --git a/docker-compose.yaml b/docker-compose.yaml index 774c3c306c940783c6ce573b2c70a8728dd4d6cb..968de9fcb19c2bfb005e423bedefedca685a12b3 100755 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -1,4 +1,3 @@ -# SPDX-License-Identifier: Apache-2.0 # This configuration is intended for development purpose, it's **your** responsibility to harden it for production version: '3.8' services: @@ -6,7 +5,9 @@ services: medina-mysql: restart: always volumes: - - mysql_data:/var/lib/mysql + - mysql_data:/var/lib/mysql + ports: + - 127.0.0.1:3306:3306 jhipster-registry: restart: always @@ -57,6 +58,11 @@ services: SPRING_SECURITY_OAUTH2_CLIENT_REGISTRATION_OIDC_CLIENT_ID: catalogue-backend SPRING_SECURITY_OAUTH2_CLIENT_REGISTRATION_OIDC_CLIENT_SECRET: internal + # Delete this for DEV/TEST environments...or not necessary? + SATRA_LOGIN_URL: 'https://risk-assessment-app-dev.k8s.medina.esilab.org/api/v1/registration/access_resp/admin/medinaPassword' + SATRA_PRACTICE_URL: 'https://risk-assessment-app-dev.k8s.medina.esilab.org/api/v1/practice/map/{1}' + ORCHESTRATOR_URL: 'https://orchestrator-dev.k8s.medina.esilab.org/v1/orchestrator/cloud_services/{1}' + volumes: mysql_data: diff --git a/how b/how new file mode 100644 index 0000000000000000000000000000000000000000..a4fa66b6557a7e603cdc4cd7ec430fee2287f67b --- /dev/null +++ b/how @@ -0,0 +1,1609 @@ +[33mcommit 5310100e85227e485489f4ed24f13b8c306c7038[m[33m ([m[1;36mHEAD -> [m[1;32mmaster[m[33m)[m +Author: IñakiEtxaniz <inaki.etxaniz@tecnalia.com> +Date: Thu Jul 20 12:37:04 2023 +0200 + + refToms + +[33mcommit 700d2eb76524fe9b1c35ad44532d456e386066f4[m[33m ([m[1;31morigin/master[m[33m, [m[1;31morigin/HEAD[m[33m)[m +Author: Alberto Molinuevo MartĂn <alberto.molinuevo@tecnalia.com> +Date: Fri Jul 14 11:17:40 2023 +0200 + + Footerm od + +[33mcommit b05714a03238ef83ce1091c6178a543ae80f8021[m +Author: Alberto Molinuevo MartĂn <alberto.molinuevo@tecnalia.com> +Date: Thu Jul 13 11:06:38 2023 +0200 + + Assurance level filter fixed in Requirements + +[33mcommit 41a64cff7cc82a41eeb2e1d5bf23b67b946dde5e[m +Author: Etxaniz Errazkin, Iñaki <inaki.etxaniz@tecnalia.com> +Date: Wed Jul 12 14:27:15 2023 +0200 + + Update file api-docs__1_.json + +[33mcommit 3e529f606eeac6152cb4019f47ab384fb83b197d[m +Author: Etxaniz Errazkin, Iñaki <inaki.etxaniz@tecnalia.com> +Date: Wed Jul 12 13:12:05 2023 +0200 + + Replace openapi.json + +[33mcommit e75a60cc6e9b8a653d4771c5d5c5e56bf2c245d6[m +Author: Etxaniz Errazkin, Iñaki <inaki.etxaniz@tecnalia.com> +Date: Wed Jul 12 13:09:35 2023 +0200 + + Upload New File + +[33mcommit 571c09467e4358d54eafaac7de326555eaab12ae[m +Author: Alberto Molinuevo MartĂn <alberto.molinuevo@tecnalia.com> +Date: Mon Jul 10 11:37:37 2023 +0200 + + Showing the cloud service names + +[33mcommit cef71b766a50699d532aedd758aebb42f2281de2[m +Author: Alberto Molinuevo MartĂn <alberto.molinuevo@tecnalia.com> +Date: Mon Jun 12 15:41:44 2023 +0200 + + Added Requirement to Metrics filter + +[33mcommit 102eb0f6ec8e2b429815710c1abde5e40830fdfb[m +Author: Alberto Molinuevo MartĂn <alberto.molinuevo@tecnalia.com> +Date: Thu Jun 8 09:59:49 2023 +0200 + + Adjustments in permissions + +[33mcommit 70be86edfc0146607c1f5b07ce4c283d266f10a5[m +Author: Alberto Molinuevo MartĂn <alberto.molinuevo@tecnalia.com> +Date: Wed Jun 7 16:41:03 2023 +0200 + + Added some improvements + +[33mcommit 4295064a240ff5791a342660e94a3a2908b229cf[m +Author: IñakiEtxaniz <inaki.etxaniz@tecnalia.com> +Date: Wed May 31 16:35:54 2023 +0200 + + some edition in Ref Toms + +[33mcommit c63d48f66c8158e395b86931224ff4bf9132c284[m +Merge: 5c387b3 5d64add +Author: IñakiEtxaniz <inaki.etxaniz@tecnalia.com> +Date: Wed May 31 15:14:59 2023 +0200 + + Merge branch 'master' of https://git.code.tecnalia.com/medina/wp2/task_2.2/catalogue-deploy + +[33mcommit 5d64add9042c3db99d086e712135692d323723a3[m +Author: Alberto Molinuevo MartĂn <alberto.molinuevo@tecnalia.com> +Date: Wed May 31 15:12:18 2023 +0200 + + Fixed some minor bugs + +[33mcommit 5c387b30bc1beaa19b2ae46dec304b1066d71672[m +Merge: 995827d 7753a82 +Author: IñakiEtxaniz <inaki.etxaniz@tecnalia.com> +Date: Wed May 31 14:57:55 2023 +0200 + + Merge branch 'master' of https://git.code.tecnalia.com/medina/wp2/task_2.2/catalogue-deploy + +[33mcommit 7753a8236420c9393c25fbcdbebf5c3f59a333bb[m +Author: Alberto Molinuevo MartĂn <alberto.molinuevo@tecnalia.com> +Date: Wed May 31 13:14:13 2023 +0200 + + Fixed some minor bugs + +[33mcommit 995827db5f1a51a7d8a8363338a5f2c656f7cb4b[m +Merge: 8d5ba0a 5facaee +Author: IñakiEtxaniz <inaki.etxaniz@tecnalia.com> +Date: Tue May 30 10:55:50 2023 +0200 + + Merge branch 'master' of https://git.code.tecnalia.com/medina/wp2/task_2.2/catalogue-deploy + +[33mcommit 5facaeece1ec41ea0c97c34b5394f0f6136b1835[m +Author: Alberto Molinuevo MartĂn <alberto.molinuevo@tecnalia.com> +Date: Tue May 30 08:30:40 2023 +0200 + + Fixed translation errors + +[33mcommit 6709f12d931b5f71f97ffe8239ccda847570d98b[m +Author: Gorka Benguria Elguezabal <gorka.benguria@tecnalia.com> +Date: Mon May 29 12:34:45 2023 +0200 + + adds a new domain for those odd cases when nip.io fails + +[33mcommit 8d5ba0a9754352336de19e1ca66db1f1d4102d8d[m +Merge: 9602548 52667e5 +Author: IñakiEtxaniz <inaki.etxaniz@tecnalia.com> +Date: Thu May 25 16:54:57 2023 +0200 + + updated user manual pdf + +[33mcommit 9602548ec4ab9335a8ccfaf9943fafb2177879ed[m +Author: IñakiEtxaniz <inaki.etxaniz@tecnalia.com> +Date: Thu May 25 14:31:01 2023 +0200 + + updated user manual pdf + +[33mcommit 52667e5fbf8a204a45b65ad80ef2f1bdc29aa0b3[m +Author: Alberto Molinuevo MartĂn <alberto.molinuevo@tecnalia.com> +Date: Fri May 19 09:53:32 2023 +0200 + + User manual and footer updated + +[33mcommit 827d0a44be75adeb8f37a5446c8fb2ec5767e47c[m +Author: IñakiEtxaniz <inaki.etxaniz@tecnalia.com> +Date: Thu May 18 17:49:18 2023 +0200 + + Bugs and improvements to GUI + +[33mcommit 9e4c6708bddd284d23833c74186335d5a47742f5[m +Author: Alberto Molinuevo MartĂn <alberto.molinuevo@tecnalia.com> +Date: Mon May 15 14:43:17 2023 +0200 + + Added some improvements + +[33mcommit 1be8e1ded39907c2f61a4246109471ff7fc4c565[m +Author: Alberto Molinuevo MartĂn <alberto.molinuevo@tecnalia.com> +Date: Mon May 15 14:20:08 2023 +0200 + + Added some improvements + +[33mcommit c8292fa102b8dc99a70d8913755c0aca02cc0562[m +Author: Alberto Molinuevo MartĂn <alberto.molinuevo@tecnalia.com> +Date: Fri May 12 13:22:51 2023 +0200 + + Fixed some minor bugs + +[33mcommit 36af540ed11d613346618e56cb4d9a43519a2e9e[m +Author: Alberto <alberto.molinuevo@tecnalia.com> +Date: Fri May 12 12:13:17 2023 +0200 + + Fixed some minor bugs + +[33mcommit 16c1f5f0f8a4410797264053da18854b10c08611[m[33m ([m[1;31morigin/temp-20230511[m[33m)[m +Author: Alberto <alberto.molinuevo@tecnalia.com> +Date: Thu May 11 16:22:25 2023 +0200 + + New version + +[33mcommit 4d1e2a402b9709435515041e3f9fc22fc3b0ebbf[m +Author: Alberto <alberto.molinuevo@tecnalia.com> +Date: Thu May 11 10:50:04 2023 +0200 + + New branch + +[33mcommit 1d5f17b533c93ce01db90beeb420a4289d707779[m +Author: IñakiEtxaniz <inaki.etxaniz@tecnalia.com> +Date: Tue May 9 19:52:58 2023 +0200 + + env variables used; refToms 100% + +[33mcommit 1fd077239caecc3e019d9790dcd14808e2b46085[m +Author: Alberto Molinuevo <alberto.molinuevo@tecnalia.com> +Date: Tue May 9 14:56:11 2023 +0200 + + Changes in UI + +[33mcommit 1480b937fa1bca48d3e3794dab4b65a53ec9faeb[m +Author: IñakiEtxaniz <inaki.etxaniz@tecnalia.com> +Date: Mon May 8 20:44:54 2023 +0200 + + all questions inside + +[33mcommit c6e0ab6a533fdc9534b7b99c264aee7c21d476f6[m +Author: IñakiEtxaniz <inaki.etxaniz@tecnalia.com> +Date: Fri May 5 16:42:06 2023 +0200 + + Questionnaire complete + +[33mcommit 62b0fb9f7a77a6a333b569cca5c96c402313d529[m +Author: Alberto Molinuevo <alberto.molinuevo@tecnalia.com> +Date: Fri May 5 10:42:57 2023 +0200 + + Fixed some minor bugs + +[33mcommit 824d8220e790c045cedd55ccaa11dc1305107af1[m +Author: Alberto Molinuevo <alberto.molinuevo@tecnalia.com> +Date: Thu May 4 12:24:15 2023 +0200 + + Added the date to the questionnaire name, and some improvements + +[33mcommit d2ddd12fc2819b1c1439023e74e3dd55b2981c42[m +Author: Alberto Molinuevo <alberto.molinuevo@tecnalia.com> +Date: Thu May 4 11:40:51 2023 +0200 + + The table questionnaires now has initial autoincrement = + +[33mcommit 31dda8186ba2a5902315223a489347c871c8c6ed[m +Author: Alberto Molinuevo <alberto.molinuevo@tecnalia.com> +Date: Thu May 4 11:30:02 2023 +0200 + + The table questionnaires now has initial autoincrement = 1 + +[33mcommit 6ed1415f016a2f92e0c60921ee87b9adf707750e[m +Author: Alberto Molinuevo <alberto.molinuevo@tecnalia.com> +Date: Thu May 4 10:44:16 2023 +0200 + + Fixed the errors in Questionnaires + +[33mcommit 655f9c43c3b5b1c3843d907159e6a0d43b4cf756[m +Merge: a76202c 24e3cad +Author: IñakiEtxaniz <inaki.etxaniz@tecnalia.com> +Date: Wed May 3 10:50:22 2023 +0200 + + application.yml + +[33mcommit a76202c3aef746527516fa37cfc2f635572d6d44[m +Author: IñakiEtxaniz <inaki.etxaniz@tecnalia.com> +Date: Wed May 3 10:48:28 2023 +0200 + + application.yml + +[33mcommit 3ef9d40eea72445ea01d277f0212e55aa895b712[m +Author: IñakiEtxaniz <inaki.etxaniz@tecnalia.com> +Date: Wed May 3 10:48:04 2023 +0200 + + application.yml + +[33mcommit 24e3cad5e3a8c4dfb1ecb48e05c5278f38b59874[m +Author: Alberto Molinuevo <alberto.molinuevo@tecnalia.com> +Date: Tue May 2 11:29:00 2023 +0200 + + Fixed some minor bugs + +[33mcommit a777e820c486027dee16877edeebed901aca4685[m +Author: Alberto Molinuevo <alberto.molinuevo@tecnalia.com> +Date: Tue May 2 09:22:23 2023 +0200 + + Fixed some minor bugs + +[33mcommit 5ee6a8d31def75432b9ef85bc19dcb5e5d2622cc[m +Author: Alberto Molinuevo <alberto.molinuevo@tecnalia.com> +Date: Fri Apr 28 13:04:03 2023 +0200 + + Changes in application.yml + +[33mcommit d65e7bb6d4ed339e7d29934a02b4dc84ed1042b7[m +Author: Alberto Molinuevo <alberto.molinuevo@tecnalia.com> +Date: Fri Apr 28 12:21:19 2023 +0200 + + Some literals changed + +[33mcommit 31d9deb34a12a65a4e6fe452b9f946d901aca4e6[m +Author: Alberto Molinuevo <alberto.molinuevo@tecnalia.com> +Date: Fri Apr 28 11:57:13 2023 +0200 + + Changed SATRA Request logs format + +[33mcommit 2b12fb2d4f4d767476c2b9f572039bbae0dad817[m +Author: Alberto Molinuevo <alberto.molinuevo@tecnalia.com> +Date: Fri Apr 28 11:04:27 2023 +0200 + + Report graphics fixed + +[33mcommit 6f6c7f0a237e2b0fc1602bc86e62478d17ad5225[m +Author: Alberto Molinuevo <alberto.molinuevo@tecnalia.com> +Date: Thu Apr 27 13:28:21 2023 +0200 + + Fixed some bugs and implemented some improvements + +[33mcommit d790f90fe33bf0e43e05744ebf836f9260d466c5[m +Author: IñakiEtxaniz <inaki.etxaniz@tecnalia.com> +Date: Wed Apr 26 18:19:57 2023 +0200 + + last metric included! + +[33mcommit ad3ae67e8391da5ae23c1e2260e41a133045af71[m +Author: Alberto Molinuevo <alberto.molinuevo@tecnalia.com> +Date: Wed Apr 26 15:15:16 2023 +0200 + + application.yml fixed + +[33mcommit 0f84c40b2918bc7d77a90500e20676e9ea7219ec[m +Author: Alberto Molinuevo <alberto.molinuevo@tecnalia.com> +Date: Wed Apr 26 14:55:21 2023 +0200 + + Questionnaire report fixed + +[33mcommit e1a8917e31722189011e4673d81eae5e341046c9[m +Author: Alberto Molinuevo <alberto.molinuevo@tecnalia.com> +Date: Wed Apr 26 14:07:06 2023 +0200 + + Commented environment variables in application.yml + +[33mcommit 092dbbd9594c87c0e572d688627611693baee6a6[m +Author: Alberto Molinuevo <alberto.molinuevo@tecnalia.com> +Date: Wed Apr 26 13:57:16 2023 +0200 + + URLs corresponding to SATRA and Orchestrator moved to application.yml + +[33mcommit 727652b78fb1f077dcb8e4251745732de651ae8f[m +Author: Alberto Molinuevo <alberto.molinuevo@tecnalia.com> +Date: Wed Apr 26 11:45:44 2023 +0200 + + Radar chart changed + +[33mcommit 46b6aa15cda39189218f167450bb6bf3400747be[m +Author: Alberto Molinuevo <alberto.molinuevo@tecnalia.com> +Date: Wed Apr 26 11:28:59 2023 +0200 + + Self evaluation in capital letters + +[33mcommit ab012c71b8fc4e6380efa2e661908b9f3a31d91e[m +Author: Alberto Molinuevo <alberto.molinuevo@tecnalia.com> +Date: Wed Apr 26 08:43:44 2023 +0200 + + First approach of Footer + +[33mcommit 03fad0871cf1fd2936c25dd446f8f29eac53bf05[m +Author: Alberto Molinuevo <alberto.molinuevo@tecnalia.com> +Date: Wed Apr 26 08:29:19 2023 +0200 + + Some minor bugs fixed + +[33mcommit 9b8bd882ea15bbede2ae998b727939f0b07fc11f[m +Author: Alberto Molinuevo <alberto.molinuevo@tecnalia.com> +Date: Wed Apr 26 08:20:50 2023 +0200 + + Some minor bugs fixed + +[33mcommit 4ddab069eb9269e241953adc45c4ed6f9427c012[m +Author: IñakiEtxaniz <inaki.etxaniz@tecnalia.com> +Date: Tue Apr 25 00:14:16 2023 +0200 + + guidelines included + +[33mcommit 560736b22af459fb6e73cdc9e3852fb7d9706130[m +Author: Alberto Molinuevo <alberto.molinuevo@tecnalia.com> +Date: Mon Apr 24 15:46:06 2023 +0200 + + Some pending improvements + +[33mcommit 6b84932f6188f7d06688e9ac2e0b4bb89cf3fe80[m +Author: Alberto Molinuevo <alberto.molinuevo@tecnalia.com> +Date: Wed Apr 19 10:55:29 2023 +0200 + + The cloud service ids are loaded from the token + +[33mcommit 7c3e634e63f785ea5b1925f3a6102794721450d6[m +Author: IñakiEtxaniz <inaki.etxaniz@tecnalia.com> +Date: Fri Mar 31 12:15:07 2023 +0200 + + changes in UI and metrics + +[33mcommit e13685970a98efe318569db2d5e20963c7c6b71d[m +Author: Alberto Molinuevo <alberto.molinuevo@tecnalia.com> +Date: Thu Mar 30 12:17:06 2023 +0200 + + Filters improved + +[33mcommit 014bd335a9893c62af8df469dc18199aaa2985c9[m +Author: IñakiEtxaniz <inaki.etxaniz@tecnalia.com> +Date: Wed Mar 29 19:33:43 2023 +0200 + + changes in UI and metrics + +[33mcommit 3762ed81d39569e69e41ad3de7fcbf056775c6e2[m +Author: Gorka Benguria <gorka.benguria@tecnalia.com> +Date: Wed Mar 29 12:00:51 2023 +0200 + + updates basic services + +[33mcommit 27b1f4dc8426a5411a09739e8d6b1706441e314f[m +Author: Alberto Molinuevo MartĂn <alberto.molinuevo@tecnalia.com> +Date: Mon Mar 27 07:23:09 2023 +0200 + + Fixed some minor bugs + +[33mcommit 3e00d08186bdbaa5203f01ae31672582b6c07e4a[m +Author: Alberto Molinuevo MartĂn <alberto.molinuevo@tecnalia.com> +Date: Fri Mar 24 10:42:37 2023 +0100 + + Added footer + +[33mcommit 3202110d1bb6191f29b6b505a7c1bdb013692dde[m +Author: Alberto Molinuevo MartĂn <alberto.molinuevo@tecnalia.com> +Date: Thu Mar 23 10:07:06 2023 +0100 + + RBAC + +[33mcommit 773b294fe97e460c126676f8a1318abbdd045791[m +Author: Gorka Benguria <gorka.benguria@tecnalia.com> +Date: Tue Mar 21 17:20:50 2023 +0100 + + updates keycloak + +[33mcommit 3b51f3ff6e1b5409e521f1cfaa82fdbb0070b0c6[m +Author: Gorka Benguria <gorka.benguria@tecnalia.com> +Date: Tue Mar 21 16:57:25 2023 +0100 + + updates from k8s + +[33mcommit 75e019e7b7d5726430b639fdc69b3b98a3f84148[m +Author: Gorka Benguria <gorka.benguria@tecnalia.com> +Date: Tue Mar 21 16:47:57 2023 +0100 + + updates dc-env + +[33mcommit 334cc88c4415fb7ed48d726b22c876657191da5b[m +Author: Gorka Benguria <gorka.benguria@tecnalia.com> +Date: Tue Mar 21 16:03:43 2023 +0100 + + updates generic components + +[33mcommit 72ea32f9a3bce40589e982f95a7053042dbb1dcc[m +Author: Alberto Molinuevo MartĂn <alberto.molinuevo@tecnalia.com> +Date: Tue Mar 21 14:13:54 2023 +0100 + + Fixed some minor issues + +[33mcommit fc8ae32a222a4afad493e78ddb63a7472f33d305[m +Author: Alberto Molinuevo MartĂn <alberto.molinuevo@tecnalia.com> +Date: Tue Mar 21 09:47:29 2023 +0100 + + Fixed some minor issues + +[33mcommit 59084424417d568c9326d9bb401edbbf92d22d2e[m +Author: Alberto Molinuevo MartĂn <alberto.molinuevo@tecnalia.com> +Date: Mon Mar 13 08:54:50 2023 +0100 + + Security Framework not selectable + +[33mcommit caf4ac1f0a99851ca5afef169a8fe66a5dcecbd9[m +Author: Alberto Molinuevo MartĂn <alberto.molinuevo@tecnalia.com> +Date: Fri Mar 10 12:29:19 2023 +0100 + + Improvements in implementation guidelines screen + +[33mcommit 9258eae498f16cf1edc5041b3957b2dcdb29c266[m +Author: Alberto Molinuevo MartĂn <alberto.molinuevo@tecnalia.com> +Date: Fri Mar 10 09:57:47 2023 +0100 + + Reference TOMS as Implementation guidelines + +[33mcommit 46fc946bcbaaae0413ee112f22ddeb17ddefc26d[m +Author: Alberto Molinuevo MartĂn <alberto.molinuevo@tecnalia.com> +Date: Thu Mar 2 09:03:08 2023 +0100 + + Fixed some minor bugs + +[33mcommit b3a887b9a1feb0558712c4408f6c8f5448df453d[m +Author: IñakiEtxaniz <inaki.etxaniz@tecnalia.com> +Date: Mon Feb 27 19:44:02 2023 +0100 + + reference TOMS included + +[33mcommit 8d923f4ee697921b30d5c302ff59966508dc5868[m +Author: IñakiEtxaniz <inaki.etxaniz@tecnalia.com> +Date: Mon Feb 27 18:52:31 2023 +0100 + + reference TOMS included + +[33mcommit e8dc7824148a8e6d6f6bd0e61513f7ec143751fb[m +Author: Alberto Molinuevo MartĂn <alberto.molinuevo@tecnalia.com> +Date: Fri Feb 24 13:12:47 2023 +0100 + + First approach to call SATRA + +[33mcommit 00965bd5a07bf2696ff6ca940887c2ddc63344a9[m +Author: Alberto Molinuevo MartĂn <alberto.molinuevo@tecnalia.com> +Date: Fri Feb 24 12:51:55 2023 +0100 + + First approach to call SATRA + +[33mcommit 0c91bf2b8d4dace478c708ceaa73c766207fde87[m +Author: Alberto Molinuevo MartĂn <alberto.molinuevo@tecnalia.com> +Date: Fri Feb 24 08:43:19 2023 +0100 + + Fixed some bugs + +[33mcommit 2ad8fba273baf768e443eceff95a465578777e7d[m +Author: Alberto Molinuevo MartĂn <alberto.molinuevo@tecnalia.com> +Date: Thu Feb 23 12:26:43 2023 +0100 + + New version + +[33mcommit 7aeea576fe017b8be993d75b225bc3044ad46aba[m +Merge: 0f36b54 61ea60b +Author: IñakiEtxaniz <inaki.etxaniz@tecnalia.com> +Date: Mon Feb 13 16:08:25 2023 +0100 + + ng repositorygerge branch 'master' of https://git.code.tecnalia.com/medina/wp2/task_2.2/catalogue-deploy + +[33mcommit 0f36b5485cf705bc70af8ce272bf2f4b377460ca[m +Author: IñakiEtxaniz <inaki.etxaniz@tecnalia.com> +Date: Mon Feb 13 16:07:52 2023 +0100 + + fixed typos in EUCS reqs and updated metrics + +[33mcommit 61ea60b954f94ac2b54df5b1c01c242774cd1a07[m +Author: Alberto Molinuevo MartĂn <alberto.molinuevo@tecnalia.com> +Date: Tue Jan 24 10:37:24 2023 +0100 + + Somo changes in interface + +[33mcommit 743bd7b9105b7942d0e13815bbf3309b5498eb6d[m +Author: IñakiEtxaniz <inaki.etxaniz@tecnalia.com> +Date: Mon Jan 23 11:13:52 2023 +0100 + + EUCS 2022 fixed some DB errors + +[33mcommit a3e9fb9f3c3d795e90cbf06fd090037fa6d1e98c[m +Author: IñakiEtxaniz <inaki.etxaniz@tecnalia.com> +Date: Sun Jan 22 21:22:06 2023 +0100 + + Updated to EUCS 2022 + +[33mcommit 7c076df405b901ff75510d8200435499319d14c8[m +Merge: 7981706 7251157 +Author: IñakiEtxaniz <inaki.etxaniz@tecnalia.com> +Date: Wed Jan 18 13:48:07 2023 +0100 + + map GUI with CCF, etc + +[33mcommit 72511572475f0cfadb62ca27ebebbb3790cf1080[m +Author: Alberto Molinuevo MartĂn <alberto.molinuevo@tecnalia.com> +Date: Wed Jan 18 13:42:15 2023 +0100 + + New full version + +[33mcommit 798170686bede4a42d64a55b594a4bd865f8b13e[m +Merge: 6c147f0 6b6a995 +Author: IñakiEtxaniz <inaki.etxaniz@tecnalia.com> +Date: Wed Jan 18 13:31:52 2023 +0100 + + nggerge branch 'master' of https://git.code.tecnalia.com/medina/wp2/task_2.2/catalogue-deploy + +[33mcommit 6c147f00711e712daef3271083761927af5d55d6[m +Author: IñakiEtxaniz <inaki.etxaniz@tecnalia.com> +Date: Wed Jan 18 13:29:31 2023 +0100 + + Cisco CFF map included + +[33mcommit 6b6a9956db0b16f0c03688a45f9cb5d5f205bb51[m +Author: Etxaniz Errazkin, Iñaki <inaki.etxaniz@tecnalia.com> +Date: Wed Dec 14 15:53:56 2022 +0100 + + Add LICENSE + +[33mcommit 591ed0bddfd0cb70f8de783e6a7ca36eb186639c[m +Author: IñakiEtxaniz <inaki.etxaniz@tecnalia.com> +Date: Fri Nov 18 18:41:36 2022 +0100 + + Fixes metrics filter given Tom id + +[33mcommit 234a3e002bf05fcf723b1f2ca39def6f6fb47ed4[m +Merge: 2fea725 881c883 +Author: IñakiEtxaniz <inaki.etxaniz@tecnalia.com> +Date: Fri Nov 18 16:47:54 2022 +0100 + + Fixes filter for metrics given Tom id + +[33mcommit 881c88320f3424e672feb967d86b0d185d6e183b[m +Author: Alberto Molinuevo MartĂn <alberto.molinuevo@tecnalia.com> +Date: Thu Nov 17 16:37:18 2022 +0100 + + PoC of Questionnaire reports + +[33mcommit 282f348610f0ccc3292a70018455a7f3898b47be[m +Author: Alberto Molinuevo MartĂn <alberto.molinuevo@tecnalia.com> +Date: Wed Nov 16 16:25:14 2022 +0100 + + Added a REST function to export the whole Catalog + +[33mcommit d35c7033fcf3342f6e95df001a8f351027f79342[m +Author: Alberto Molinuevo MartĂn <alberto.molinuevo@tecnalia.com> +Date: Wed Nov 16 12:43:25 2022 +0100 + + Added some improvements + +[33mcommit eff345ff44ac618d99bf064eefe0dbcb5cc26b11[m +Author: Alberto Molinuevo MartĂn <alberto.molinuevo@tecnalia.com> +Date: Fri Nov 11 11:13:16 2022 +0100 + + Removed the PoC of Questionnaires, and added a blank page to show the reports + +[33mcommit ef661f7a68d9185170a6b2190dcf4acb5835c124[m +Author: Alberto Molinuevo MartĂn <alberto.molinuevo@tecnalia.com> +Date: Fri Nov 11 10:41:35 2022 +0100 + + Fixed some minor bugs + +[33mcommit a212cb8f3b71db07322653c1ff7e3e5223041692[m +Author: Alberto Molinuevo MartĂn <alberto.molinuevo@tecnalia.com> +Date: Wed Nov 2 11:01:34 2022 +0100 + + Improvements in interface + +[33mcommit c76dc5c91ea088c732a64a3ba136b9d4c534ec64[m +Author: Alberto Molinuevo MartĂn <alberto.molinuevo@tecnalia.com> +Date: Fri Oct 28 13:42:02 2022 +0200 + + Saving mechanism of Questionnaires fully implemented (first approach) + +[33mcommit 9daae826b7d6ab3b8887d38c505c6ea4303e6988[m +Author: Alberto Molinuevo MartĂn <alberto.molinuevo@tecnalia.com> +Date: Wed Oct 26 15:07:17 2022 +0200 + + Added Frontend support for non-conformities in Questionnaires + +[33mcommit 53dff7d7a3e4f395cc32d9f5cd7ff2992a435638[m +Author: Alberto Molinuevo MartĂn <alberto.molinuevo@tecnalia.com> +Date: Wed Oct 26 11:50:24 2022 +0200 + + Added Backend support for Questionnaire Non Conformities + +[33mcommit b589ad1568120fda7d53f9c3247c9b6f01c86cee[m +Author: Alberto Molinuevo MartĂn <alberto.molinuevo@tecnalia.com> +Date: Wed Oct 26 11:05:19 2022 +0200 + + Table for non-conformities in Questionnaires + +[33mcommit 963a9cd7c003f640a9b1e9594c321321973a1db9[m +Author: Alberto Molinuevo MartĂn <alberto.molinuevo@tecnalia.com> +Date: Wed Oct 26 09:19:38 2022 +0200 + + Questionnaires save evidences and comments + +[33mcommit ab0efa5e1dbd82e4d3cef626549c1b60e27bab2c[m +Author: Alberto Molinuevo MartĂn <alberto.molinuevo@tecnalia.com> +Date: Mon Oct 24 16:11:38 2022 +0200 + + Collecting Evidences and Comments from a Questionnaire + +[33mcommit 276e5b2da23480a95644a13d95f8e29d21c13b4b[m +Author: Alberto Molinuevo MartĂn <alberto.molinuevo@tecnalia.com> +Date: Mon Oct 24 12:30:37 2022 +0200 + + First approach to Save Questionnaire + +[33mcommit dac8407c6376e680e148ce84b19d41976af44d38[m +Author: Alberto Molinuevo MartĂn <alberto.molinuevo@tecnalia.com> +Date: Mon Oct 17 14:33:35 2022 +0200 + + Changes in Questionnaires + +[33mcommit b0a0251d4219445adcda7e71ee766754f5ef0a44[m +Author: Alberto Molinuevo MartĂn <alberto.molinuevo@tecnalia.com> +Date: Tue Oct 11 14:02:51 2022 +0200 + + Advances in Questionnaires + +[33mcommit 3794522927e8cef7e3ffe30b560bce8419344e6f[m +Author: Alberto Molinuevo MartĂn <alberto.molinuevo@tecnalia.com> +Date: Mon Oct 10 15:58:55 2022 +0200 + + Load and start questionnaires + +[33mcommit fc256c871dcb3bf3ca56b2f6a70b3b87b402e68a[m +Author: Alberto Molinuevo MartĂn <alberto.molinuevo@tecnalia.com> +Date: Fri Oct 7 12:27:00 2022 +0200 + + Changes in titles + +[33mcommit 2fea725fe8f50c2b20f9b39befcb2104e66f3b3d[m +Merge: 91c12cd c655916 +Author: IñakiEtxaniz <inaki.etxaniz@tecnalia.com> +Date: Thu Oct 6 17:52:59 2022 +0200 + + Merge branch 'master' of https://git.code.tecnalia.com/medina/wp2/task_2.2/catalogue-deploy + +[33mcommit 91c12cd3858ff34cfd8f59cdc8042f21f46462a9[m +Author: IñakiEtxaniz <inaki.etxaniz@tecnalia.com> +Date: Thu Oct 6 17:52:29 2022 +0200 + + corrected mistakes in metrics/TOMS/controls + +[33mcommit 03d55cbe5df2e630d5119912587cfd803f014d6b[m +Author: IñakiEtxaniz <inaki.etxaniz@tecnalia.com> +Date: Thu Oct 6 17:32:34 2022 +0200 + + corrected mistakes in metrics/TOMS/controls + +[33mcommit cb5b56cdae9d728b5f69172499f23ada967148bb[m +Author: Alberto Molinuevo MartĂn <alberto.molinuevo@tecnalia.com> +Date: Wed Oct 5 11:22:37 2022 +0200 + + Advances in Questionnaires and look and feel + +[33mcommit 51d4d1d762aa1fc20fb4c476480b61061566399c[m +Author: Alberto Molinuevo MartĂn <alberto.molinuevo@tecnalia.com> +Date: Fri Sep 23 09:37:40 2022 +0200 + + Name for Questionnaires + +[33mcommit c6559167f1b9eff570fd1990b8eb3074d8a44535[m +Author: Gorka Benguria <gorka.benguria@tecnalia.com> +Date: Wed Sep 21 23:35:07 2022 +0200 + + modifications to traefik and step-ca to avoid certificates problems + +[33mcommit 1e123b55bdd5c883bec15183aca35be292e05bb6[m +Author: Alberto Molinuevo MartĂn <alberto.molinuevo@tecnalia.com> +Date: Wed Sep 21 14:35:43 2022 +0200 + + Changes in the navigation in Questionnaires + +[33mcommit 2219b680d1a0008cec5f107473c905fd76643ab4[m +Author: Alberto Molinuevo MartĂn <alberto.molinuevo@tecnalia.com> +Date: Mon Sep 19 15:54:33 2022 +0200 + + Changes in navigation in Questionnaires section + +[33mcommit 50e47dcca8d32bb0164e44d66a39ecb04d3acdb4[m +Author: Alberto Molinuevo MartĂn <alberto.molinuevo@tecnalia.com> +Date: Thu Sep 15 11:04:34 2022 +0200 + + Changes in Questionnaires + +[33mcommit f69f50e20384c5683b48a26c98eb64b7de0163d5[m +Author: Gorka Benguria <gorka.benguria@tecnalia.com> +Date: Wed Sep 14 17:37:01 2022 +0200 + + adds RELEASE_VERSION + +[33mcommit 14010aa8c3e3375f2a43f0044a70c5655ec1d8a1[m +Author: Gorka Benguria <gorka.benguria@tecnalia.com> +Date: Wed Sep 14 17:10:20 2022 +0200 + + changes keycloak version to match old jhipster needs + +[33mcommit 762baed6c7cb45ab23fee3572c356cd34107133e[m +Author: Gorka Benguria <gorka.benguria@tecnalia.com> +Date: Wed Sep 14 13:43:38 2022 +0200 + + refactors to .env.gen + +[33mcommit 993e7674f68d42c500d8ecc4d8ae382b7901e615[m +Author: Alberto Molinuevo MartĂn <alberto.molinuevo@tecnalia.com> +Date: Wed Sep 14 09:54:45 2022 +0200 + + Advances in Questionnaires + +[33mcommit d03f138317c37eccee5b45ded4720c81c0783a06[m +Author: Alberto Molinuevo MartĂn <alberto.molinuevo@tecnalia.com> +Date: Mon Sep 12 07:47:45 2022 +0200 + + Advances in Questionnaires + +[33mcommit 69b476b79938dd38d2470439646081365fdd3123[m +Author: Alberto Molinuevo MartĂn <alberto.molinuevo@tecnalia.com> +Date: Wed Aug 3 12:38:54 2022 +0200 + + Questionnaires: initial Frontend support + +[33mcommit 33814e8bb4076b7f8f980591fe898e23f79ddf3f[m +Author: Alberto Molinuevo MartĂn <alberto.molinuevo@tecnalia.com> +Date: Wed Aug 3 10:29:58 2022 +0200 + + Questionnaire first screen + +[33mcommit afc02f6aae589b572972fd1c22d0f3216d545410[m +Author: Alberto Molinuevo MartĂn <alberto.molinuevo@tecnalia.com> +Date: Wed Aug 3 09:55:51 2022 +0200 + + Questionnaires backend and frontend support + +[33mcommit 92571337073d153b6d522cc567b8e196215db328[m +Author: Alberto Molinuevo MartĂn <alberto.molinuevo@tecnalia.com> +Date: Wed Aug 3 08:51:30 2022 +0200 + + Questionnaires backend support + +[33mcommit 90f303d8366759127ee7a7f9c28bf2492f941949[m +Author: Alberto Molinuevo MartĂn <alberto.molinuevo@tecnalia.com> +Date: Mon Aug 1 11:40:06 2022 +0200 + + N-M relationship between TOMs and Metrics + +[33mcommit dcf4d69869ac20049e083168ffea43f2e1694164[m +Merge: 03213cc 7ef32d4 +Author: Gorka Benguria <gorka.benguria@tecnalia.com> +Date: Wed Jun 29 23:12:40 2022 +0200 + + Merge branch 'main' of https://git.code.tecnalia.com/medina/wp2/task_2.2/catalogue-deploy + +[33mcommit 03213cce99081e8209bf4c144b469e41d7aa58d7[m +Author: Gorka Benguria <gorka.benguria@tecnalia.com> +Date: Wed Jun 29 23:12:26 2022 +0200 + + remove ci as no longer needed or supported + +[33mcommit 7ef32d483fe84d8e4bbd1c5185e89c89dfa3c908[m +Author: Alberto Molinuevo MartĂn <alberto.molinuevo@tecnalia.com> +Date: Wed Jun 29 13:08:09 2022 +0200 + + Changes in the list of Similar Controls + +[33mcommit 6d261ccaf6cf7b87aae8b5b6c95dcf4ffef3280f[m +Author: Alberto Molinuevo MartĂn <alberto.molinuevo@tecnalia.com> +Date: Wed Jun 29 10:56:51 2022 +0200 + + Some texts changed + +[33mcommit 11a5bf8eb1845e9e9ee609f121e55f7bf852cb8e[m +Author: Alberto Molinuevo MartĂn <alberto.molinuevo@tecnalia.com> +Date: Wed Jun 29 10:47:16 2022 +0200 + + Some texts changed + +[33mcommit 1cd5869e6bb312e3d0ec3d6e64e00f842b7fb896[m +Author: Alberto Molinuevo MartĂn <alberto.molinuevo@tecnalia.com> +Date: Wed Jun 29 09:22:27 2022 +0200 + + HIGH assurance level activated + +[33mcommit 477e7140c70a6b31ca63c848fb9cf515670be632[m +Author: Alberto Molinuevo MartĂn <alberto.molinuevo@tecnalia.com> +Date: Wed Jun 29 09:19:24 2022 +0200 + + Some texts changed + +[33mcommit 6965fb1e4ad26b7f4de8f14a55e9c7e1d1af0bc7[m +Author: Gorka Benguria <gorka.benguria@tecnalia.com> +Date: Mon Jun 27 18:01:19 2022 +0200 + + adds info + +[33mcommit 34b4ad0425ebac37612e8eb276dd2fa106ed1dc4[m +Author: Gorka Benguria <gorka.benguria@tecnalia.com> +Date: Mon Jun 27 17:30:52 2022 +0200 + + changes cache + +[33mcommit 473eb7cfeea51949ec43ec0283e13b984d7baac4[m +Merge: b41811c 5e50db8 +Author: IñakiEtxaniz <inaki.etxaniz@tecnalia.com> +Date: Fri Jun 17 19:46:43 2022 +0200 + + Merge branch 'main' of https://git.code.tecnalia.com/medina/wp2/task_2.2/catalogue-deploy into main + +[33mcommit b41811c24a7d0c684a27b2593bd5761305a049a8[m +Merge: 6cb27b7 b6c2911 +Author: IñakiEtxaniz <inaki.etxaniz@tecnalia.com> +Date: Fri Jun 17 19:45:53 2022 +0200 + + new vwesion with 3 added fields + +[33mcommit 5e50db802b2cf303b7de6c7954dc243b0cceb892[m +Author: Gorka Benguria <gorka.benguria@tecnalia.com> +Date: Fri Jun 17 17:58:42 2022 +0200 + + fixes versions to use cache + +[33mcommit 6cb27b7032191aa9f6b106a7df154e3c606e6940[m +Author: IñakiEtxaniz <inaki.etxaniz@tecnalia.com> +Date: Fri Jun 17 16:26:34 2022 +0200 + + TEST version for GA -a posteriori commit- + +[33mcommit 9e0d0540197701a594bc1fdbcbcd2058cd155513[m +Author: Gorka Benguria <gorka.benguria@tecnalia.com> +Date: Fri Jun 17 13:23:10 2022 +0200 + + refines the image + +[33mcommit b6c2911f62b72caa197046eb4a8a994ca878221b[m +Author: Gorka Benguria <gorka.benguria@tecnalia.com> +Date: Fri Jun 17 13:19:48 2022 +0200 + + adds cache from capability + +[33mcommit ca0eec2badf47a85aae58e6ea268458b09b56262[m +Author: Gorka Benguria <gorka.benguria@tecnalia.com> +Date: Fri Jun 17 13:14:26 2022 +0200 + + adds config for check + +[33mcommit 3e2931a58e900fcf21b57c46ce4692fe8d6a741e[m +Author: Gorka Benguria <gorka.benguria@tecnalia.com> +Date: Fri Jun 17 13:12:33 2022 +0200 + + adds config for check + +[33mcommit 0ad65d23675b44967aed986058c3048c2899c08e[m +Author: Gorka Benguria <gorka.benguria@tecnalia.com> +Date: Fri Jun 17 13:11:16 2022 +0200 + + adds config for check + +[33mcommit 30be9685a5b74c41304b59bfabfc6fbb7f1ffe4e[m +Author: Gorka Benguria <gorka.benguria@tecnalia.com> +Date: Fri Jun 17 13:08:11 2022 +0200 + + adds submodule + +[33mcommit a3d2c64bc277d841b68afef550652de5a2506bf5[m +Author: Gorka Benguria <gorka.benguria@tecnalia.com> +Date: Fri Jun 17 13:01:26 2022 +0200 + + adds cache from + +[33mcommit 0c1e6f28b74989e554d318eb7f950b5096a33d35[m +Author: Gorka Benguria <gorka.benguria@tecnalia.com> +Date: Fri Jun 17 12:26:31 2022 +0200 + + adds traefik internal netwlrok + +[33mcommit a876f2273c1a5afad2eb5f52d3000384a3fc7b80[m +Merge: 6d63b65 3a43821 +Author: Gorka Benguria <gorka.benguria@tecnalia.com> +Date: Fri Jun 17 12:21:12 2022 +0200 + + Merge branch 'feature/link_to_documents' + +[33mcommit 3a4382117709290a445e06f4a4e3df84fed391d4[m +Author: Alberto Molinuevo MartĂn <alberto.molinuevo@tecnalia.com> +Date: Fri Jun 17 12:05:39 2022 +0200 + + questionarie update + +[33mcommit 6d63b65c89cc50991e906aedee51932a81fe4f27[m +Author: Gorka Benguria <gorka.benguria@tecnalia.com> +Date: Fri Jun 10 12:05:22 2022 +0200 + + fixes image names + +[33mcommit dcb6d55aab5d6e9bf2b9978a563c6e84fe4dad14[m +Author: Alberto Molinuevo MartĂn <alberto.molinuevo@tecnalia.com> +Date: Fri Jun 10 09:03:40 2022 +0200 + + Questionnaires + +[33mcommit cfc7ec9a52a935b1e3cf7569be99e943e73d4eda[m +Author: Gorka Benguria <gorka.benguria@tecnalia.com> +Date: Fri Jun 10 08:02:31 2022 +0200 + + fix to point to cache not proxy + +[33mcommit be36cd032b1666ed538b213d1e617d15888e9ef0[m +Author: Gorka Benguria <gorka.benguria@tecnalia.com> +Date: Fri Jun 10 07:33:17 2022 +0200 + + diferentiates push to cache from push to repo + +[33mcommit f7c0e003256e3fd0eabf5c98a010ce48df4340b4[m +Merge: 83dd7dd f27f23e +Author: Gorka Benguria <gorka.benguria@tecnalia.com> +Date: Fri Jun 10 01:09:17 2022 +0200 + + Merge branch 'main' of https://git.code.tecnalia.com/medina/wp2/task_2.2/catalogue-deploy + +[33mcommit 83dd7ddbc61f4c92bcd07efb72528f78b86fa490[m +Author: Gorka Benguria <gorka.benguria@tecnalia.com> +Date: Fri Jun 10 01:08:33 2022 +0200 + + updates for caching + +[33mcommit f27f23e943947e0ec546919c08caf67ea023092b[m +Author: IñakiEtxaniz <inaki.etxaniz@tecnalia.com> +Date: Thu May 26 12:34:21 2022 +0200 + + New format in metric fields + +[33mcommit e2283365ec18bc52e48277f45fba495c105519d5[m +Author: Alberto Molinuevo MartĂn <alberto.molinuevo@tecnalia.com> +Date: Thu May 26 08:39:18 2022 +0200 + + Improvements in navigation + +[33mcommit a1286321fdc3122a10b38f60e5341925ff389e71[m +Author: Gorka Benguria <gorka.benguria@tecnalia.com> +Date: Wed May 25 13:41:07 2022 +0200 + + updates development services to the last version controlling the keycloak version + +[33mcommit 4f6b37b9f3c80599afb9317ab147ec00e0ea2961[m +Author: Alberto Molinuevo MartĂn <alberto.molinuevo@tecnalia.com> +Date: Wed May 25 10:54:23 2022 +0200 + + Improvements in navigation + +[33mcommit aca0265a3ff2eeba53ea8b3f921f16405c031d4b[m +Author: Gorka Benguria <gorka.benguria@tecnalia.com> +Date: Wed May 25 10:51:29 2022 +0200 + + adds .env.int to run with dc-* scripts + +[33mcommit c73ee110abd430f2e9c68f916354a8e5185e53a2[m +Author: Alberto Molinuevo MartĂn <alberto.molinuevo@tecnalia.com> +Date: Fri May 20 13:44:03 2022 +0200 + + Improvements in navigation + +[33mcommit b8fac7673b9c846436c7aaafe02d5d579c5cbbad[m +Author: Alberto Molinuevo MartĂn <alberto.molinuevo@tecnalia.com> +Date: Fri May 20 13:33:52 2022 +0200 + + Improvements in navigation + +[33mcommit 86a33c4b73e5470d41d4732de79aca29a5c9a2a7[m +Author: Alberto Molinuevo MartĂn <alberto.molinuevo@tecnalia.com> +Date: Fri May 20 13:23:49 2022 +0200 + + Improvements in navigation + +[33mcommit 05e6cf617089140ec4c66b93149d2f9f6fdf993c[m +Author: Alberto Molinuevo MartĂn <alberto.molinuevo@tecnalia.com> +Date: Fri May 20 11:44:38 2022 +0200 + + Navigation improvements + +[33mcommit a5400346fc2cb0fa635fc6161d0ccf2e36b84b61[m +Author: IñakiEtxaniz <inaki.etxaniz@tecnalia.com> +Date: Fri May 20 11:36:48 2022 +0200 + + Added last metrics version (M18) + +[33mcommit e2dc1a9aa6f229fc7a5020b0db4975f777662776[m +Author: Gorka Benguria <gorka.benguria@tecnalia.com> +Date: Wed Apr 27 13:59:13 2022 +0200 + + adds keycloak setup form k8s + +[33mcommit 5789212ef98896f596efcbeff9521af75664fea0[m +Author: Gorka Benguria <gorka.benguria@tecnalia.com> +Date: Wed Apr 20 11:09:41 2022 +0200 + + try to login auto + +[33mcommit aebcc4dbe95947bb80b866a8233ff52b8cd2e95f[m +Author: Gorka Benguria <gorka.benguria@tecnalia.com> +Date: Wed Apr 20 00:15:44 2022 +0200 + + route to login + +[33mcommit 839f5f4afd2df71a7c60e4087fb5fe80f94b1b47[m +Author: Gorka Benguria <gorka.benguria@tecnalia.com> +Date: Tue Apr 19 23:26:43 2022 +0200 + + fixes registry + +[33mcommit 03ca1577184fb2b3d89a601b9d623405515ea338[m +Author: IñakiEtxaniz <inaki.etxaniz@tecnalia.com> +Date: Sun Apr 17 21:12:13 2022 +0200 + + only the metrics for M18 + +[33mcommit f9e9a07a376589f4676c74fcf9b796165c083d4f[m +Author: IñakiEtxaniz <inaki.etxaniz@tecnalia.com> +Date: Mon Apr 11 14:54:29 2022 +0200 + + Updated catalog (sec. controls);realm changed to medina + +[33mcommit 6829ff839aba555cd23a4a5c6e1d9559ed11bd4c[m +Author: IñakiEtxaniz <inaki.etxaniz@tecnalia.com> +Date: Mon Apr 4 19:20:04 2022 +0200 + + updated metrics&controls in initialData script + +[33mcommit a7d6b0d7ae79adabb537452f9f77f0247bcf9d45[m +Author: Etxaniz Errazkin, Iñaki <inaki.etxaniz@tecnalia.com> +Date: Wed Mar 23 19:36:25 2022 +0100 + + changed to "medina" realm + +[33mcommit aa9d0be1158f8ec22e6f9af8f105ada2b7de76e4[m +Author: Gorka Benguria <gorka.benguria@tecnalia.com> +Date: Sun Jan 23 23:20:45 2022 +0100 + + updates .env + +[33mcommit 02e4abcbcbb09ff41812b1ab3d56131e2a6787c4[m +Author: Gorka Benguria <gorka.benguria@tecnalia.com> +Date: Sun Jan 23 23:19:40 2022 +0100 + + updates readme + +[33mcommit 6c76ac0d19adfcae122bdb13fff94bcaf1aaf745[m +Author: Gorka Benguria <gorka.benguria@tecnalia.com> +Date: Sun Jan 23 22:13:13 2022 +0100 + + moves folder + +[33mcommit fc3399437cf5f0dd295b4b805337ea70f17101da[m +Merge: eebbf41 e7d6041 +Author: Gorka Benguria <gorka.benguria@tecnalia.com> +Date: Sun Jan 23 22:08:18 2022 +0100 + + Merge branch 'main' of https://git.code.tecnalia.com/medina/wp2/task_2.2/catalogue-deploy into main + +[33mcommit e7d60414b18500a26901f7194c09324e4b609246[m +Merge: 71c1207 479c2b7 +Author: Benguria Elguezabal, Gorka <gorka.benguria@tecnalia.com> +Date: Sun Jan 23 21:58:10 2022 +0100 + + Merge branch 'feature/fixing_keycloak' into 'main' + + Feature/fixing keycloak + + See merge request medina/wp2/task_2.2/catalogue-deploy!5 + +[33mcommit 479c2b77fd84115b2620c897a59f65f6ee3be360[m +Author: Benguria Elguezabal, Gorka <gorka.benguria@tecnalia.com> +Date: Sun Jan 23 21:58:10 2022 +0100 + + Feature/fixing keycloak + +[33mcommit eebbf41ed57accde32938600e0a7458555ec334f[m +Author: Gorka Benguria <gorka.benguria@tecnalia.com> +Date: Mon Jan 17 16:30:33 2022 +0100 + + remove extra files + +[33mcommit 71c12074e723ef075ace6fbca27a6b5bd84e0976[m +Author: diego.rosado@tecnalia.com <diego.rosado@tecnalia.com> +Date: Thu Dec 2 11:18:19 2021 +0100 + + add many to many relation to resource and control in gateway + +[33mcommit a5a1e886b2cf82bd2339bc518d31986a8200c201[m +Author: diego.rosado@tecnalia.com <diego.rosado@tecnalia.com> +Date: Thu Dec 2 09:59:21 2021 +0100 + + add many to many relation to resource and control + +[33mcommit cf4d72f2a77f2197ae3b77bed00a4b65187220cd[m +Author: diego.rosado@tecnalia.com <diego.rosado@tecnalia.com> +Date: Fri Nov 26 09:57:37 2021 +0100 + + fix search requirements + +[33mcommit a9081c9771e00e547adefa1a0d642a51279a4450[m +Author: diego.rosado@tecnalia.com <diego.rosado@tecnalia.com> +Date: Thu Nov 25 09:50:20 2021 +0100 + + update data model. + realms create scripts + +[33mcommit cd3b4a61a8e9b8e2b97dc93bebb06ca5fef3ac36[m +Author: Rosado Ortiz de Zarate, Diego <diego.rosado@tecnalia.com> +Date: Wed Nov 24 12:16:30 2021 +0100 + + Open API json specification + +[33mcommit f9c1ae6772ab604499b68957922be407fa5eb8f2[m +Author: diego.rosado@tecnalia.com <diego.rosado@tecnalia.com> +Date: Wed Nov 17 13:55:17 2021 +0100 + + add filters + +[33mcommit 23942b525189335fd223655775c15c1f9fa21801[m +Author: diego.rosado@tecnalia.com <diego.rosado@tecnalia.com> +Date: Tue Nov 16 16:16:16 2021 +0100 + + similar controls + +[33mcommit ddcf9b436b9429d73b2bd51c632092d5c54457a3[m +Merge: 5eeade5 173a6ab +Author: Diego Rosado <diego.rosado@tecnalia.com> +Date: Tue Oct 26 14:41:37 2021 +0200 + + Merge branch 'main' of git.code.tecnalia.com:medina/wp2/task_2.2/catalogue-deploy + +[33mcommit 5eeade525026d79bff8b1e07de6bf4cff395177f[m +Author: Diego Rosado <diego.rosado@tecnalia.com> +Date: Tue Oct 26 14:41:32 2021 +0200 + + search requirements. Improve frontend + +[33mcommit 173a6abb54a3012cd9e4e0ccda20bafe3738cafd[m +Author: Gorka Benguria Elguezabal <gorka.benguria@tecnalia.com> +Date: Thu Oct 21 11:09:38 2021 +0200 + + adjust DEVSVC_BASE_PATH + +[33mcommit de6aee467a67010de90e03897872cdf0f027dd4b[m +Author: Gorka Benguria Elguezabal <gorka.benguria@tecnalia.com> +Date: Thu Oct 21 11:06:07 2021 +0200 + + adjust submodule strategy for build + +[33mcommit f27cdaf262a76a61a5467eec5c03c146d1180f72[m +Author: Gorka Benguria Elguezabal <gorka.benguria@tecnalia.com> +Date: Thu Oct 21 10:56:53 2021 +0200 + + adds common development-services + +[33mcommit dd453274052c09d6e7a6eaf567c3ef1e5b619ec6[m +Author: Diego Rosado <diego.rosado@tecnalia.com> +Date: Mon Oct 18 12:12:18 2021 +0200 + + remove entity creation button + +[33mcommit afe66b32d1c25ad496f1c15a7887a02296f4d3b6[m +Author: Diego Rosado <diego.rosado@tecnalia.com> +Date: Mon Oct 18 12:05:10 2021 +0200 + + remove edit button + +[33mcommit 6f3308a9bef537226ec6756e566afc6a0c5cf247[m +Author: Diego Rosado <diego.rosado@tecnalia.com> +Date: Mon Oct 18 11:59:35 2021 +0200 + + frontend read only entities + +[33mcommit dd8ccfefd3aad3738558a94ed7bde9fa50bc5e78[m +Author: Diego Rosado <diego.rosado@tecnalia.com> +Date: Mon Oct 18 11:48:58 2021 +0200 + + metrics special characters fix + +[33mcommit 872e1802455967a25ab71c2356527cffb77974ad[m +Author: Diego Rosado <diego.rosado@tecnalia.com> +Date: Mon Oct 18 11:41:09 2021 +0200 + + fix metrics data + +[33mcommit e06512b31d0ea0808b5c6a7264208538076ef17b[m +Author: Diego Rosado <diego.rosado@tecnalia.com> +Date: Fri Oct 15 13:24:02 2021 +0200 + + refresh mysql + +[33mcommit 7829155bdc686d8a1701320ed16395b678d63225[m +Author: Diego Rosado <diego.rosado@tecnalia.com> +Date: Fri Oct 15 13:00:28 2021 +0200 + + security metrics + +[33mcommit a61d3f7144a9c3b46b811f3defa5564d23c272de[m +Author: Diego Rosado <diego.rosado@tecnalia.com> +Date: Wed Oct 13 12:12:23 2021 +0200 + + data model changed + +[33mcommit fa3d444e78b9c695a60b0860f5c0165c5733ca4a[m +Author: Diego Rosado <diego.rosado@tecnalia.com> +Date: Fri Oct 8 16:19:08 2021 +0200 + + add id + +[33mcommit b472b7cccd8638a1b67014c6aa965abca142410b[m +Author: Diego Rosado <diego.rosado@tecnalia.com> +Date: Fri Oct 8 15:59:06 2021 +0200 + + database users + +[33mcommit d2f4ba5315653371f92ed45d2cb88e793924ad7f[m +Author: Diego Rosado <diego.rosado@tecnalia.com> +Date: Fri Oct 8 15:51:20 2021 +0200 + + database refresh + +[33mcommit 61d959ed2a7fc2a31ad4892050d87e0957bdbd75[m +Author: Diego Rosado <diego.rosado@tecnalia.com> +Date: Fri Oct 8 15:46:43 2021 +0200 + + cocgateway database + +[33mcommit 4175bb3328df76de146b1d27d92e3a8fafc4ad89[m +Author: Diego Rosado <diego.rosado@tecnalia.com> +Date: Fri Oct 8 15:40:24 2021 +0200 + + rebuild + +[33mcommit 08b1f53a77edd6a6d137d6f3982f3473c1626223[m +Author: Diego Rosado <diego.rosado@tecnalia.com> +Date: Fri Oct 8 15:35:25 2021 +0200 + + mysql version + +[33mcommit 1971ed8c060e6d57cf108fad0cd44b7c0f4cf0b2[m +Author: Diego Rosado <diego.rosado@tecnalia.com> +Date: Fri Oct 8 15:30:49 2021 +0200 + + jhipster tables + +[33mcommit c757b037ff8539a5664a1cc2bddfc5fb6c988c03[m +Author: Diego Rosado <diego.rosado@tecnalia.com> +Date: Fri Oct 8 15:24:30 2021 +0200 + + jhi tables + +[33mcommit 3a035e3bc7fe49dc4bb2b9e67be6fa8948f84d7e[m +Author: Diego Rosado <diego.rosado@tecnalia.com> +Date: Fri Oct 8 15:05:52 2021 +0200 + + medina database initial scripts + +[33mcommit 13e22b2bbc36dc486b234172ce5ad6d1a92c1501[m +Merge: 2f35756 09550a7 +Author: Diego Rosado <diego.rosado@tecnalia.com> +Date: Wed Oct 6 14:34:52 2021 +0200 + + Merge branch 'main' of git.code.tecnalia.com:medina/wp2/task_2.2/catalogue-deploy + +[33mcommit 2f357563cb47dfbc710199da15f49fd54663d24b[m +Author: Diego Rosado <diego.rosado@tecnalia.com> +Date: Wed Oct 6 14:34:47 2021 +0200 + + initial data model + +[33mcommit 09550a7f66f687ca5112aa078b3bf595b9851839[m +Author: Gorka Benguria Elguezabal <gorka.benguria@tecnalia.com> +Date: Wed Sep 29 21:23:54 2021 +0200 + + fixes url + +[33mcommit 4f0832bca5c51792b345abcad38889dae73ca393[m +Author: Gorka Benguria Elguezabal <gorka.benguria@tecnalia.com> +Date: Wed Sep 29 16:42:55 2021 +0200 + + adjust server host + +[33mcommit 7bdebe591feec6a42c17f82e13c9ea184497c1c7[m +Author: Gorka Benguria Elguezabal <gorka.benguria@tecnalia.com> +Date: Wed Sep 29 16:25:18 2021 +0200 + + updates the integration domain + +[33mcommit 0749675af771641d311e7d545180f7c093a02500[m +Author: Gorka Benguria Elguezabal <gorka.benguria@tecnalia.com> +Date: Wed Sep 29 14:58:44 2021 +0200 + + removes redundant extend + +[33mcommit eb07ada0faf2f2058423ba4d801228048d887671[m +Author: Gorka Benguria Elguezabal <gorka.benguria@tecnalia.com> +Date: Wed Sep 29 14:55:52 2021 +0200 + + minor gitlab-ci adjustments and README.md update + +[33mcommit dc1b68ac56a9b4f0643d4d11684ee25870357ade[m +Author: Diego Rosado <diego.rosado@tecnalia.com> +Date: Wed Sep 29 14:35:55 2021 +0200 + + remove docker-compose-redirect-http.yaml:docker-compose-dev-expose.yaml from gitlab-ci + +[33mcommit 503bd27b660a388301ef38ac77c7fdba1c115820[m +Author: Diego Rosado <diego.rosado@tecnalia.com> +Date: Wed Sep 29 14:25:42 2021 +0200 + + Move docker-compose and dockerfile args to environment + +[33mcommit 1dbfbb30f24483984b72b6e0f849269cce846db1[m +Author: Diego Rosado <diego.rosado@tecnalia.com> +Date: Wed Sep 29 13:59:26 2021 +0200 + + remove test job + +[33mcommit bff10974e88e4727fcca38067b6d15d003ac92be[m +Author: Diego Rosado <diego.rosado@tecnalia.com> +Date: Wed Sep 29 13:55:49 2021 +0200 + + change default password registry + +[33mcommit 4c935d072b721ca2143f5da02f58db4a51f4783b[m +Author: Diego Rosado <diego.rosado@tecnalia.com> +Date: Wed Sep 29 13:52:53 2021 +0200 + + manual job + +[33mcommit 4ea990f06c75187194921f035198b12808102bb0[m +Author: Diego Rosado <diego.rosado@tecnalia.com> +Date: Wed Sep 29 13:50:02 2021 +0200 + + manual job docker compose config + +[33mcommit 790f86d6dcbe643cb6d619c8c1e69e78ecefe7c4[m +Author: Diego Rosado <diego.rosado@tecnalia.com> +Date: Wed Sep 29 13:23:29 2021 +0200 + + refactor docker files + +[33mcommit e6da0655762fa4a9ffd4da1cad7a8407dc8ef530[m +Author: Diego Rosado <diego.rosado@tecnalia.com> +Date: Wed Sep 29 12:43:23 2021 +0200 + + removed profiles + +[33mcommit 0a0c87fe34c994121d34d83ce27d9dfc3d7858ee[m +Author: Diego Rosado <diego.rosado@tecnalia.com> +Date: Wed Sep 29 12:16:33 2021 +0200 + + gateway dockerfile fix. registry dockerfile improvements + +[33mcommit 2b8c8338153a75a6ec5144693654ab4cfd16cb3e[m +Author: Diego Rosado <diego.rosado@tecnalia.com> +Date: Wed Sep 29 10:26:29 2021 +0200 + + merge gateway build optimize + +[33mcommit cd011c35d4eb09657ad2be0b71df91aa68c38693[m +Merge: f7faa4e b0cb408 +Author: Rosado Ortiz de Zarate, Diego <diego.rosado@tecnalia.com> +Date: Wed Sep 29 10:23:08 2021 +0200 + + Merge branch 'feature/speedup_dockerfile' into 'main' + + speed up building + + See merge request medina/wp2/task_2.2/catalogue-deploy!4 + +[33mcommit f7faa4e1a7b37f86b91a0d1beab3474f7691be2c[m +Author: Diego Rosado <diego.rosado@tecnalia.com> +Date: Wed Sep 29 10:07:49 2021 +0200 + + gitlab-ci env variables + +[33mcommit 4773b186111d4ed1bfb1c9ba589fc6e27628328e[m +Author: Diego Rosado <diego.rosado@tecnalia.com> +Date: Wed Sep 29 09:57:43 2021 +0200 + + docker compose file variable + +[33mcommit 5608ef0333dbffe0d8340a7f46ca0155103847e2[m +Author: Diego Rosado <diego.rosado@tecnalia.com> +Date: Wed Sep 29 09:55:54 2021 +0200 + + gitlab-ci docker compose file variable + +[33mcommit 30eb8b09d1ddb87f1318850cc54cf814c8846fd8[m +Author: Diego Rosado <diego.rosado@tecnalia.com> +Date: Wed Sep 29 09:54:33 2021 +0200 + + check runner + +[33mcommit 293760c7aaa2323f589def9eceb4211fad401296[m +Author: Diego Rosado <diego.rosado@tecnalia.com> +Date: Wed Sep 29 09:45:47 2021 +0200 + + gitmodule relative path + +[33mcommit a225a1f05f800eb10acc89dfcf46fa549018b0e0[m +Author: Diego Rosado <diego.rosado@tecnalia.com> +Date: Wed Sep 29 09:40:31 2021 +0200 + + git submodule init variable + +[33mcommit a316493af66ec9eec4d56bc8e4f70cbb660a1740[m +Author: Diego Rosado <diego.rosado@tecnalia.com> +Date: Wed Sep 29 09:36:52 2021 +0200 + + gitlab-ci tags + +[33mcommit 736951492b124cd977a864726792e55b1eb4291f[m +Author: Diego Rosado <diego.rosado@tecnalia.com> +Date: Wed Sep 29 09:32:53 2021 +0200 + + readme + +[33mcommit b0cb408628aaeab1a07bf5ec25ed06bff404cedc[m +Author: Gorka Benguria Elguezabal <gorka.benguria@tecnalia.com> +Date: Tue Sep 28 17:48:23 2021 +0200 + + speed up building + +[33mcommit 5f5c6537b8c6a21669eb0dce6459a42849822e2b[m +Author: Diego Rosado <diego.rosado@tecnalia.com> +Date: Tue Sep 28 12:47:46 2021 +0200 + + coc keycloak http redirect fix + +[33mcommit e3c7928de9f6b43dbe92e4f400c19ee952d7eab9[m +Author: Diego Rosado <diego.rosado@tecnalia.com> +Date: Tue Sep 28 11:08:00 2021 +0200 + + remove microservices. Add generic microservice. + +[33mcommit a973830824d32bec089171ae8d2e6f6faad91c0f[m +Author: Diego Rosado <diego.rosado@tecnalia.com> +Date: Tue Sep 28 09:04:27 2021 +0200 + + Initial version of cocBackend generated by generator-jhipster@7.2.0 + +[33mcommit 050c7fbc34cda0257746670c52ca1732ae60dfc0[m +Merge: b5a3906 2c1be89 +Author: Rosado Ortiz de Zarate, Diego <diego.rosado@tecnalia.com> +Date: Tue Sep 28 08:59:27 2021 +0200 + + Merge branch 'feature/refactor_registry_and_cocgateway_dockerfile' into 'main' + + Feature/refactor registry and cocgateway dockerfile + + See merge request medina/wp2/task_2.2/catalogue-deploy!3 + +[33mcommit 2c1be89db2fa87f427a0fc714c6a630bb93d6113[m +Author: Benguria Elguezabal, Gorka <gorka.benguria@tecnalia.com> +Date: Tue Sep 28 08:59:27 2021 +0200 + + Feature/refactor registry and cocgateway dockerfile + +[33mcommit b5a3906736faa1ad8e5e93ddd593234e08af5b1d[m +Merge: b454013 b520446 +Author: Rosado Ortiz de Zarate, Diego <diego.rosado@tecnalia.com> +Date: Tue Sep 28 08:59:12 2021 +0200 + + Merge branch 'feature/refactor_coc_compose' into 'main' + + adds adjustments to make keycloack and cocgateway respond + + See merge request medina/wp2/task_2.2/catalogue-deploy!2 + +[33mcommit b5204466c0f0fb158dbf9b922600e5fd3eaec8fe[m +Author: Gorka Benguria Elguezabal <gorka.benguria@tecnalia.com> +Date: Mon Sep 27 20:57:41 2021 +0200 + + adds adjustments to make keycloack and cocgateway respond + +[33mcommit b4540135db335ffa9967cc2d086d579e4f83109d[m +Merge: f2af9d7 37755ca +Author: Rosado Ortiz de Zarate, Diego <diego.rosado@tecnalia.com> +Date: Mon Sep 27 09:40:02 2021 +0200 + + Merge branch 'feature/adjust_traefik' into 'main' + + Feature/adjust traefik + + See merge request medina/wp2/task_2.2/catalogue-deploy!1 + +[33mcommit 37755cabd80101ad207d1c0deb0e2c4a732173a2[m +Author: Gorka Benguria Elguezabal <gorka.benguria@tecnalia.com> +Date: Mon Sep 27 01:15:31 2021 +0200 + + removes duplicated medina mysql + +[33mcommit 8400892f40cfa21135b551bf971b51a900b30036[m +Author: Gorka Benguria Elguezabal <gorka.benguria@tecnalia.com> +Date: Mon Sep 27 00:58:11 2021 +0200 + + refactors traefik configuration and adds README.md + +[33mcommit 97a0b2565ab387eea9327c173f4b44c989189b69[m +Author: Gorka Benguria Elguezabal <gorka.benguria@tecnalia.com> +Date: Sun Sep 26 00:18:58 2021 +0200 + + adds traefik from reusable traefik repo + +[33mcommit f2af9d7bf723bcf1e98881dc267e5d902781ce98[m +Author: Rosado Ortiz de Zarate, Diego <diego.rosado@tecnalia.com> +Date: Mon Sep 20 17:25:16 2021 +0200 + + Update .gitlab-ci.yml file + +[33mcommit a7ed19086a52923d3e3b8bd6f1dc361c33dd6992[m +Author: Rosado Ortiz de Zarate, Diego <diego.rosado@tecnalia.com> +Date: Mon Sep 20 17:21:43 2021 +0200 + + Update .gitlab-ci.yml file + +[33mcommit 6e5aa6ead1a7b8caada029bb6b825b2f454c3d2f[m +Author: Rosado Ortiz de Zarate, Diego <diego.rosado@tecnalia.com> +Date: Mon Sep 20 17:20:32 2021 +0200 + + Update .gitlab-ci.yml file + +[33mcommit 175a9cb1abb7515ff7ad1fe5daeae0b9dcfeb153[m +Author: Diego Rosado <diego.rosado@tecnalia.com> +Date: Mon Sep 20 17:16:52 2021 +0200 + + model + +[33mcommit df78127da39278449e830ea2fbc04a92384afc48[m +Author: Diego Rosado <diego.rosado@tecnalia.com> +Date: Mon Sep 13 14:17:07 2021 +0200 + + traefik develop + +[33mcommit e84933ec79381f2859da8195a8c60acf2e5e5a28[m +Author: Diego Rosado <diego.rosado@tecnalia.com> +Date: Mon Sep 13 10:20:18 2021 +0200 + + local traefik + +[33mcommit d887e1c74eb4eb22292bd6299652a72020e8b53c[m +Author: Diego Rosado <diego.rosado@tecnalia.com> +Date: Mon Sep 13 09:04:19 2021 +0200 + + local traefik + +[33mcommit 1ef4bbaf01ab6f663159c53edcc986407dab1b74[m +Author: Diego Rosado <diego.rosado@tecnalia.com> +Date: Fri Sep 10 15:29:06 2021 +0200 + + docker files + +[33mcommit 680c3d916e9d125cfd49847edfb33bcec98e45ae[m +Author: Diego Rosado <diego.rosado@tecnalia.com> +Date: Fri Sep 10 11:29:53 2021 +0200 + + Initial commit diff --git a/openapi.json b/openapi.json index c6d4cf2d84d9fffe8242d45f8fd6cd6f4f4f2915..91a4490fb60ca606874f108047dd04993d789373 100755 --- a/openapi.json +++ b/openapi.json @@ -1,16740 +1 @@ -{ - "openapi": "3.0.3", - "info": { - "title": "cocBackend API", - "description": "cocBackend API documentation", - "contact": {}, - "license": { - "name": "unlicensed" - }, - "version": "0.0.1" - }, - "servers": [ - { - "url": "/services/cocbackend/", - "description": "added by global filter" - } - ], - "tags": [ - { - "name": "cloud-service-provider-resource", - "description": "Cloud Service Provider Resource" - }, - { - "name": "cloud-service-resource", - "description": "Cloud Service Resource" - }, - { - "name": "public-user-resource", - "description": "Public User Resource" - }, - { - "name": "reference-tom-resource", - "description": "Reference Tom Resource" - }, - { - "name": "resource-resource", - "description": "Resource Resource" - }, - { - "name": "resource-type-resource", - "description": "Resource Type Resource" - }, - { - "name": "security-control-category-resource", - "description": "Security Control Category Resource" - }, - { - "name": "security-control-framework-resource", - "description": "Security Control Framework Resource" - }, - { - "name": "security-control-resource", - "description": "Security Control Resource" - }, - { - "name": "security-metric-resource", - "description": "Security Metric Resource" - }, - { - "name": "similar-control-resource", - "description": "Similar Control Resource" - }, - { - "name": "target-value-resource", - "description": "Target Value Resource" - }, - { - "name": "tom-resource", - "description": "Tom Resource" - }, - { - "name": "user-resource", - "description": "User Resource" - } - ], - "paths": { - "/api/cloud-service-providers": { - "get": { - "tags": [ - "cloud-service-provider-resource" - ], - "summary": "getAllCloudServiceProviders", - "operationId": "getAllCloudServiceProvidersUsingGET", - "parameters": [ - { - "name": "acronym.contains", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "acronym.doesNotContain", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "acronym.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "acronym.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "acronym.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "acronym.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "acronym.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "cloudServiceId.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "cloudServiceId.greaterThan", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "cloudServiceId.greaterThanOrEqual", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "cloudServiceId.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "integer", - "format": "int64" - } - } - }, - { - "name": "cloudServiceId.lessThan", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "cloudServiceId.lessThanOrEqual", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "cloudServiceId.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "cloudServiceId.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "integer", - "format": "int64" - } - } - }, - { - "name": "cloudServiceId.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "contactDetails.contains", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "contactDetails.doesNotContain", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "contactDetails.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "contactDetails.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "contactDetails.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "contactDetails.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "contactDetails.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "distinct", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "id.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.greaterThan", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.greaterThanOrEqual", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "integer", - "format": "int64" - } - } - }, - { - "name": "id.lessThan", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.lessThanOrEqual", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "integer", - "format": "int64" - } - } - }, - { - "name": "id.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "name.contains", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "name.doesNotContain", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "name.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "name.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "name.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "name.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "name.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/CloudServiceProviderDTO" - } - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - }, - "404": { - "description": "Not Found" - } - } - }, - "post": { - "tags": [ - "cloud-service-provider-resource" - ], - "summary": "createCloudServiceProvider", - "operationId": "createCloudServiceProviderUsingPOST", - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/CloudServiceProviderDTO" - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/CloudServiceProviderDTO" - } - } - } - }, - "201": { - "description": "Created" - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - }, - "404": { - "description": "Not Found" - } - } - } - }, - "/api/cloud-service-providers/count": { - "get": { - "tags": [ - "cloud-service-provider-resource" - ], - "summary": "countCloudServiceProviders", - "operationId": "countCloudServiceProvidersUsingGET", - "parameters": [ - { - "name": "acronym.contains", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "acronym.doesNotContain", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "acronym.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "acronym.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "acronym.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "acronym.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "acronym.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "cloudServiceId.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "cloudServiceId.greaterThan", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "cloudServiceId.greaterThanOrEqual", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "cloudServiceId.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "integer", - "format": "int64" - } - } - }, - { - "name": "cloudServiceId.lessThan", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "cloudServiceId.lessThanOrEqual", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "cloudServiceId.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "cloudServiceId.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "integer", - "format": "int64" - } - } - }, - { - "name": "cloudServiceId.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "contactDetails.contains", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "contactDetails.doesNotContain", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "contactDetails.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "contactDetails.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "contactDetails.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "contactDetails.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "contactDetails.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "distinct", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "id.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.greaterThan", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.greaterThanOrEqual", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "integer", - "format": "int64" - } - } - }, - { - "name": "id.lessThan", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.lessThanOrEqual", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "integer", - "format": "int64" - } - } - }, - { - "name": "id.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "name.contains", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "name.doesNotContain", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "name.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "name.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "name.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "name.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "name.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "type": "integer", - "format": "int64" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - }, - "404": { - "description": "Not Found" - } - } - } - }, - "/api/cloud-service-providers/{id}": { - "get": { - "tags": [ - "cloud-service-provider-resource" - ], - "summary": "getCloudServiceProvider", - "operationId": "getCloudServiceProviderUsingGET", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int64" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/CloudServiceProviderDTO" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - }, - "404": { - "description": "Not Found" - } - } - }, - "put": { - "tags": [ - "cloud-service-provider-resource" - ], - "summary": "updateCloudServiceProvider", - "operationId": "updateCloudServiceProviderUsingPUT", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int64" - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/CloudServiceProviderDTO" - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/CloudServiceProviderDTO" - } - } - } - }, - "201": { - "description": "Created" - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - }, - "404": { - "description": "Not Found" - } - } - }, - "delete": { - "tags": [ - "cloud-service-provider-resource" - ], - "summary": "deleteCloudServiceProvider", - "operationId": "deleteCloudServiceProviderUsingDELETE", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int64" - } - } - ], - "responses": { - "200": { - "description": "OK" - }, - "204": { - "description": "No Content" - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - } - }, - "patch": { - "tags": [ - "cloud-service-provider-resource" - ], - "summary": "partialUpdateCloudServiceProvider", - "operationId": "partialUpdateCloudServiceProviderUsingPATCH", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int64" - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/CloudServiceProviderDTO" - } - }, - "application/merge-patch+json": { - "schema": { - "$ref": "#/components/schemas/CloudServiceProviderDTO" - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/CloudServiceProviderDTO" - } - } - } - }, - "204": { - "description": "No Content" - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - } - } - }, - "/api/cloud-services": { - "get": { - "tags": [ - "cloud-service-resource" - ], - "summary": "getAllCloudServices", - "operationId": "getAllCloudServicesUsingGET", - "parameters": [ - { - "name": "acronym.contains", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "acronym.doesNotContain", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "acronym.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "acronym.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "acronym.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "acronym.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "acronym.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "cloudServiceProviderId.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "cloudServiceProviderId.greaterThan", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "cloudServiceProviderId.greaterThanOrEqual", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "cloudServiceProviderId.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "integer", - "format": "int64" - } - } - }, - { - "name": "cloudServiceProviderId.lessThan", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "cloudServiceProviderId.lessThanOrEqual", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "cloudServiceProviderId.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "cloudServiceProviderId.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "integer", - "format": "int64" - } - } - }, - { - "name": "cloudServiceProviderId.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "description.contains", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "description.doesNotContain", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "description.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "description.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "description.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "description.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "description.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "distinct", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "id.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.greaterThan", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.greaterThanOrEqual", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "integer", - "format": "int64" - } - } - }, - { - "name": "id.lessThan", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.lessThanOrEqual", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "integer", - "format": "int64" - } - } - }, - { - "name": "id.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "name.contains", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "name.doesNotContain", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "name.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "name.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "name.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "name.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "name.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "resourceId.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "resourceId.greaterThan", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "resourceId.greaterThanOrEqual", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "resourceId.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "integer", - "format": "int64" - } - } - }, - { - "name": "resourceId.lessThan", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "resourceId.lessThanOrEqual", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "resourceId.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "resourceId.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "integer", - "format": "int64" - } - } - }, - { - "name": "resourceId.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "securityControlFrameworkId.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "securityControlFrameworkId.greaterThan", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "securityControlFrameworkId.greaterThanOrEqual", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "securityControlFrameworkId.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "integer", - "format": "int64" - } - } - }, - { - "name": "securityControlFrameworkId.lessThan", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "securityControlFrameworkId.lessThanOrEqual", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "securityControlFrameworkId.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "securityControlFrameworkId.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "integer", - "format": "int64" - } - } - }, - { - "name": "securityControlFrameworkId.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "type.contains", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "type.doesNotContain", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "type.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "type.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "type.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "type.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "type.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/CloudServiceDTO" - } - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - }, - "404": { - "description": "Not Found" - } - } - }, - "post": { - "tags": [ - "cloud-service-resource" - ], - "summary": "createCloudService", - "operationId": "createCloudServiceUsingPOST", - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/CloudServiceDTO" - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/CloudServiceDTO" - } - } - } - }, - "201": { - "description": "Created" - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - }, - "404": { - "description": "Not Found" - } - } - } - }, - "/api/cloud-services/count": { - "get": { - "tags": [ - "cloud-service-resource" - ], - "summary": "countCloudServices", - "operationId": "countCloudServicesUsingGET", - "parameters": [ - { - "name": "acronym.contains", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "acronym.doesNotContain", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "acronym.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "acronym.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "acronym.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "acronym.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "acronym.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "cloudServiceProviderId.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "cloudServiceProviderId.greaterThan", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "cloudServiceProviderId.greaterThanOrEqual", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "cloudServiceProviderId.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "integer", - "format": "int64" - } - } - }, - { - "name": "cloudServiceProviderId.lessThan", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "cloudServiceProviderId.lessThanOrEqual", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "cloudServiceProviderId.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "cloudServiceProviderId.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "integer", - "format": "int64" - } - } - }, - { - "name": "cloudServiceProviderId.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "description.contains", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "description.doesNotContain", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "description.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "description.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "description.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "description.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "description.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "distinct", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "id.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.greaterThan", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.greaterThanOrEqual", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "integer", - "format": "int64" - } - } - }, - { - "name": "id.lessThan", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.lessThanOrEqual", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "integer", - "format": "int64" - } - } - }, - { - "name": "id.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "name.contains", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "name.doesNotContain", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "name.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "name.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "name.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "name.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "name.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "resourceId.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "resourceId.greaterThan", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "resourceId.greaterThanOrEqual", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "resourceId.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "integer", - "format": "int64" - } - } - }, - { - "name": "resourceId.lessThan", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "resourceId.lessThanOrEqual", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "resourceId.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "resourceId.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "integer", - "format": "int64" - } - } - }, - { - "name": "resourceId.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "securityControlFrameworkId.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "securityControlFrameworkId.greaterThan", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "securityControlFrameworkId.greaterThanOrEqual", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "securityControlFrameworkId.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "integer", - "format": "int64" - } - } - }, - { - "name": "securityControlFrameworkId.lessThan", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "securityControlFrameworkId.lessThanOrEqual", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "securityControlFrameworkId.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "securityControlFrameworkId.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "integer", - "format": "int64" - } - } - }, - { - "name": "securityControlFrameworkId.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "type.contains", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "type.doesNotContain", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "type.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "type.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "type.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "type.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "type.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "type": "integer", - "format": "int64" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - }, - "404": { - "description": "Not Found" - } - } - } - }, - "/api/cloud-services/{id}": { - "get": { - "tags": [ - "cloud-service-resource" - ], - "summary": "getCloudService", - "operationId": "getCloudServiceUsingGET", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int64" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/CloudServiceDTO" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - }, - "404": { - "description": "Not Found" - } - } - }, - "put": { - "tags": [ - "cloud-service-resource" - ], - "summary": "updateCloudService", - "operationId": "updateCloudServiceUsingPUT", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int64" - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/CloudServiceDTO" - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/CloudServiceDTO" - } - } - } - }, - "201": { - "description": "Created" - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - }, - "404": { - "description": "Not Found" - } - } - }, - "delete": { - "tags": [ - "cloud-service-resource" - ], - "summary": "deleteCloudService", - "operationId": "deleteCloudServiceUsingDELETE", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int64" - } - } - ], - "responses": { - "200": { - "description": "OK" - }, - "204": { - "description": "No Content" - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - } - }, - "patch": { - "tags": [ - "cloud-service-resource" - ], - "summary": "partialUpdateCloudService", - "operationId": "partialUpdateCloudServiceUsingPATCH", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int64" - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/CloudServiceDTO" - } - }, - "application/merge-patch+json": { - "schema": { - "$ref": "#/components/schemas/CloudServiceDTO" - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/CloudServiceDTO" - } - } - } - }, - "204": { - "description": "No Content" - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - } - } - }, - "/api/authorities": { - "get": { - "tags": [ - "public-user-resource" - ], - "summary": "getAuthorities", - "operationId": "getAuthoritiesUsingGET", - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - }, - "404": { - "description": "Not Found" - } - } - } - }, - "/api/users": { - "get": { - "tags": [ - "public-user-resource" - ], - "summary": "getAllPublicUsers", - "operationId": "getAllPublicUsersUsingGET", - "parameters": [ - { - "name": "page", - "in": "query", - "description": "Page number of the requested page", - "required": false, - "style": "form", - "allowReserved": true, - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "size", - "in": "query", - "description": "Size of a page", - "required": false, - "style": "form", - "allowReserved": true, - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "form", - "allowReserved": true, - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/UserDTO" - } - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - }, - "404": { - "description": "Not Found" - } - } - } - }, - "/api/reference-toms": { - "get": { - "tags": [ - "reference-tom-resource" - ], - "summary": "getAllReferenceToms", - "operationId": "getAllReferenceTomsUsingGET", - "parameters": [ - { - "name": "distinct", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "id.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.greaterThan", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.greaterThanOrEqual", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "integer", - "format": "int64" - } - } - }, - { - "name": "id.lessThan", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.lessThanOrEqual", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "integer", - "format": "int64" - } - } - }, - { - "name": "id.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "referenceTomImpl.contains", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "referenceTomImpl.doesNotContain", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "referenceTomImpl.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "referenceTomImpl.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "referenceTomImpl.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "referenceTomImpl.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "referenceTomImpl.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "tomId.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "tomId.greaterThan", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "tomId.greaterThanOrEqual", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "tomId.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "integer", - "format": "int64" - } - } - }, - { - "name": "tomId.lessThan", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "tomId.lessThanOrEqual", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "tomId.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "tomId.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "integer", - "format": "int64" - } - } - }, - { - "name": "tomId.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ReferenceTomDTO" - } - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - }, - "404": { - "description": "Not Found" - } - } - }, - "post": { - "tags": [ - "reference-tom-resource" - ], - "summary": "createReferenceTom", - "operationId": "createReferenceTomUsingPOST", - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ReferenceTomDTO" - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ReferenceTomDTO" - } - } - } - }, - "201": { - "description": "Created" - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - }, - "404": { - "description": "Not Found" - } - } - } - }, - "/api/reference-toms/count": { - "get": { - "tags": [ - "reference-tom-resource" - ], - "summary": "countReferenceToms", - "operationId": "countReferenceTomsUsingGET", - "parameters": [ - { - "name": "distinct", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "id.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.greaterThan", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.greaterThanOrEqual", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "integer", - "format": "int64" - } - } - }, - { - "name": "id.lessThan", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.lessThanOrEqual", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "integer", - "format": "int64" - } - } - }, - { - "name": "id.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "referenceTomImpl.contains", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "referenceTomImpl.doesNotContain", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "referenceTomImpl.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "referenceTomImpl.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "referenceTomImpl.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "referenceTomImpl.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "referenceTomImpl.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "tomId.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "tomId.greaterThan", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "tomId.greaterThanOrEqual", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "tomId.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "integer", - "format": "int64" - } - } - }, - { - "name": "tomId.lessThan", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "tomId.lessThanOrEqual", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "tomId.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "tomId.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "integer", - "format": "int64" - } - } - }, - { - "name": "tomId.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "type": "integer", - "format": "int64" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - }, - "404": { - "description": "Not Found" - } - } - } - }, - "/api/reference-toms/{id}": { - "get": { - "tags": [ - "reference-tom-resource" - ], - "summary": "getReferenceTom", - "operationId": "getReferenceTomUsingGET", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int64" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ReferenceTomDTO" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - }, - "404": { - "description": "Not Found" - } - } - }, - "put": { - "tags": [ - "reference-tom-resource" - ], - "summary": "updateReferenceTom", - "operationId": "updateReferenceTomUsingPUT", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int64" - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ReferenceTomDTO" - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ReferenceTomDTO" - } - } - } - }, - "201": { - "description": "Created" - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - }, - "404": { - "description": "Not Found" - } - } - }, - "delete": { - "tags": [ - "reference-tom-resource" - ], - "summary": "deleteReferenceTom", - "operationId": "deleteReferenceTomUsingDELETE", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int64" - } - } - ], - "responses": { - "200": { - "description": "OK" - }, - "204": { - "description": "No Content" - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - } - }, - "patch": { - "tags": [ - "reference-tom-resource" - ], - "summary": "partialUpdateReferenceTom", - "operationId": "partialUpdateReferenceTomUsingPATCH", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int64" - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ReferenceTomDTO" - } - }, - "application/merge-patch+json": { - "schema": { - "$ref": "#/components/schemas/ReferenceTomDTO" - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ReferenceTomDTO" - } - } - } - }, - "204": { - "description": "No Content" - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - } - } - }, - "/api/resources": { - "get": { - "tags": [ - "resource-resource" - ], - "summary": "getAllResources", - "operationId": "getAllResourcesUsingGET", - "parameters": [ - { - "name": "acronym.contains", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "acronym.doesNotContain", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "acronym.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "acronym.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "acronym.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "acronym.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "acronym.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "availabilityRisk.contains", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "availabilityRisk.doesNotContain", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "availabilityRisk.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "availabilityRisk.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "availabilityRisk.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "availabilityRisk.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "availabilityRisk.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "cloudServiceId.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "cloudServiceId.greaterThan", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "cloudServiceId.greaterThanOrEqual", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "cloudServiceId.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "integer", - "format": "int64" - } - } - }, - { - "name": "cloudServiceId.lessThan", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "cloudServiceId.lessThanOrEqual", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "cloudServiceId.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "cloudServiceId.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "integer", - "format": "int64" - } - } - }, - { - "name": "cloudServiceId.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "confidentialityRisk.contains", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "confidentialityRisk.doesNotContain", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "confidentialityRisk.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "confidentialityRisk.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "confidentialityRisk.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "confidentialityRisk.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "confidentialityRisk.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "distinct", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "id.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.greaterThan", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.greaterThanOrEqual", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "integer", - "format": "int64" - } - } - }, - { - "name": "id.lessThan", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.lessThanOrEqual", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "integer", - "format": "int64" - } - } - }, - { - "name": "id.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "integrityRisk.contains", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "integrityRisk.doesNotContain", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "integrityRisk.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "integrityRisk.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "integrityRisk.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "integrityRisk.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "integrityRisk.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "name.contains", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "name.doesNotContain", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "name.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "name.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "name.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "name.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "name.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "resourceTypeId.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "resourceTypeId.greaterThan", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "resourceTypeId.greaterThanOrEqual", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "resourceTypeId.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "integer", - "format": "int64" - } - } - }, - { - "name": "resourceTypeId.lessThan", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "resourceTypeId.lessThanOrEqual", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "resourceTypeId.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "resourceTypeId.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "integer", - "format": "int64" - } - } - }, - { - "name": "resourceTypeId.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "targetValueId.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "targetValueId.greaterThan", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "targetValueId.greaterThanOrEqual", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "targetValueId.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "integer", - "format": "int64" - } - } - }, - { - "name": "targetValueId.lessThan", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "targetValueId.lessThanOrEqual", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "targetValueId.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "targetValueId.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "integer", - "format": "int64" - } - } - }, - { - "name": "targetValueId.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ResourceDTO" - } - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - }, - "404": { - "description": "Not Found" - } - } - }, - "post": { - "tags": [ - "resource-resource" - ], - "summary": "createResource", - "operationId": "createResourceUsingPOST", - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ResourceDTO" - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResourceDTO" - } - } - } - }, - "201": { - "description": "Created" - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - }, - "404": { - "description": "Not Found" - } - } - } - }, - "/api/resources/count": { - "get": { - "tags": [ - "resource-resource" - ], - "summary": "countResources", - "operationId": "countResourcesUsingGET", - "parameters": [ - { - "name": "acronym.contains", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "acronym.doesNotContain", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "acronym.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "acronym.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "acronym.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "acronym.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "acronym.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "availabilityRisk.contains", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "availabilityRisk.doesNotContain", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "availabilityRisk.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "availabilityRisk.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "availabilityRisk.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "availabilityRisk.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "availabilityRisk.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "cloudServiceId.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "cloudServiceId.greaterThan", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "cloudServiceId.greaterThanOrEqual", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "cloudServiceId.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "integer", - "format": "int64" - } - } - }, - { - "name": "cloudServiceId.lessThan", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "cloudServiceId.lessThanOrEqual", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "cloudServiceId.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "cloudServiceId.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "integer", - "format": "int64" - } - } - }, - { - "name": "cloudServiceId.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "confidentialityRisk.contains", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "confidentialityRisk.doesNotContain", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "confidentialityRisk.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "confidentialityRisk.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "confidentialityRisk.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "confidentialityRisk.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "confidentialityRisk.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "distinct", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "id.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.greaterThan", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.greaterThanOrEqual", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "integer", - "format": "int64" - } - } - }, - { - "name": "id.lessThan", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.lessThanOrEqual", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "integer", - "format": "int64" - } - } - }, - { - "name": "id.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "integrityRisk.contains", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "integrityRisk.doesNotContain", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "integrityRisk.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "integrityRisk.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "integrityRisk.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "integrityRisk.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "integrityRisk.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "name.contains", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "name.doesNotContain", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "name.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "name.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "name.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "name.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "name.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "resourceTypeId.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "resourceTypeId.greaterThan", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "resourceTypeId.greaterThanOrEqual", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "resourceTypeId.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "integer", - "format": "int64" - } - } - }, - { - "name": "resourceTypeId.lessThan", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "resourceTypeId.lessThanOrEqual", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "resourceTypeId.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "resourceTypeId.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "integer", - "format": "int64" - } - } - }, - { - "name": "resourceTypeId.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "targetValueId.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "targetValueId.greaterThan", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "targetValueId.greaterThanOrEqual", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "targetValueId.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "integer", - "format": "int64" - } - } - }, - { - "name": "targetValueId.lessThan", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "targetValueId.lessThanOrEqual", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "targetValueId.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "targetValueId.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "integer", - "format": "int64" - } - } - }, - { - "name": "targetValueId.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "type": "integer", - "format": "int64" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - }, - "404": { - "description": "Not Found" - } - } - } - }, - "/api/resources/{id}": { - "get": { - "tags": [ - "resource-resource" - ], - "summary": "getResource", - "operationId": "getResourceUsingGET", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int64" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResourceDTO" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - }, - "404": { - "description": "Not Found" - } - } - }, - "put": { - "tags": [ - "resource-resource" - ], - "summary": "updateResource", - "operationId": "updateResourceUsingPUT", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int64" - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ResourceDTO" - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResourceDTO" - } - } - } - }, - "201": { - "description": "Created" - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - }, - "404": { - "description": "Not Found" - } - } - }, - "delete": { - "tags": [ - "resource-resource" - ], - "summary": "deleteResource", - "operationId": "deleteResourceUsingDELETE", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int64" - } - } - ], - "responses": { - "200": { - "description": "OK" - }, - "204": { - "description": "No Content" - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - } - }, - "patch": { - "tags": [ - "resource-resource" - ], - "summary": "partialUpdateResource", - "operationId": "partialUpdateResourceUsingPATCH", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int64" - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ResourceDTO" - } - }, - "application/merge-patch+json": { - "schema": { - "$ref": "#/components/schemas/ResourceDTO" - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResourceDTO" - } - } - } - }, - "204": { - "description": "No Content" - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - } - } - }, - "/api/resource-types": { - "get": { - "tags": [ - "resource-type-resource" - ], - "summary": "getAllResourceTypes", - "operationId": "getAllResourceTypesUsingGET", - "parameters": [ - { - "name": "distinct", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "id.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.greaterThan", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.greaterThanOrEqual", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "integer", - "format": "int64" - } - } - }, - { - "name": "id.lessThan", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.lessThanOrEqual", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "integer", - "format": "int64" - } - } - }, - { - "name": "id.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "name.contains", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "name.doesNotContain", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "name.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "name.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "name.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "name.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "name.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "ontologyTerm.contains", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "ontologyTerm.doesNotContain", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "ontologyTerm.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "ontologyTerm.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "ontologyTerm.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "ontologyTerm.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "ontologyTerm.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ResourceTypeDTO" - } - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - }, - "404": { - "description": "Not Found" - } - } - }, - "post": { - "tags": [ - "resource-type-resource" - ], - "summary": "createResourceType", - "operationId": "createResourceTypeUsingPOST", - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ResourceTypeDTO" - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResourceTypeDTO" - } - } - } - }, - "201": { - "description": "Created" - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - }, - "404": { - "description": "Not Found" - } - } - } - }, - "/api/resource-types/count": { - "get": { - "tags": [ - "resource-type-resource" - ], - "summary": "countResourceTypes", - "operationId": "countResourceTypesUsingGET", - "parameters": [ - { - "name": "distinct", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "id.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.greaterThan", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.greaterThanOrEqual", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "integer", - "format": "int64" - } - } - }, - { - "name": "id.lessThan", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.lessThanOrEqual", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "integer", - "format": "int64" - } - } - }, - { - "name": "id.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "name.contains", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "name.doesNotContain", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "name.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "name.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "name.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "name.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "name.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "ontologyTerm.contains", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "ontologyTerm.doesNotContain", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "ontologyTerm.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "ontologyTerm.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "ontologyTerm.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "ontologyTerm.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "ontologyTerm.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "type": "integer", - "format": "int64" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - }, - "404": { - "description": "Not Found" - } - } - } - }, - "/api/resource-types/{id}": { - "get": { - "tags": [ - "resource-type-resource" - ], - "summary": "getResourceType", - "operationId": "getResourceTypeUsingGET", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int64" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResourceTypeDTO" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - }, - "404": { - "description": "Not Found" - } - } - }, - "put": { - "tags": [ - "resource-type-resource" - ], - "summary": "updateResourceType", - "operationId": "updateResourceTypeUsingPUT", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int64" - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ResourceTypeDTO" - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResourceTypeDTO" - } - } - } - }, - "201": { - "description": "Created" - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - }, - "404": { - "description": "Not Found" - } - } - }, - "delete": { - "tags": [ - "resource-type-resource" - ], - "summary": "deleteResourceType", - "operationId": "deleteResourceTypeUsingDELETE", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int64" - } - } - ], - "responses": { - "200": { - "description": "OK" - }, - "204": { - "description": "No Content" - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - } - }, - "patch": { - "tags": [ - "resource-type-resource" - ], - "summary": "partialUpdateResourceType", - "operationId": "partialUpdateResourceTypeUsingPATCH", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int64" - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ResourceTypeDTO" - } - }, - "application/merge-patch+json": { - "schema": { - "$ref": "#/components/schemas/ResourceTypeDTO" - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResourceTypeDTO" - } - } - } - }, - "204": { - "description": "No Content" - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - } - } - }, - "/api/security-control-categories": { - "get": { - "tags": [ - "security-control-category-resource" - ], - "summary": "getAllSecurityControlCategories", - "operationId": "getAllSecurityControlCategoriesUsingGET", - "parameters": [ - { - "name": "code.contains", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "code.doesNotContain", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "code.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "code.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "code.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "code.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "code.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "description.contains", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "description.doesNotContain", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "description.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "description.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "description.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "description.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "description.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "distinct", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "id.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.greaterThan", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.greaterThanOrEqual", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "integer", - "format": "int64" - } - } - }, - { - "name": "id.lessThan", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.lessThanOrEqual", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "integer", - "format": "int64" - } - } - }, - { - "name": "id.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "name.contains", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "name.doesNotContain", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "name.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "name.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "name.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "name.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "name.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "securityControlFrameworkId.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "securityControlFrameworkId.greaterThan", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "securityControlFrameworkId.greaterThanOrEqual", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "securityControlFrameworkId.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "integer", - "format": "int64" - } - } - }, - { - "name": "securityControlFrameworkId.lessThan", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "securityControlFrameworkId.lessThanOrEqual", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "securityControlFrameworkId.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "securityControlFrameworkId.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "integer", - "format": "int64" - } - } - }, - { - "name": "securityControlFrameworkId.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/SecurityControlCategoryDTO" - } - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - }, - "404": { - "description": "Not Found" - } - } - }, - "post": { - "tags": [ - "security-control-category-resource" - ], - "summary": "createSecurityControlCategory", - "operationId": "createSecurityControlCategoryUsingPOST", - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/SecurityControlCategoryDTO" - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/SecurityControlCategoryDTO" - } - } - } - }, - "201": { - "description": "Created" - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - }, - "404": { - "description": "Not Found" - } - } - } - }, - "/api/security-control-categories/count": { - "get": { - "tags": [ - "security-control-category-resource" - ], - "summary": "countSecurityControlCategories", - "operationId": "countSecurityControlCategoriesUsingGET", - "parameters": [ - { - "name": "code.contains", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "code.doesNotContain", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "code.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "code.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "code.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "code.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "code.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "description.contains", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "description.doesNotContain", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "description.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "description.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "description.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "description.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "description.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "distinct", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "id.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.greaterThan", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.greaterThanOrEqual", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "integer", - "format": "int64" - } - } - }, - { - "name": "id.lessThan", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.lessThanOrEqual", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "integer", - "format": "int64" - } - } - }, - { - "name": "id.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "name.contains", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "name.doesNotContain", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "name.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "name.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "name.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "name.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "name.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "securityControlFrameworkId.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "securityControlFrameworkId.greaterThan", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "securityControlFrameworkId.greaterThanOrEqual", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "securityControlFrameworkId.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "integer", - "format": "int64" - } - } - }, - { - "name": "securityControlFrameworkId.lessThan", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "securityControlFrameworkId.lessThanOrEqual", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "securityControlFrameworkId.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "securityControlFrameworkId.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "integer", - "format": "int64" - } - } - }, - { - "name": "securityControlFrameworkId.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "type": "integer", - "format": "int64" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - }, - "404": { - "description": "Not Found" - } - } - } - }, - "/api/security-control-categories/{id}": { - "get": { - "tags": [ - "security-control-category-resource" - ], - "summary": "getSecurityControlCategory", - "operationId": "getSecurityControlCategoryUsingGET", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int64" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/SecurityControlCategoryDTO" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - }, - "404": { - "description": "Not Found" - } - } - }, - "put": { - "tags": [ - "security-control-category-resource" - ], - "summary": "updateSecurityControlCategory", - "operationId": "updateSecurityControlCategoryUsingPUT", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int64" - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/SecurityControlCategoryDTO" - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/SecurityControlCategoryDTO" - } - } - } - }, - "201": { - "description": "Created" - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - }, - "404": { - "description": "Not Found" - } - } - }, - "delete": { - "tags": [ - "security-control-category-resource" - ], - "summary": "deleteSecurityControlCategory", - "operationId": "deleteSecurityControlCategoryUsingDELETE", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int64" - } - } - ], - "responses": { - "200": { - "description": "OK" - }, - "204": { - "description": "No Content" - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - } - }, - "patch": { - "tags": [ - "security-control-category-resource" - ], - "summary": "partialUpdateSecurityControlCategory", - "operationId": "partialUpdateSecurityControlCategoryUsingPATCH", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int64" - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/SecurityControlCategoryDTO" - } - }, - "application/merge-patch+json": { - "schema": { - "$ref": "#/components/schemas/SecurityControlCategoryDTO" - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/SecurityControlCategoryDTO" - } - } - } - }, - "204": { - "description": "No Content" - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - } - } - }, - "/api/security-control-frameworks": { - "get": { - "tags": [ - "security-control-framework-resource" - ], - "summary": "getAllSecurityControlFrameworks", - "operationId": "getAllSecurityControlFrameworksUsingGET", - "parameters": [ - { - "name": "cloudServiceId.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "cloudServiceId.greaterThan", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "cloudServiceId.greaterThanOrEqual", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "cloudServiceId.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "integer", - "format": "int64" - } - } - }, - { - "name": "cloudServiceId.lessThan", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "cloudServiceId.lessThanOrEqual", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "cloudServiceId.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "cloudServiceId.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "integer", - "format": "int64" - } - } - }, - { - "name": "cloudServiceId.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "description.contains", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "description.doesNotContain", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "description.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "description.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "description.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "description.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "description.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "distinct", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "id.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.greaterThan", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.greaterThanOrEqual", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "integer", - "format": "int64" - } - } - }, - { - "name": "id.lessThan", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.lessThanOrEqual", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "integer", - "format": "int64" - } - } - }, - { - "name": "id.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "name.contains", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "name.doesNotContain", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "name.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "name.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "name.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "name.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "name.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "version.contains", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "version.doesNotContain", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "version.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "version.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "version.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "version.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "version.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/SecurityControlFrameworkDTO" - } - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - }, - "404": { - "description": "Not Found" - } - } - }, - "post": { - "tags": [ - "security-control-framework-resource" - ], - "summary": "createSecurityControlFramework", - "operationId": "createSecurityControlFrameworkUsingPOST", - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/SecurityControlFrameworkDTO" - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/SecurityControlFrameworkDTO" - } - } - } - }, - "201": { - "description": "Created" - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - }, - "404": { - "description": "Not Found" - } - } - } - }, - "/api/security-control-frameworks/checkHasRequirements/{name}": { - "get": { - "tags": [ - "security-control-framework-resource" - ], - "summary": "checkHasRequirements", - "operationId": "checkHasRequirementsUsingGET", - "parameters": [ - { - "name": "name", - "in": "path", - "description": "name", - "required": true, - "style": "simple", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "type": "boolean" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - }, - "404": { - "description": "Not Found" - } - } - } - }, - "/api/security-control-frameworks/count": { - "get": { - "tags": [ - "security-control-framework-resource" - ], - "summary": "countSecurityControlFrameworks", - "operationId": "countSecurityControlFrameworksUsingGET", - "parameters": [ - { - "name": "cloudServiceId.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "cloudServiceId.greaterThan", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "cloudServiceId.greaterThanOrEqual", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "cloudServiceId.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "integer", - "format": "int64" - } - } - }, - { - "name": "cloudServiceId.lessThan", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "cloudServiceId.lessThanOrEqual", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "cloudServiceId.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "cloudServiceId.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "integer", - "format": "int64" - } - } - }, - { - "name": "cloudServiceId.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "description.contains", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "description.doesNotContain", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "description.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "description.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "description.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "description.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "description.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "distinct", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "id.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.greaterThan", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.greaterThanOrEqual", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "integer", - "format": "int64" - } - } - }, - { - "name": "id.lessThan", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.lessThanOrEqual", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "integer", - "format": "int64" - } - } - }, - { - "name": "id.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "name.contains", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "name.doesNotContain", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "name.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "name.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "name.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "name.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "name.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "version.contains", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "version.doesNotContain", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "version.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "version.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "version.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "version.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "version.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "type": "integer", - "format": "int64" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - }, - "404": { - "description": "Not Found" - } - } - } - }, - "/api/security-control-frameworks/{id}": { - "get": { - "tags": [ - "security-control-framework-resource" - ], - "summary": "getSecurityControlFramework", - "operationId": "getSecurityControlFrameworkUsingGET", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int64" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/SecurityControlFrameworkDTO" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - }, - "404": { - "description": "Not Found" - } - } - }, - "put": { - "tags": [ - "security-control-framework-resource" - ], - "summary": "updateSecurityControlFramework", - "operationId": "updateSecurityControlFrameworkUsingPUT", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int64" - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/SecurityControlFrameworkDTO" - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/SecurityControlFrameworkDTO" - } - } - } - }, - "201": { - "description": "Created" - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - }, - "404": { - "description": "Not Found" - } - } - }, - "delete": { - "tags": [ - "security-control-framework-resource" - ], - "summary": "deleteSecurityControlFramework", - "operationId": "deleteSecurityControlFrameworkUsingDELETE", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int64" - } - } - ], - "responses": { - "200": { - "description": "OK" - }, - "204": { - "description": "No Content" - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - } - }, - "patch": { - "tags": [ - "security-control-framework-resource" - ], - "summary": "partialUpdateSecurityControlFramework", - "operationId": "partialUpdateSecurityControlFrameworkUsingPATCH", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int64" - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/SecurityControlFrameworkDTO" - } - }, - "application/merge-patch+json": { - "schema": { - "$ref": "#/components/schemas/SecurityControlFrameworkDTO" - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/SecurityControlFrameworkDTO" - } - } - } - }, - "204": { - "description": "No Content" - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - } - } - }, - "/api/security-controls": { - "get": { - "tags": [ - "security-control-resource" - ], - "summary": "getAllSecurityControls", - "operationId": "getAllSecurityControlsUsingGET", - "parameters": [ - { - "name": "code.contains", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "code.doesNotContain", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "code.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "code.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "code.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "code.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "code.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "description.contains", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "description.doesNotContain", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "description.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "description.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "description.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "description.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "description.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "distinct", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "guidance.contains", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "guidance.doesNotContain", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "guidance.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "guidance.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "guidance.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "guidance.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "guidance.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "id.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.greaterThan", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.greaterThanOrEqual", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "integer", - "format": "int64" - } - } - }, - { - "name": "id.lessThan", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.lessThanOrEqual", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "integer", - "format": "int64" - } - } - }, - { - "name": "id.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "name.contains", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "name.doesNotContain", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "name.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "name.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "name.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "name.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "name.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "objective.contains", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "objective.doesNotContain", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "objective.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "objective.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "objective.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "objective.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "objective.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "riskReductionWeight.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "number", - "format": "float" - } - }, - { - "name": "riskReductionWeight.greaterThan", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "number", - "format": "float" - } - }, - { - "name": "riskReductionWeight.greaterThanOrEqual", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "number", - "format": "float" - } - }, - { - "name": "riskReductionWeight.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "number" - } - } - }, - { - "name": "riskReductionWeight.lessThan", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "number", - "format": "float" - } - }, - { - "name": "riskReductionWeight.lessThanOrEqual", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "number", - "format": "float" - } - }, - { - "name": "riskReductionWeight.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "number", - "format": "float" - } - }, - { - "name": "riskReductionWeight.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "number" - } - } - }, - { - "name": "riskReductionWeight.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "securityControlCategoryId.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "securityControlCategoryId.greaterThan", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "securityControlCategoryId.greaterThanOrEqual", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "securityControlCategoryId.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "integer", - "format": "int64" - } - } - }, - { - "name": "securityControlCategoryId.lessThan", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "securityControlCategoryId.lessThanOrEqual", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "securityControlCategoryId.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "securityControlCategoryId.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "integer", - "format": "int64" - } - } - }, - { - "name": "securityControlCategoryId.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "similarControlsId.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "similarControlsId.greaterThan", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "similarControlsId.greaterThanOrEqual", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "similarControlsId.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "integer", - "format": "int64" - } - } - }, - { - "name": "similarControlsId.lessThan", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "similarControlsId.lessThanOrEqual", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "similarControlsId.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "similarControlsId.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "integer", - "format": "int64" - } - } - }, - { - "name": "similarControlsId.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/SecurityControlDTO" - } - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - }, - "404": { - "description": "Not Found" - } - } - }, - "post": { - "tags": [ - "security-control-resource" - ], - "summary": "createSecurityControl", - "operationId": "createSecurityControlUsingPOST", - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/SecurityControlDTO" - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/SecurityControlDTO" - } - } - } - }, - "201": { - "description": "Created" - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - }, - "404": { - "description": "Not Found" - } - } - } - }, - "/api/security-controls/count": { - "get": { - "tags": [ - "security-control-resource" - ], - "summary": "countSecurityControls", - "operationId": "countSecurityControlsUsingGET", - "parameters": [ - { - "name": "code.contains", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "code.doesNotContain", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "code.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "code.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "code.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "code.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "code.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "description.contains", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "description.doesNotContain", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "description.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "description.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "description.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "description.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "description.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "distinct", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "guidance.contains", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "guidance.doesNotContain", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "guidance.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "guidance.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "guidance.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "guidance.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "guidance.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "id.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.greaterThan", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.greaterThanOrEqual", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "integer", - "format": "int64" - } - } - }, - { - "name": "id.lessThan", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.lessThanOrEqual", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "integer", - "format": "int64" - } - } - }, - { - "name": "id.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "name.contains", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "name.doesNotContain", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "name.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "name.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "name.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "name.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "name.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "objective.contains", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "objective.doesNotContain", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "objective.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "objective.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "objective.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "objective.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "objective.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "riskReductionWeight.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "number", - "format": "float" - } - }, - { - "name": "riskReductionWeight.greaterThan", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "number", - "format": "float" - } - }, - { - "name": "riskReductionWeight.greaterThanOrEqual", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "number", - "format": "float" - } - }, - { - "name": "riskReductionWeight.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "number" - } - } - }, - { - "name": "riskReductionWeight.lessThan", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "number", - "format": "float" - } - }, - { - "name": "riskReductionWeight.lessThanOrEqual", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "number", - "format": "float" - } - }, - { - "name": "riskReductionWeight.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "number", - "format": "float" - } - }, - { - "name": "riskReductionWeight.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "number" - } - } - }, - { - "name": "riskReductionWeight.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "securityControlCategoryId.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "securityControlCategoryId.greaterThan", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "securityControlCategoryId.greaterThanOrEqual", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "securityControlCategoryId.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "integer", - "format": "int64" - } - } - }, - { - "name": "securityControlCategoryId.lessThan", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "securityControlCategoryId.lessThanOrEqual", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "securityControlCategoryId.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "securityControlCategoryId.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "integer", - "format": "int64" - } - } - }, - { - "name": "securityControlCategoryId.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "similarControlsId.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "similarControlsId.greaterThan", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "similarControlsId.greaterThanOrEqual", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "similarControlsId.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "integer", - "format": "int64" - } - } - }, - { - "name": "similarControlsId.lessThan", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "similarControlsId.lessThanOrEqual", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "similarControlsId.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "similarControlsId.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "integer", - "format": "int64" - } - } - }, - { - "name": "similarControlsId.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "type": "integer", - "format": "int64" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - }, - "404": { - "description": "Not Found" - } - } - } - }, - "/api/security-controls/{id}": { - "get": { - "tags": [ - "security-control-resource" - ], - "summary": "getSecurityControl", - "operationId": "getSecurityControlUsingGET", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int64" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/SecurityControlDTO" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - }, - "404": { - "description": "Not Found" - } - } - }, - "put": { - "tags": [ - "security-control-resource" - ], - "summary": "updateSecurityControl", - "operationId": "updateSecurityControlUsingPUT", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int64" - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/SecurityControlDTO" - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/SecurityControlDTO" - } - } - } - }, - "201": { - "description": "Created" - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - }, - "404": { - "description": "Not Found" - } - } - }, - "delete": { - "tags": [ - "security-control-resource" - ], - "summary": "deleteSecurityControl", - "operationId": "deleteSecurityControlUsingDELETE", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int64" - } - } - ], - "responses": { - "200": { - "description": "OK" - }, - "204": { - "description": "No Content" - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - } - }, - "patch": { - "tags": [ - "security-control-resource" - ], - "summary": "partialUpdateSecurityControl", - "operationId": "partialUpdateSecurityControlUsingPATCH", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int64" - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/SecurityControlDTO" - } - }, - "application/merge-patch+json": { - "schema": { - "$ref": "#/components/schemas/SecurityControlDTO" - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/SecurityControlDTO" - } - } - } - }, - "204": { - "description": "No Content" - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - } - } - }, - "/api/security-metrics": { - "get": { - "tags": [ - "security-metric-resource" - ], - "summary": "getAllSecurityMetrics", - "operationId": "getAllSecurityMetricsUsingGET", - "parameters": [ - { - "name": "category.contains", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "category.doesNotContain", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "category.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "category.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "category.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "category.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "category.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "description.contains", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "description.doesNotContain", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "description.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "description.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "description.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "description.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "description.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "distinct", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "id.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.greaterThan", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.greaterThanOrEqual", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "integer", - "format": "int64" - } - } - }, - { - "name": "id.lessThan", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.lessThanOrEqual", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "integer", - "format": "int64" - } - } - }, - { - "name": "id.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "interval.contains", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "interval.doesNotContain", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "interval.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "interval.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "interval.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "interval.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "interval.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "metricId.contains", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "metricId.doesNotContain", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "metricId.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "metricId.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "metricId.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "metricId.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "metricId.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "name.contains", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "name.doesNotContain", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "name.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "name.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "name.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "name.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "name.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "operator.contains", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "operator.doesNotContain", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "operator.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "operator.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "operator.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "operator.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "operator.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "referenceTomId.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "referenceTomId.greaterThan", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "referenceTomId.greaterThanOrEqual", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "referenceTomId.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "integer", - "format": "int64" - } - } - }, - { - "name": "referenceTomId.lessThan", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "referenceTomId.lessThanOrEqual", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "referenceTomId.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "referenceTomId.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "integer", - "format": "int64" - } - } - }, - { - "name": "referenceTomId.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "resourceTypeId.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "resourceTypeId.greaterThan", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "resourceTypeId.greaterThanOrEqual", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "resourceTypeId.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "integer", - "format": "int64" - } - } - }, - { - "name": "resourceTypeId.lessThan", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "resourceTypeId.lessThanOrEqual", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "resourceTypeId.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "resourceTypeId.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "integer", - "format": "int64" - } - } - }, - { - "name": "resourceTypeId.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "scale.contains", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "scale.doesNotContain", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "scale.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "scale.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "scale.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "scale.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "scale.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "source.contains", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "source.doesNotContain", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "source.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "source.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "source.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "source.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "source.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "targetResourceType.contains", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "targetResourceType.doesNotContain", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "targetResourceType.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "targetResourceType.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "targetResourceType.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "targetResourceType.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "targetResourceType.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "targetValue.contains", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "targetValue.doesNotContain", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "targetValue.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "targetValue.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "targetValue.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "targetValue.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "targetValue.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "targetValueDatatype.contains", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "targetValueDatatype.doesNotContain", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "targetValueDatatype.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "targetValueDatatype.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "targetValueDatatype.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "targetValueDatatype.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "targetValueDatatype.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "tomId.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "tomId.greaterThan", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "tomId.greaterThanOrEqual", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "tomId.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "integer", - "format": "int64" - } - } - }, - { - "name": "tomId.lessThan", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "tomId.lessThanOrEqual", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "tomId.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "tomId.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "integer", - "format": "int64" - } - } - }, - { - "name": "tomId.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/SecurityMetricDTO" - } - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - }, - "404": { - "description": "Not Found" - } - } - }, - "post": { - "tags": [ - "security-metric-resource" - ], - "summary": "createSecurityMetric", - "operationId": "createSecurityMetricUsingPOST", - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/SecurityMetricDTO" - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/SecurityMetricDTO" - } - } - } - }, - "201": { - "description": "Created" - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - }, - "404": { - "description": "Not Found" - } - } - } - }, - "/api/security-metrics/count": { - "get": { - "tags": [ - "security-metric-resource" - ], - "summary": "countSecurityMetrics", - "operationId": "countSecurityMetricsUsingGET", - "parameters": [ - { - "name": "category.contains", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "category.doesNotContain", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "category.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "category.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "category.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "category.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "category.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "description.contains", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "description.doesNotContain", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "description.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "description.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "description.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "description.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "description.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "distinct", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "id.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.greaterThan", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.greaterThanOrEqual", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "integer", - "format": "int64" - } - } - }, - { - "name": "id.lessThan", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.lessThanOrEqual", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "integer", - "format": "int64" - } - } - }, - { - "name": "id.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "interval.contains", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "interval.doesNotContain", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "interval.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "interval.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "interval.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "interval.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "interval.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "metricId.contains", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "metricId.doesNotContain", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "metricId.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "metricId.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "metricId.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "metricId.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "metricId.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "name.contains", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "name.doesNotContain", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "name.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "name.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "name.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "name.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "name.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "operator.contains", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "operator.doesNotContain", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "operator.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "operator.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "operator.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "operator.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "operator.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "referenceTomId.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "referenceTomId.greaterThan", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "referenceTomId.greaterThanOrEqual", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "referenceTomId.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "integer", - "format": "int64" - } - } - }, - { - "name": "referenceTomId.lessThan", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "referenceTomId.lessThanOrEqual", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "referenceTomId.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "referenceTomId.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "integer", - "format": "int64" - } - } - }, - { - "name": "referenceTomId.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "resourceTypeId.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "resourceTypeId.greaterThan", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "resourceTypeId.greaterThanOrEqual", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "resourceTypeId.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "integer", - "format": "int64" - } - } - }, - { - "name": "resourceTypeId.lessThan", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "resourceTypeId.lessThanOrEqual", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "resourceTypeId.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "resourceTypeId.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "integer", - "format": "int64" - } - } - }, - { - "name": "resourceTypeId.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "scale.contains", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "scale.doesNotContain", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "scale.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "scale.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "scale.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "scale.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "scale.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "source.contains", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "source.doesNotContain", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "source.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "source.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "source.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "source.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "source.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "targetResourceType.contains", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "targetResourceType.doesNotContain", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "targetResourceType.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "targetResourceType.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "targetResourceType.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "targetResourceType.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "targetResourceType.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "targetValue.contains", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "targetValue.doesNotContain", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "targetValue.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "targetValue.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "targetValue.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "targetValue.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "targetValue.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "targetValueDatatype.contains", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "targetValueDatatype.doesNotContain", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "targetValueDatatype.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "targetValueDatatype.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "targetValueDatatype.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "targetValueDatatype.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "targetValueDatatype.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "tomId.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "tomId.greaterThan", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "tomId.greaterThanOrEqual", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "tomId.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "integer", - "format": "int64" - } - } - }, - { - "name": "tomId.lessThan", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "tomId.lessThanOrEqual", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "tomId.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "tomId.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "integer", - "format": "int64" - } - } - }, - { - "name": "tomId.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "type": "integer", - "format": "int64" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - }, - "404": { - "description": "Not Found" - } - } - } - }, - "/api/security-metrics/{id}": { - "get": { - "tags": [ - "security-metric-resource" - ], - "summary": "getSecurityMetric", - "operationId": "getSecurityMetricUsingGET", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int64" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/SecurityMetricDTO" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - }, - "404": { - "description": "Not Found" - } - } - }, - "put": { - "tags": [ - "security-metric-resource" - ], - "summary": "updateSecurityMetric", - "operationId": "updateSecurityMetricUsingPUT", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int64" - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/SecurityMetricDTO" - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/SecurityMetricDTO" - } - } - } - }, - "201": { - "description": "Created" - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - }, - "404": { - "description": "Not Found" - } - } - }, - "delete": { - "tags": [ - "security-metric-resource" - ], - "summary": "deleteSecurityMetric", - "operationId": "deleteSecurityMetricUsingDELETE", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int64" - } - } - ], - "responses": { - "200": { - "description": "OK" - }, - "204": { - "description": "No Content" - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - } - }, - "patch": { - "tags": [ - "security-metric-resource" - ], - "summary": "partialUpdateSecurityMetric", - "operationId": "partialUpdateSecurityMetricUsingPATCH", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int64" - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/SecurityMetricDTO" - } - }, - "application/merge-patch+json": { - "schema": { - "$ref": "#/components/schemas/SecurityMetricDTO" - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/SecurityMetricDTO" - } - } - } - }, - "204": { - "description": "No Content" - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - } - } - }, - "/api/similar-controls": { - "get": { - "tags": [ - "similar-control-resource" - ], - "summary": "getAllSimilarControls", - "operationId": "getAllSimilarControlsUsingGET", - "parameters": [ - { - "name": "code.contains", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "code.doesNotContain", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "code.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "code.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "code.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "code.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "code.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "distinct", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "id.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.greaterThan", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.greaterThanOrEqual", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "integer", - "format": "int64" - } - } - }, - { - "name": "id.lessThan", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.lessThanOrEqual", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "integer", - "format": "int64" - } - } - }, - { - "name": "id.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "name.contains", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "name.doesNotContain", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "name.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "name.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "name.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "name.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "name.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "securityControlFrameworkName.contains", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "securityControlFrameworkName.doesNotContain", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "securityControlFrameworkName.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "securityControlFrameworkName.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "securityControlFrameworkName.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "securityControlFrameworkName.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "securityControlFrameworkName.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "securityControlId.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "securityControlId.greaterThan", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "securityControlId.greaterThanOrEqual", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "securityControlId.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "integer", - "format": "int64" - } - } - }, - { - "name": "securityControlId.lessThan", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "securityControlId.lessThanOrEqual", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "securityControlId.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "securityControlId.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "integer", - "format": "int64" - } - } - }, - { - "name": "securityControlId.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/SimilarControlDTO" - } - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - }, - "404": { - "description": "Not Found" - } - } - }, - "post": { - "tags": [ - "similar-control-resource" - ], - "summary": "createSimilarControl", - "operationId": "createSimilarControlUsingPOST", - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/SimilarControlDTO" - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/SimilarControlDTO" - } - } - } - }, - "201": { - "description": "Created" - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - }, - "404": { - "description": "Not Found" - } - } - } - }, - "/api/similar-controls/count": { - "get": { - "tags": [ - "similar-control-resource" - ], - "summary": "countSimilarControls", - "operationId": "countSimilarControlsUsingGET", - "parameters": [ - { - "name": "code.contains", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "code.doesNotContain", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "code.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "code.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "code.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "code.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "code.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "distinct", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "id.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.greaterThan", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.greaterThanOrEqual", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "integer", - "format": "int64" - } - } - }, - { - "name": "id.lessThan", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.lessThanOrEqual", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "integer", - "format": "int64" - } - } - }, - { - "name": "id.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "name.contains", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "name.doesNotContain", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "name.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "name.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "name.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "name.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "name.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "securityControlFrameworkName.contains", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "securityControlFrameworkName.doesNotContain", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "securityControlFrameworkName.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "securityControlFrameworkName.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "securityControlFrameworkName.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "securityControlFrameworkName.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "securityControlFrameworkName.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "securityControlId.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "securityControlId.greaterThan", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "securityControlId.greaterThanOrEqual", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "securityControlId.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "integer", - "format": "int64" - } - } - }, - { - "name": "securityControlId.lessThan", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "securityControlId.lessThanOrEqual", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "securityControlId.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "securityControlId.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "integer", - "format": "int64" - } - } - }, - { - "name": "securityControlId.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "type": "integer", - "format": "int64" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - }, - "404": { - "description": "Not Found" - } - } - } - }, - "/api/similar-controls/{id}": { - "get": { - "tags": [ - "similar-control-resource" - ], - "summary": "getSimilarControl", - "operationId": "getSimilarControlUsingGET", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int64" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/SimilarControlDTO" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - }, - "404": { - "description": "Not Found" - } - } - }, - "put": { - "tags": [ - "similar-control-resource" - ], - "summary": "updateSimilarControl", - "operationId": "updateSimilarControlUsingPUT", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int64" - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/SimilarControlDTO" - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/SimilarControlDTO" - } - } - } - }, - "201": { - "description": "Created" - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - }, - "404": { - "description": "Not Found" - } - } - }, - "delete": { - "tags": [ - "similar-control-resource" - ], - "summary": "deleteSimilarControl", - "operationId": "deleteSimilarControlUsingDELETE", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int64" - } - } - ], - "responses": { - "200": { - "description": "OK" - }, - "204": { - "description": "No Content" - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - } - }, - "patch": { - "tags": [ - "similar-control-resource" - ], - "summary": "partialUpdateSimilarControl", - "operationId": "partialUpdateSimilarControlUsingPATCH", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int64" - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/SimilarControlDTO" - } - }, - "application/merge-patch+json": { - "schema": { - "$ref": "#/components/schemas/SimilarControlDTO" - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/SimilarControlDTO" - } - } - } - }, - "204": { - "description": "No Content" - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - } - } - }, - "/api/target-values": { - "get": { - "tags": [ - "target-value-resource" - ], - "summary": "getAllTargetValues", - "operationId": "getAllTargetValuesUsingGET", - "parameters": [ - { - "name": "distinct", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "id.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.greaterThan", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.greaterThanOrEqual", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "integer", - "format": "int64" - } - } - }, - { - "name": "id.lessThan", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.lessThanOrEqual", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "integer", - "format": "int64" - } - } - }, - { - "name": "id.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "value.contains", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "value.doesNotContain", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "value.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "value.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "value.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "value.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "value.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/TargetValueDTO" - } - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - }, - "404": { - "description": "Not Found" - } - } - }, - "post": { - "tags": [ - "target-value-resource" - ], - "summary": "createTargetValue", - "operationId": "createTargetValueUsingPOST", - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/TargetValueDTO" - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/TargetValueDTO" - } - } - } - }, - "201": { - "description": "Created" - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - }, - "404": { - "description": "Not Found" - } - } - } - }, - "/api/target-values/count": { - "get": { - "tags": [ - "target-value-resource" - ], - "summary": "countTargetValues", - "operationId": "countTargetValuesUsingGET", - "parameters": [ - { - "name": "distinct", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "id.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.greaterThan", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.greaterThanOrEqual", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "integer", - "format": "int64" - } - } - }, - { - "name": "id.lessThan", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.lessThanOrEqual", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "integer", - "format": "int64" - } - } - }, - { - "name": "id.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "value.contains", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "value.doesNotContain", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "value.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "value.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "value.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "value.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "value.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "type": "integer", - "format": "int64" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - }, - "404": { - "description": "Not Found" - } - } - } - }, - "/api/target-values/{id}": { - "get": { - "tags": [ - "target-value-resource" - ], - "summary": "getTargetValue", - "operationId": "getTargetValueUsingGET", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int64" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/TargetValueDTO" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - }, - "404": { - "description": "Not Found" - } - } - }, - "put": { - "tags": [ - "target-value-resource" - ], - "summary": "updateTargetValue", - "operationId": "updateTargetValueUsingPUT", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int64" - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/TargetValueDTO" - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/TargetValueDTO" - } - } - } - }, - "201": { - "description": "Created" - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - }, - "404": { - "description": "Not Found" - } - } - }, - "delete": { - "tags": [ - "target-value-resource" - ], - "summary": "deleteTargetValue", - "operationId": "deleteTargetValueUsingDELETE", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int64" - } - } - ], - "responses": { - "200": { - "description": "OK" - }, - "204": { - "description": "No Content" - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - } - }, - "patch": { - "tags": [ - "target-value-resource" - ], - "summary": "partialUpdateTargetValue", - "operationId": "partialUpdateTargetValueUsingPATCH", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int64" - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/TargetValueDTO" - } - }, - "application/merge-patch+json": { - "schema": { - "$ref": "#/components/schemas/TargetValueDTO" - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/TargetValueDTO" - } - } - } - }, - "204": { - "description": "No Content" - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - } - } - }, - "/api/toms": { - "get": { - "tags": [ - "tom-resource" - ], - "summary": "getAllToms", - "operationId": "getAllTomsUsingGET", - "parameters": [ - { - "name": "assuranceLevel.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string", - "enum": [ - "BASIC", - "HIGH", - "SUBSTANTIAL" - ] - } - }, - { - "name": "assuranceLevel.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - }, - "enum": [ - "BASIC", - "HIGH", - "SUBSTANTIAL" - ] - } - }, - { - "name": "assuranceLevel.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string", - "enum": [ - "BASIC", - "HIGH", - "SUBSTANTIAL" - ] - } - }, - { - "name": "assuranceLevel.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - }, - "enum": [ - "BASIC", - "HIGH", - "SUBSTANTIAL" - ] - } - }, - { - "name": "assuranceLevel.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "code.contains", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "code.doesNotContain", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "code.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "code.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "code.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "code.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "code.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "description.contains", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "description.doesNotContain", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "description.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "description.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "description.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "description.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "description.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "distinct", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "id.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.greaterThan", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.greaterThanOrEqual", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "integer", - "format": "int64" - } - } - }, - { - "name": "id.lessThan", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.lessThanOrEqual", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "integer", - "format": "int64" - } - } - }, - { - "name": "id.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "name.contains", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "name.doesNotContain", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "name.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "name.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "name.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "name.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "name.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "securityControlId.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "securityControlId.greaterThan", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "securityControlId.greaterThanOrEqual", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "securityControlId.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "integer", - "format": "int64" - } - } - }, - { - "name": "securityControlId.lessThan", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "securityControlId.lessThanOrEqual", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "securityControlId.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "securityControlId.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "integer", - "format": "int64" - } - } - }, - { - "name": "securityControlId.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "type.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string", - "enum": [ - "ORGANIZATIONAL", - "ORGANIZATIONAL_TECHNICAL", - "TECHNICAL" - ] - } - }, - { - "name": "type.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - }, - "enum": [ - "ORGANIZATIONAL", - "ORGANIZATIONAL_TECHNICAL", - "TECHNICAL" - ] - } - }, - { - "name": "type.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string", - "enum": [ - "ORGANIZATIONAL", - "ORGANIZATIONAL_TECHNICAL", - "TECHNICAL" - ] - } - }, - { - "name": "type.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - }, - "enum": [ - "ORGANIZATIONAL", - "ORGANIZATIONAL_TECHNICAL", - "TECHNICAL" - ] - } - }, - { - "name": "type.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/TomDTO" - } - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - }, - "404": { - "description": "Not Found" - } - } - }, - "post": { - "tags": [ - "tom-resource" - ], - "summary": "createTom", - "operationId": "createTomUsingPOST", - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/TomDTO" - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/TomDTO" - } - } - } - }, - "201": { - "description": "Created" - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - }, - "404": { - "description": "Not Found" - } - } - } - }, - "/api/toms/count": { - "get": { - "tags": [ - "tom-resource" - ], - "summary": "countToms", - "operationId": "countTomsUsingGET", - "parameters": [ - { - "name": "assuranceLevel.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string", - "enum": [ - "BASIC", - "HIGH", - "SUBSTANTIAL" - ] - } - }, - { - "name": "assuranceLevel.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - }, - "enum": [ - "BASIC", - "HIGH", - "SUBSTANTIAL" - ] - } - }, - { - "name": "assuranceLevel.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string", - "enum": [ - "BASIC", - "HIGH", - "SUBSTANTIAL" - ] - } - }, - { - "name": "assuranceLevel.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - }, - "enum": [ - "BASIC", - "HIGH", - "SUBSTANTIAL" - ] - } - }, - { - "name": "assuranceLevel.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "code.contains", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "code.doesNotContain", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "code.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "code.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "code.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "code.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "code.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "description.contains", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "description.doesNotContain", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "description.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "description.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "description.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "description.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "description.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "distinct", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "id.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.greaterThan", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.greaterThanOrEqual", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "integer", - "format": "int64" - } - } - }, - { - "name": "id.lessThan", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.lessThanOrEqual", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "integer", - "format": "int64" - } - } - }, - { - "name": "id.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "name.contains", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "name.doesNotContain", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "name.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "name.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "name.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string" - } - }, - { - "name": "name.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - }, - { - "name": "name.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "securityControlId.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "securityControlId.greaterThan", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "securityControlId.greaterThanOrEqual", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "securityControlId.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "integer", - "format": "int64" - } - } - }, - { - "name": "securityControlId.lessThan", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "securityControlId.lessThanOrEqual", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "securityControlId.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "securityControlId.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "integer", - "format": "int64" - } - } - }, - { - "name": "securityControlId.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - }, - { - "name": "type.equals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string", - "enum": [ - "ORGANIZATIONAL", - "ORGANIZATIONAL_TECHNICAL", - "TECHNICAL" - ] - } - }, - { - "name": "type.in", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - }, - "enum": [ - "ORGANIZATIONAL", - "ORGANIZATIONAL_TECHNICAL", - "TECHNICAL" - ] - } - }, - { - "name": "type.notEquals", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string", - "enum": [ - "ORGANIZATIONAL", - "ORGANIZATIONAL_TECHNICAL", - "TECHNICAL" - ] - } - }, - { - "name": "type.notIn", - "in": "query", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "items": { - "type": "string" - }, - "enum": [ - "ORGANIZATIONAL", - "ORGANIZATIONAL_TECHNICAL", - "TECHNICAL" - ] - } - }, - { - "name": "type.specified", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "boolean" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "type": "integer", - "format": "int64" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - }, - "404": { - "description": "Not Found" - } - } - } - }, - "/api/toms/framework-assurance/{frameworkName}": { - "get": { - "tags": [ - "tom-resource" - ], - "summary": "getTomsByFrameworkName", - "operationId": "getTomsByFrameworkNameUsingGET", - "parameters": [ - { - "name": "frameworkName", - "in": "path", - "description": "frameworkName", - "required": true, - "style": "simple", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/TomDTO" - } - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - }, - "404": { - "description": "Not Found" - } - } - } - }, - "/api/toms/framework-assurance/{frameworkName}/{assuranceLevel}": { - "get": { - "tags": [ - "tom-resource" - ], - "summary": "getTomsByFrameworkNameAndAssuranceLevel", - "operationId": "getTomsByFrameworkNameAndAssuranceLevelUsingGET", - "parameters": [ - { - "name": "frameworkName", - "in": "path", - "description": "frameworkName", - "required": true, - "style": "simple", - "schema": { - "type": "string" - } - }, - { - "name": "assuranceLevel", - "in": "path", - "description": "assuranceLevel", - "required": true, - "style": "simple", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/TomDTO" - } - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - }, - "404": { - "description": "Not Found" - } - } - } - }, - "/api/toms/{id}": { - "get": { - "tags": [ - "tom-resource" - ], - "summary": "getTom", - "operationId": "getTomUsingGET", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int64" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/TomDTO" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - }, - "404": { - "description": "Not Found" - } - } - }, - "put": { - "tags": [ - "tom-resource" - ], - "summary": "updateTom", - "operationId": "updateTomUsingPUT", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int64" - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/TomDTO" - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/TomDTO" - } - } - } - }, - "201": { - "description": "Created" - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - }, - "404": { - "description": "Not Found" - } - } - }, - "delete": { - "tags": [ - "tom-resource" - ], - "summary": "deleteTom", - "operationId": "deleteTomUsingDELETE", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int64" - } - } - ], - "responses": { - "200": { - "description": "OK" - }, - "204": { - "description": "No Content" - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - } - }, - "patch": { - "tags": [ - "tom-resource" - ], - "summary": "partialUpdateTom", - "operationId": "partialUpdateTomUsingPATCH", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int64" - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/TomDTO" - } - }, - "application/merge-patch+json": { - "schema": { - "$ref": "#/components/schemas/TomDTO" - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/TomDTO" - } - } - } - }, - "204": { - "description": "No Content" - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - } - } - } - }, - "/api/admin/users": { - "get": { - "tags": [ - "user-resource" - ], - "summary": "getAllUsers", - "operationId": "getAllUsersUsingGET", - "parameters": [ - { - "name": "page", - "in": "query", - "description": "Page number of the requested page", - "required": false, - "style": "form", - "allowReserved": true, - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "size", - "in": "query", - "description": "Size of a page", - "required": false, - "style": "form", - "allowReserved": true, - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "form", - "allowReserved": true, - "schema": { - "type": "array", - "items": { - "type": "string" - } - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/AdminUserDTO" - } - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - }, - "404": { - "description": "Not Found" - } - } - } - }, - "/api/admin/users/{login}": { - "get": { - "tags": [ - "user-resource" - ], - "summary": "getUser", - "operationId": "getUserUsingGET", - "parameters": [ - { - "name": "login", - "in": "path", - "description": "login", - "required": true, - "style": "simple", - "schema": { - "pattern": "^(?>[a-zA-Z0-9!$&*+=?^_`{|}~.-]+@[a-zA-Z0-9-]+(?:\\.[a-zA-Z0-9-]+)*)|(?>[_.@A-Za-z0-9-]+)$", - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/AdminUserDTO" - } - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - }, - "404": { - "description": "Not Found" - } - } - } - } - }, - "components": { - "schemas": { - "AdminUserDTO": { - "title": "AdminUserDTO", - "required": [ - "login" - ], - "type": "object", - "properties": { - "activated": { - "type": "boolean" - }, - "authorities": { - "uniqueItems": true, - "type": "array", - "items": { - "type": "string" - } - }, - "createdBy": { - "type": "string" - }, - "createdDate": { - "type": "string", - "format": "date-time" - }, - "email": { - "maxLength": 254, - "minLength": 5, - "type": "string" - }, - "firstName": { - "maxLength": 50, - "minLength": 0, - "type": "string" - }, - "id": { - "type": "string" - }, - "imageUrl": { - "maxLength": 256, - "minLength": 0, - "type": "string" - }, - "langKey": { - "maxLength": 10, - "minLength": 2, - "type": "string" - }, - "lastModifiedBy": { - "type": "string" - }, - "lastModifiedDate": { - "type": "string", - "format": "date-time" - }, - "lastName": { - "maxLength": 50, - "minLength": 0, - "type": "string" - }, - "login": { - "maxLength": 50, - "minLength": 1, - "pattern": "^(?>[a-zA-Z0-9!$&*+=?^_`{|}~.-]+@[a-zA-Z0-9-]+(?:\\.[a-zA-Z0-9-]+)*)|(?>[_.@A-Za-z0-9-]+)$", - "type": "string" - } - } - }, - "CloudServiceDTO": { - "title": "CloudServiceDTO", - "required": [ - "acronym", - "description", - "name", - "type" - ], - "type": "object", - "properties": { - "acronym": { - "type": "string", - "description": "acronym" - }, - "cloudServiceProvider": { - "$ref": "#/components/schemas/CloudServiceProviderDTO" - }, - "description": { - "type": "string", - "description": "description" - }, - "id": { - "type": "integer", - "format": "int64" - }, - "name": { - "type": "string", - "description": "name" - }, - "securityControlFramework": { - "$ref": "#/components/schemas/SecurityControlFrameworkDTO" - }, - "type": { - "type": "string", - "description": "type" - } - } - }, - "CloudServiceProviderDTO": { - "title": "CloudServiceProviderDTO", - "required": [ - "acronym", - "contactDetails", - "name" - ], - "type": "object", - "properties": { - "acronym": { - "type": "string", - "description": "acronym" - }, - "contactDetails": { - "type": "string", - "description": "contactDetails" - }, - "id": { - "type": "integer", - "format": "int64" - }, - "name": { - "type": "string", - "description": "name" - } - } - }, - "ReferenceTomDTO": { - "title": "ReferenceTomDTO", - "required": [ - "referenceTomImpl" - ], - "type": "object", - "properties": { - "id": { - "type": "integer", - "format": "int64" - }, - "referenceTomImpl": { - "type": "string", - "description": "name" - }, - "tom": { - "$ref": "#/components/schemas/TomDTO" - } - }, - "description": "ReferenceTom entity.\n\n@author Diego Rosado" - }, - "ResourceDTO": { - "title": "ResourceDTO", - "required": [ - "acronym", - "name" - ], - "type": "object", - "properties": { - "acronym": { - "type": "string", - "description": "acronym" - }, - "availabilityRisk": { - "type": "string", - "description": "availabilityRisk" - }, - "cloudService": { - "$ref": "#/components/schemas/CloudServiceDTO" - }, - "confidentialityRisk": { - "type": "string", - "description": "confidentialityRisk" - }, - "id": { - "type": "integer", - "format": "int64" - }, - "integrityRisk": { - "type": "string", - "description": "integrityRisk" - }, - "name": { - "type": "string", - "description": "name" - }, - "resourceType": { - "$ref": "#/components/schemas/ResourceTypeDTO" - }, - "targetValue": { - "$ref": "#/components/schemas/TargetValueDTO" - } - }, - "description": "Resource entity.\n\n@author Diego Rosado" - }, - "ResourceTypeDTO": { - "title": "ResourceTypeDTO", - "required": [ - "name", - "ontologyTerm" - ], - "type": "object", - "properties": { - "id": { - "type": "integer", - "format": "int64" - }, - "name": { - "type": "string", - "description": "name" - }, - "ontologyTerm": { - "type": "string", - "description": "ontologyTerm" - } - }, - "description": "ResourceType entity.\n\n@author Diego Rosado" - }, - "SecurityControlCategoryDTO": { - "title": "SecurityControlCategoryDTO", - "required": [ - "code", - "description", - "name" - ], - "type": "object", - "properties": { - "code": { - "type": "string", - "description": "code" - }, - "description": { - "type": "string", - "description": "description" - }, - "id": { - "type": "integer", - "format": "int64" - }, - "name": { - "type": "string", - "description": "name" - }, - "securityControlFramework": { - "$ref": "#/components/schemas/SecurityControlFrameworkDTO" - } - }, - "description": "SecurityControlCategory entity.\n\n@author Diego Rosado" - }, - "SecurityControlDTO": { - "title": "SecurityControlDTO", - "required": [ - "code", - "description", - "guidance", - "name", - "objective", - "riskReductionWeight" - ], - "type": "object", - "properties": { - "code": { - "type": "string", - "description": "code" - }, - "description": { - "type": "string", - "description": "description" - }, - "guidance": { - "type": "string", - "description": "guidance" - }, - "id": { - "type": "integer", - "format": "int64" - }, - "name": { - "type": "string", - "description": "name" - }, - "objective": { - "type": "string", - "description": "objective" - }, - "riskReductionWeight": { - "type": "number", - "description": "riskReductionWeight", - "format": "float" - }, - "securityControlCategory": { - "$ref": "#/components/schemas/SecurityControlCategoryDTO" - } - }, - "description": "SecurityControl entity.\n\n@author Diego Rosado" - }, - "SecurityControlFrameworkDTO": { - "title": "SecurityControlFrameworkDTO", - "required": [ - "description", - "name", - "version" - ], - "type": "object", - "properties": { - "description": { - "type": "string", - "description": "description" - }, - "id": { - "type": "integer", - "format": "int64" - }, - "name": { - "type": "string", - "description": "name" - }, - "version": { - "type": "string", - "description": "version" - } - }, - "description": "SecurityControlFramework entity.\n\n@author Diego Rosado" - }, - "SecurityMetricDTO": { - "title": "SecurityMetricDTO", - "required": [ - "category", - "description", - "interval", - "name", - "operator", - "scale", - "source", - "targetValue", - "targetValueDatatype" - ], - "type": "object", - "properties": { - "category": { - "type": "string", - "description": "category" - }, - "description": { - "type": "string", - "description": "description" - }, - "id": { - "type": "integer", - "format": "int64" - }, - "interval": { - "type": "string", - "description": "interval" - }, - "metricId": { - "type": "string" - }, - "name": { - "type": "string", - "description": "name" - }, - "operator": { - "type": "string", - "description": "operator" - }, - "referenceTom": { - "$ref": "#/components/schemas/ReferenceTomDTO" - }, - "resourceType": { - "$ref": "#/components/schemas/ResourceTypeDTO" - }, - "scale": { - "type": "string", - "description": "scale" - }, - "source": { - "type": "string", - "description": "source" - }, - "targetResourceType": { - "type": "string", - "description": "targetResourceType pendiente de sacar a entidad TargetResourceType?" - }, - "targetValue": { - "type": "string" - }, - "targetValueDatatype": { - "type": "string", - "description": "targetValueDatatype pendiente de estudiar" - }, - "tom": { - "$ref": "#/components/schemas/TomDTO" - } - }, - "description": "SecurityMetric entity.\n\n@author Diego Rosado" - }, - "SimilarControlDTO": { - "title": "SimilarControlDTO", - "required": [ - "code", - "name", - "securityControlFrameworkName" - ], - "type": "object", - "properties": { - "code": { - "type": "string", - "description": "code" - }, - "id": { - "type": "integer", - "format": "int64" - }, - "name": { - "type": "string", - "description": "name" - }, - "securityControl": { - "$ref": "#/components/schemas/SecurityControlDTO" - }, - "securityControlFrameworkName": { - "type": "string", - "description": "securityControlFrameworkName" - } - }, - "description": "SimilarControl entity.\n\n@author Diego Rosado" - }, - "TargetValueDTO": { - "title": "TargetValueDTO", - "required": [ - "value" - ], - "type": "object", - "properties": { - "id": { - "type": "integer", - "format": "int64" - }, - "value": { - "type": "string", - "description": "value" - } - }, - "description": "TargetValue entity.\n\n@author Diego Rosado" - }, - "TomDTO": { - "title": "TomDTO", - "required": [ - "code", - "description", - "name", - "type" - ], - "type": "object", - "properties": { - "assuranceLevel": { - "type": "string", - "description": "assuranceLevel", - "enum": [ - "BASIC", - "HIGH", - "SUBSTANTIAL" - ] - }, - "code": { - "type": "string", - "description": "code" - }, - "description": { - "type": "string", - "description": "description" - }, - "id": { - "type": "integer", - "format": "int64" - }, - "name": { - "type": "string", - "description": "name" - }, - "securityControl": { - "$ref": "#/components/schemas/SecurityControlDTO" - }, - "type": { - "type": "string", - "description": "type", - "enum": [ - "ORGANIZATIONAL", - "ORGANIZATIONAL_TECHNICAL", - "TECHNICAL" - ] - } - }, - "description": "Tom entity.\n\n@author Diego Rosado" - }, - "UserDTO": { - "title": "UserDTO", - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "login": { - "type": "string" - } - } - } - } - } -} +{"openapi":"3.0.3","info":{"title":"cocBackend API","description":"cocBackend API documentation","contact":{},"license":{"name":"unlicensed"},"version":"0.0.1"},"servers":[{"url":"/services/cocbackend","description":"added by global filter"}],"tags":[{"name":"audit-log-resource","description":"Audit Log Resource"},{"name":"cloud-service-provider-resource","description":"Cloud Service Provider Resource"},{"name":"cloud-service-resource","description":"Cloud Service Resource"},{"name":"public-user-resource","description":"Public User Resource"},{"name":"question-answer-resource","description":"Question Answer Resource"},{"name":"question-assurance-level-resource","description":"Question Assurance Level Resource"},{"name":"question-resource","description":"Question Resource"},{"name":"questionnaire-non-conformity-resource","description":"Questionnaire Non Conformity Resource"},{"name":"questionnaire-resource","description":"Questionnaire Resource"},{"name":"reference-tom-resource","description":"Reference Tom Resource"},{"name":"resource-resource","description":"Resource Resource"},{"name":"resource-type-resource","description":"Resource Type Resource"},{"name":"security-control-category-resource","description":"Security Control Category Resource"},{"name":"security-control-framework-resource","description":"Security Control Framework Resource"},{"name":"security-control-resource","description":"Security Control Resource"},{"name":"security-metric-resource","description":"Security Metric Resource"},{"name":"similar-control-resource","description":"Similar Control Resource"},{"name":"target-value-resource","description":"Target Value Resource"},{"name":"tom-resource","description":"Tom Resource"},{"name":"user-resource","description":"User Resource"}],"paths":{"/api/audit-logs":{"get":{"tags":["audit-log-resource"],"summary":"getAllAuditLogs","operationId":"getAllAuditLogsUsingGET","responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/AuditLogDTO"}}}}},"401":{"description":"Unauthorized"},"403":{"description":"Forbidden"},"404":{"description":"Not Found"}}},"post":{"tags":["audit-log-resource"],"summary":"createAuditLogDTO","operationId":"createAuditLogDTOUsingPOST","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/AuditLogDTO"}}}},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/AuditLogDTO"}}}},"201":{"description":"Created"},"401":{"description":"Unauthorized"},"403":{"description":"Forbidden"},"404":{"description":"Not Found"}}}},"/api/audit-logs/{id}":{"get":{"tags":["audit-log-resource"],"summary":"getAuditLog","operationId":"getAuditLogUsingGET","parameters":[{"name":"id","in":"path","description":"id","required":true,"style":"simple","schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/AuditLogDTO"}}}},"401":{"description":"Unauthorized"},"403":{"description":"Forbidden"},"404":{"description":"Not Found"}}}},"/api/cloud-service-providers":{"get":{"tags":["cloud-service-provider-resource"],"summary":"getAllCloudServiceProviders","operationId":"getAllCloudServiceProvidersUsingGET","parameters":[{"name":"acronym.contains","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"acronym.doesNotContain","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"acronym.equals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"acronym.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"acronym.notEquals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"acronym.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"acronym.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"cloudServiceId.equals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"cloudServiceId.greaterThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"cloudServiceId.greaterThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"cloudServiceId.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"cloudServiceId.lessThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"cloudServiceId.lessThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"cloudServiceId.notEquals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"cloudServiceId.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"cloudServiceId.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"contactDetails.contains","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"contactDetails.doesNotContain","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"contactDetails.equals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"contactDetails.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"contactDetails.notEquals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"contactDetails.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"contactDetails.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"distinct","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"id.equals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.greaterThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.greaterThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"id.lessThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.lessThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.notEquals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"id.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"name.contains","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"name.doesNotContain","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"name.equals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"name.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"name.notEquals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"name.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"name.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/CloudServiceProviderDTO"}}}}},"401":{"description":"Unauthorized"},"403":{"description":"Forbidden"},"404":{"description":"Not Found"}}},"post":{"tags":["cloud-service-provider-resource"],"summary":"createCloudServiceProvider","operationId":"createCloudServiceProviderUsingPOST","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/CloudServiceProviderDTO"}}}},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/CloudServiceProviderDTO"}}}},"201":{"description":"Created"},"401":{"description":"Unauthorized"},"403":{"description":"Forbidden"},"404":{"description":"Not Found"}}}},"/api/cloud-service-providers/count":{"get":{"tags":["cloud-service-provider-resource"],"summary":"countCloudServiceProviders","operationId":"countCloudServiceProvidersUsingGET","parameters":[{"name":"acronym.contains","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"acronym.doesNotContain","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"acronym.equals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"acronym.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"acronym.notEquals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"acronym.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"acronym.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"cloudServiceId.equals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"cloudServiceId.greaterThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"cloudServiceId.greaterThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"cloudServiceId.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"cloudServiceId.lessThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"cloudServiceId.lessThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"cloudServiceId.notEquals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"cloudServiceId.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"cloudServiceId.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"contactDetails.contains","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"contactDetails.doesNotContain","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"contactDetails.equals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"contactDetails.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"contactDetails.notEquals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"contactDetails.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"contactDetails.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"distinct","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"id.equals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.greaterThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.greaterThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"id.lessThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.lessThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.notEquals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"id.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"name.contains","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"name.doesNotContain","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"name.equals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"name.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"name.notEquals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"name.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"name.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"integer","format":"int64"}}}},"401":{"description":"Unauthorized"},"403":{"description":"Forbidden"},"404":{"description":"Not Found"}}}},"/api/cloud-service-providers/{id}":{"get":{"tags":["cloud-service-provider-resource"],"summary":"getCloudServiceProvider","operationId":"getCloudServiceProviderUsingGET","parameters":[{"name":"id","in":"path","description":"id","required":true,"style":"simple","schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/CloudServiceProviderDTO"}}}},"401":{"description":"Unauthorized"},"403":{"description":"Forbidden"},"404":{"description":"Not Found"}}},"put":{"tags":["cloud-service-provider-resource"],"summary":"updateCloudServiceProvider","operationId":"updateCloudServiceProviderUsingPUT","parameters":[{"name":"id","in":"path","description":"id","required":true,"style":"simple","schema":{"type":"integer","format":"int64"}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/CloudServiceProviderDTO"}}}},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/CloudServiceProviderDTO"}}}},"201":{"description":"Created"},"401":{"description":"Unauthorized"},"403":{"description":"Forbidden"},"404":{"description":"Not Found"}}},"delete":{"tags":["cloud-service-provider-resource"],"summary":"deleteCloudServiceProvider","operationId":"deleteCloudServiceProviderUsingDELETE","parameters":[{"name":"id","in":"path","description":"id","required":true,"style":"simple","schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"OK"},"204":{"description":"No Content"},"401":{"description":"Unauthorized"},"403":{"description":"Forbidden"}}},"patch":{"tags":["cloud-service-provider-resource"],"summary":"partialUpdateCloudServiceProvider","operationId":"partialUpdateCloudServiceProviderUsingPATCH","parameters":[{"name":"id","in":"path","description":"id","required":true,"style":"simple","schema":{"type":"integer","format":"int64"}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/CloudServiceProviderDTO"}},"application/merge-patch+json":{"schema":{"$ref":"#/components/schemas/CloudServiceProviderDTO"}}}},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/CloudServiceProviderDTO"}}}},"204":{"description":"No Content"},"401":{"description":"Unauthorized"},"403":{"description":"Forbidden"}}}},"/api/cloud-services":{"get":{"tags":["cloud-service-resource"],"summary":"getAllCloudServices","operationId":"getAllCloudServicesUsingGET","parameters":[{"name":"acronym.contains","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"acronym.doesNotContain","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"acronym.equals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"acronym.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"acronym.notEquals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"acronym.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"acronym.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"cloudServiceProviderId.equals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"cloudServiceProviderId.greaterThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"cloudServiceProviderId.greaterThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"cloudServiceProviderId.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"cloudServiceProviderId.lessThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"cloudServiceProviderId.lessThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"cloudServiceProviderId.notEquals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"cloudServiceProviderId.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"cloudServiceProviderId.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"description.contains","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"description.doesNotContain","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"description.equals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"description.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"description.notEquals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"description.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"description.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"distinct","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"id.equals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.greaterThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.greaterThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"id.lessThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.lessThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.notEquals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"id.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"name.contains","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"name.doesNotContain","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"name.equals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"name.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"name.notEquals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"name.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"name.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"resourceId.equals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"resourceId.greaterThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"resourceId.greaterThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"resourceId.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"resourceId.lessThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"resourceId.lessThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"resourceId.notEquals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"resourceId.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"resourceId.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"securityControlFrameworkId.equals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"securityControlFrameworkId.greaterThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"securityControlFrameworkId.greaterThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"securityControlFrameworkId.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"securityControlFrameworkId.lessThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"securityControlFrameworkId.lessThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"securityControlFrameworkId.notEquals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"securityControlFrameworkId.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"securityControlFrameworkId.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"type.contains","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"type.doesNotContain","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"type.equals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"type.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"type.notEquals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"type.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"type.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/CloudServiceDTO"}}}}},"401":{"description":"Unauthorized"},"403":{"description":"Forbidden"},"404":{"description":"Not Found"}}},"post":{"tags":["cloud-service-resource"],"summary":"createCloudService","operationId":"createCloudServiceUsingPOST","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/CloudServiceDTO"}}}},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/CloudServiceDTO"}}}},"201":{"description":"Created"},"401":{"description":"Unauthorized"},"403":{"description":"Forbidden"},"404":{"description":"Not Found"}}}},"/api/cloud-services/count":{"get":{"tags":["cloud-service-resource"],"summary":"countCloudServices","operationId":"countCloudServicesUsingGET","parameters":[{"name":"acronym.contains","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"acronym.doesNotContain","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"acronym.equals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"acronym.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"acronym.notEquals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"acronym.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"acronym.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"cloudServiceProviderId.equals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"cloudServiceProviderId.greaterThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"cloudServiceProviderId.greaterThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"cloudServiceProviderId.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"cloudServiceProviderId.lessThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"cloudServiceProviderId.lessThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"cloudServiceProviderId.notEquals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"cloudServiceProviderId.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"cloudServiceProviderId.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"description.contains","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"description.doesNotContain","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"description.equals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"description.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"description.notEquals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"description.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"description.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"distinct","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"id.equals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.greaterThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.greaterThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"id.lessThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.lessThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.notEquals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"id.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"name.contains","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"name.doesNotContain","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"name.equals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"name.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"name.notEquals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"name.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"name.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"resourceId.equals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"resourceId.greaterThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"resourceId.greaterThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"resourceId.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"resourceId.lessThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"resourceId.lessThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"resourceId.notEquals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"resourceId.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"resourceId.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"securityControlFrameworkId.equals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"securityControlFrameworkId.greaterThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"securityControlFrameworkId.greaterThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"securityControlFrameworkId.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"securityControlFrameworkId.lessThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"securityControlFrameworkId.lessThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"securityControlFrameworkId.notEquals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"securityControlFrameworkId.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"securityControlFrameworkId.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"type.contains","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"type.doesNotContain","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"type.equals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"type.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"type.notEquals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"type.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"type.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"integer","format":"int64"}}}},"401":{"description":"Unauthorized"},"403":{"description":"Forbidden"},"404":{"description":"Not Found"}}}},"/api/cloud-services/{id}":{"get":{"tags":["cloud-service-resource"],"summary":"getCloudService","operationId":"getCloudServiceUsingGET","parameters":[{"name":"id","in":"path","description":"id","required":true,"style":"simple","schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/CloudServiceDTO"}}}},"401":{"description":"Unauthorized"},"403":{"description":"Forbidden"},"404":{"description":"Not Found"}}},"put":{"tags":["cloud-service-resource"],"summary":"updateCloudService","operationId":"updateCloudServiceUsingPUT","parameters":[{"name":"id","in":"path","description":"id","required":true,"style":"simple","schema":{"type":"integer","format":"int64"}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/CloudServiceDTO"}}}},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/CloudServiceDTO"}}}},"201":{"description":"Created"},"401":{"description":"Unauthorized"},"403":{"description":"Forbidden"},"404":{"description":"Not Found"}}},"delete":{"tags":["cloud-service-resource"],"summary":"deleteCloudService","operationId":"deleteCloudServiceUsingDELETE","parameters":[{"name":"id","in":"path","description":"id","required":true,"style":"simple","schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"OK"},"204":{"description":"No Content"},"401":{"description":"Unauthorized"},"403":{"description":"Forbidden"}}},"patch":{"tags":["cloud-service-resource"],"summary":"partialUpdateCloudService","operationId":"partialUpdateCloudServiceUsingPATCH","parameters":[{"name":"id","in":"path","description":"id","required":true,"style":"simple","schema":{"type":"integer","format":"int64"}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/CloudServiceDTO"}},"application/merge-patch+json":{"schema":{"$ref":"#/components/schemas/CloudServiceDTO"}}}},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/CloudServiceDTO"}}}},"204":{"description":"No Content"},"401":{"description":"Unauthorized"},"403":{"description":"Forbidden"}}}},"/api/authorities":{"get":{"tags":["public-user-resource"],"summary":"getAuthorities","operationId":"getAuthoritiesUsingGET","responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"array","items":{"type":"string"}}}}},"401":{"description":"Unauthorized"},"403":{"description":"Forbidden"},"404":{"description":"Not Found"}}}},"/api/users":{"get":{"tags":["public-user-resource"],"summary":"getAllPublicUsers","operationId":"getAllPublicUsersUsingGET","parameters":[{"name":"page","in":"query","description":"Page number of the requested page","required":false,"style":"form","allowReserved":true,"schema":{"type":"integer","format":"int32"}},{"name":"size","in":"query","description":"Size of a page","required":false,"style":"form","allowReserved":true,"schema":{"type":"integer","format":"int32"}},{"name":"sort","in":"query","description":"Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.","required":false,"style":"form","allowReserved":true,"schema":{"type":"array","items":{"type":"string"}}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/UserDTO"}}}}},"401":{"description":"Unauthorized"},"403":{"description":"Forbidden"},"404":{"description":"Not Found"}}}},"/api/question-answers":{"get":{"tags":["question-answer-resource"],"summary":"getAllQuestionAnswers","operationId":"getAllQuestionAnswersUsingGET","parameters":[{"name":"answer.contains","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"answer.doesNotContain","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"answer.equals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"answer.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"answer.notEquals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"answer.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"answer.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"distinct","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"id.equals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.greaterThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.greaterThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"id.lessThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.lessThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.notEquals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"id.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"value.equals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int32"}},{"name":"value.greaterThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int32"}},{"name":"value.greaterThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int32"}},{"name":"value.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int32"}}},{"name":"value.lessThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int32"}},{"name":"value.lessThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int32"}},{"name":"value.notEquals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int32"}},{"name":"value.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int32"}}},{"name":"value.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"visible.equals","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"visible.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"boolean"}}},{"name":"visible.notEquals","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"visible.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"boolean"}}},{"name":"visible.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/QuestionAnswerDTO"}}}}},"401":{"description":"Unauthorized"},"403":{"description":"Forbidden"},"404":{"description":"Not Found"}}}},"/api/question-answers/count":{"get":{"tags":["question-answer-resource"],"summary":"countQuestionAnswers","operationId":"countQuestionAnswersUsingGET","parameters":[{"name":"answer.contains","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"answer.doesNotContain","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"answer.equals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"answer.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"answer.notEquals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"answer.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"answer.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"distinct","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"id.equals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.greaterThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.greaterThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"id.lessThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.lessThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.notEquals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"id.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"value.equals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int32"}},{"name":"value.greaterThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int32"}},{"name":"value.greaterThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int32"}},{"name":"value.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int32"}}},{"name":"value.lessThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int32"}},{"name":"value.lessThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int32"}},{"name":"value.notEquals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int32"}},{"name":"value.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int32"}}},{"name":"value.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"visible.equals","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"visible.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"boolean"}}},{"name":"visible.notEquals","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"visible.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"boolean"}}},{"name":"visible.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"integer","format":"int64"}}}},"401":{"description":"Unauthorized"},"403":{"description":"Forbidden"},"404":{"description":"Not Found"}}}},"/api/question-answers/{id}":{"get":{"tags":["question-answer-resource"],"summary":"getQuestionAnswer","operationId":"getQuestionAnswerUsingGET","parameters":[{"name":"id","in":"path","description":"id","required":true,"style":"simple","schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/QuestionAnswerDTO"}}}},"401":{"description":"Unauthorized"},"403":{"description":"Forbidden"},"404":{"description":"Not Found"}}}},"/api/question-assurance-levels":{"get":{"tags":["question-assurance-level-resource"],"summary":"getAllQuestionAssuranceLevels","operationId":"getAllQuestionAssuranceLevelsUsingGET","parameters":[{"name":"assuranceLevel.contains","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"assuranceLevel.doesNotContain","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"assuranceLevel.equals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"assuranceLevel.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"assuranceLevel.notEquals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"assuranceLevel.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"assuranceLevel.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"distinct","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"id.equals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.greaterThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.greaterThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"id.lessThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.lessThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.notEquals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"id.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/QuestionAssuranceLevelDTO"}}}}},"401":{"description":"Unauthorized"},"403":{"description":"Forbidden"},"404":{"description":"Not Found"}}}},"/api/question-assurance-levels/count":{"get":{"tags":["question-assurance-level-resource"],"summary":"countQuestionAssuranceLevels","operationId":"countQuestionAssuranceLevelsUsingGET","parameters":[{"name":"assuranceLevel.contains","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"assuranceLevel.doesNotContain","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"assuranceLevel.equals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"assuranceLevel.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"assuranceLevel.notEquals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"assuranceLevel.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"assuranceLevel.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"distinct","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"id.equals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.greaterThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.greaterThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"id.lessThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.lessThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.notEquals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"id.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"integer","format":"int64"}}}},"401":{"description":"Unauthorized"},"403":{"description":"Forbidden"},"404":{"description":"Not Found"}}}},"/api/question-assurance-levels/{id}":{"get":{"tags":["question-assurance-level-resource"],"summary":"getQuestionAssuranceLevel","operationId":"getQuestionAssuranceLevelUsingGET","parameters":[{"name":"id","in":"path","description":"id","required":true,"style":"simple","schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/QuestionAssuranceLevelDTO"}}}},"401":{"description":"Unauthorized"},"403":{"description":"Forbidden"},"404":{"description":"Not Found"}}}},"/api/questions":{"get":{"tags":["question-resource"],"summary":"getAllQuestions","operationId":"getAllQuestionsUsingGET","parameters":[{"name":"assuranceLevelId.equals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"assuranceLevelId.greaterThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"assuranceLevelId.greaterThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"assuranceLevelId.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"assuranceLevelId.lessThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"assuranceLevelId.lessThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"assuranceLevelId.notEquals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"assuranceLevelId.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"assuranceLevelId.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"code.contains","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"code.doesNotContain","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"code.equals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"code.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"code.notEquals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"code.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"code.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"controlId.equals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"controlId.greaterThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"controlId.greaterThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"controlId.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"controlId.lessThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"controlId.lessThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"controlId.notEquals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"controlId.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"controlId.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"defaultComment.contains","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"defaultComment.doesNotContain","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"defaultComment.equals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"defaultComment.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"defaultComment.notEquals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"defaultComment.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"defaultComment.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"defaultEvidence.contains","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"defaultEvidence.doesNotContain","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"defaultEvidence.equals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"defaultEvidence.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"defaultEvidence.notEquals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"defaultEvidence.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"defaultEvidence.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"distinct","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"frameworkId.equals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"frameworkId.greaterThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"frameworkId.greaterThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"frameworkId.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"frameworkId.lessThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"frameworkId.lessThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"frameworkId.notEquals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"frameworkId.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"frameworkId.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"id.equals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.greaterThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.greaterThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"id.lessThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.lessThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.notEquals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"id.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"question.contains","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"question.doesNotContain","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"question.equals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"question.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"question.notEquals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"question.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"question.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"tomId.equals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"tomId.greaterThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"tomId.greaterThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"tomId.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"tomId.lessThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"tomId.lessThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"tomId.notEquals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"tomId.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"tomId.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/QuestionDTO"}}}}},"401":{"description":"Unauthorized"},"403":{"description":"Forbidden"},"404":{"description":"Not Found"}}}},"/api/questions/count":{"get":{"tags":["question-resource"],"summary":"countQuestions","operationId":"countQuestionsUsingGET","parameters":[{"name":"assuranceLevelId.equals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"assuranceLevelId.greaterThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"assuranceLevelId.greaterThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"assuranceLevelId.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"assuranceLevelId.lessThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"assuranceLevelId.lessThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"assuranceLevelId.notEquals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"assuranceLevelId.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"assuranceLevelId.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"code.contains","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"code.doesNotContain","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"code.equals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"code.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"code.notEquals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"code.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"code.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"controlId.equals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"controlId.greaterThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"controlId.greaterThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"controlId.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"controlId.lessThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"controlId.lessThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"controlId.notEquals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"controlId.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"controlId.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"defaultComment.contains","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"defaultComment.doesNotContain","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"defaultComment.equals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"defaultComment.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"defaultComment.notEquals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"defaultComment.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"defaultComment.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"defaultEvidence.contains","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"defaultEvidence.doesNotContain","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"defaultEvidence.equals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"defaultEvidence.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"defaultEvidence.notEquals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"defaultEvidence.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"defaultEvidence.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"distinct","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"frameworkId.equals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"frameworkId.greaterThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"frameworkId.greaterThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"frameworkId.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"frameworkId.lessThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"frameworkId.lessThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"frameworkId.notEquals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"frameworkId.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"frameworkId.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"id.equals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.greaterThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.greaterThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"id.lessThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.lessThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.notEquals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"id.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"question.contains","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"question.doesNotContain","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"question.equals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"question.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"question.notEquals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"question.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"question.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"tomId.equals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"tomId.greaterThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"tomId.greaterThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"tomId.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"tomId.lessThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"tomId.lessThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"tomId.notEquals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"tomId.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"tomId.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"integer","format":"int64"}}}},"401":{"description":"Unauthorized"},"403":{"description":"Forbidden"},"404":{"description":"Not Found"}}}},"/api/questions/count-extended":{"get":{"tags":["question-resource"],"summary":"countQuestionsExtended","operationId":"countQuestionsExtendedUsingGET","responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"object","additionalProperties":{"type":"integer","format":"int32"}}}}},"401":{"description":"Unauthorized"},"403":{"description":"Forbidden"},"404":{"description":"Not Found"}}}},"/api/questions/{id}":{"get":{"tags":["question-resource"],"summary":"getQuestion","operationId":"getQuestionUsingGET","parameters":[{"name":"id","in":"path","description":"id","required":true,"style":"simple","schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/QuestionDTO"}}}},"401":{"description":"Unauthorized"},"403":{"description":"Forbidden"},"404":{"description":"Not Found"}}}},"/api/questionnaire-non-conformities":{"get":{"tags":["questionnaire-non-conformity-resource"],"summary":"getAllQuestionnaireNonConformities","operationId":"getAllQuestionnaireNonConformitiesUsingGET","parameters":[{"name":"comments.contains","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"comments.doesNotContain","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"comments.equals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"comments.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"comments.notEquals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"comments.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"comments.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"compliance.contains","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"compliance.doesNotContain","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"compliance.equals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"compliance.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"compliance.notEquals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"compliance.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"compliance.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"distinct","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"questionnaireName.contains","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"questionnaireName.doesNotContain","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"questionnaireName.equals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"questionnaireName.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"questionnaireName.notEquals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"questionnaireName.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"questionnaireName.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"tomId.equals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"tomId.greaterThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"tomId.greaterThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"tomId.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"tomId.lessThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"tomId.lessThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"tomId.notEquals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"tomId.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"tomId.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/QuestionnaireNonConformityDTO"}}}}},"401":{"description":"Unauthorized"},"403":{"description":"Forbidden"},"404":{"description":"Not Found"}}}},"/api/questionnaire-non-conformities/count":{"get":{"tags":["questionnaire-non-conformity-resource"],"summary":"countQuestionnaireNonConformities","operationId":"countQuestionnaireNonConformitiesUsingGET","parameters":[{"name":"comments.contains","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"comments.doesNotContain","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"comments.equals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"comments.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"comments.notEquals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"comments.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"comments.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"compliance.contains","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"compliance.doesNotContain","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"compliance.equals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"compliance.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"compliance.notEquals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"compliance.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"compliance.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"distinct","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"questionnaireName.contains","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"questionnaireName.doesNotContain","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"questionnaireName.equals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"questionnaireName.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"questionnaireName.notEquals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"questionnaireName.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"questionnaireName.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"tomId.equals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"tomId.greaterThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"tomId.greaterThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"tomId.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"tomId.lessThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"tomId.lessThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"tomId.notEquals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"tomId.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"tomId.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"integer","format":"int64"}}}},"401":{"description":"Unauthorized"},"403":{"description":"Forbidden"},"404":{"description":"Not Found"}}}},"/api/questionnaire-non-conformities/create":{"post":{"tags":["questionnaire-non-conformity-resource"],"summary":"createQuestionnaireNonConformity","operationId":"createQuestionnaireNonConformityUsingPOST","requestBody":{"content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/QuestionnaireNonConformity"}}}}},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/QuestionnaireNonConformity"}}}}},"201":{"description":"Created"},"401":{"description":"Unauthorized"},"403":{"description":"Forbidden"},"404":{"description":"Not Found"}}}},"/api/questionnaire-non-conformities/save":{"post":{"tags":["questionnaire-non-conformity-resource"],"summary":"saveQuestionnaireNonConformity","operationId":"saveQuestionnaireNonConformityUsingPOST","requestBody":{"content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/QuestionnaireNonConformity"}}}}},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/QuestionnaireNonConformity"}}}}},"201":{"description":"Created"},"401":{"description":"Unauthorized"},"403":{"description":"Forbidden"},"404":{"description":"Not Found"}}}},"/api/questionnaire-non-conformities/{questionnaireName}":{"get":{"tags":["questionnaire-non-conformity-resource"],"summary":"getQuestionnaireNonConformitiesByQuestionnaireName","operationId":"getQuestionnaireNonConformitiesByQuestionnaireNameUsingGET","parameters":[{"name":"questionnaireName","in":"path","description":"questionnaireName","required":true,"style":"simple","schema":{"type":"string"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/QuestionnaireNonConformityDTO"}}}}},"401":{"description":"Unauthorized"},"403":{"description":"Forbidden"},"404":{"description":"Not Found"}}}},"/api/questionnaires":{"get":{"tags":["questionnaire-resource"],"summary":"getAllQuestionnaires","operationId":"getAllQuestionnairesUsingGET","parameters":[{"name":"answerId.equals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"answerId.greaterThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"answerId.greaterThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"answerId.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"answerId.lessThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"answerId.lessThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"answerId.notEquals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"answerId.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"answerId.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"assuranceLevelId.equals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"assuranceLevelId.greaterThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"assuranceLevelId.greaterThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"assuranceLevelId.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"assuranceLevelId.lessThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"assuranceLevelId.lessThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"assuranceLevelId.notEquals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"assuranceLevelId.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"assuranceLevelId.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"comments.contains","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"comments.doesNotContain","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"comments.equals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"comments.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"comments.notEquals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"comments.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"comments.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"controlId.equals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"controlId.greaterThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"controlId.greaterThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"controlId.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"controlId.lessThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"controlId.lessThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"controlId.notEquals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"controlId.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"controlId.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"distinct","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"evidences.contains","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"evidences.doesNotContain","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"evidences.equals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"evidences.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"evidences.notEquals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"evidences.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"evidences.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"frameworkId.equals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"frameworkId.greaterThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"frameworkId.greaterThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"frameworkId.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"frameworkId.lessThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"frameworkId.lessThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"frameworkId.notEquals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"frameworkId.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"frameworkId.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"id.equals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.greaterThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.greaterThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"id.lessThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.lessThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.notEquals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"id.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"lastUpdate.equals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"lastUpdate.greaterThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"lastUpdate.greaterThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"lastUpdate.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"lastUpdate.lessThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"lastUpdate.lessThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"lastUpdate.notEquals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"lastUpdate.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"lastUpdate.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"name.contains","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"name.doesNotContain","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"name.equals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"name.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"name.notEquals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"name.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"name.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"questionId.equals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"questionId.greaterThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"questionId.greaterThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"questionId.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"questionId.lessThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"questionId.lessThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"questionId.notEquals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"questionId.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"questionId.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"tomId.equals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"tomId.greaterThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"tomId.greaterThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"tomId.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"tomId.lessThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"tomId.lessThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"tomId.notEquals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"tomId.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"tomId.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"userId.contains","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"userId.doesNotContain","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"userId.equals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"userId.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"userId.notEquals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"userId.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"userId.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/QuestionnaireDTO"}}}}},"401":{"description":"Unauthorized"},"403":{"description":"Forbidden"},"404":{"description":"Not Found"}}}},"/api/questionnaires/count":{"get":{"tags":["questionnaire-resource"],"summary":"countQuestionnaires","operationId":"countQuestionnairesUsingGET","parameters":[{"name":"answerId.equals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"answerId.greaterThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"answerId.greaterThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"answerId.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"answerId.lessThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"answerId.lessThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"answerId.notEquals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"answerId.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"answerId.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"assuranceLevelId.equals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"assuranceLevelId.greaterThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"assuranceLevelId.greaterThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"assuranceLevelId.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"assuranceLevelId.lessThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"assuranceLevelId.lessThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"assuranceLevelId.notEquals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"assuranceLevelId.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"assuranceLevelId.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"comments.contains","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"comments.doesNotContain","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"comments.equals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"comments.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"comments.notEquals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"comments.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"comments.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"controlId.equals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"controlId.greaterThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"controlId.greaterThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"controlId.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"controlId.lessThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"controlId.lessThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"controlId.notEquals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"controlId.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"controlId.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"distinct","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"evidences.contains","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"evidences.doesNotContain","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"evidences.equals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"evidences.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"evidences.notEquals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"evidences.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"evidences.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"frameworkId.equals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"frameworkId.greaterThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"frameworkId.greaterThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"frameworkId.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"frameworkId.lessThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"frameworkId.lessThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"frameworkId.notEquals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"frameworkId.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"frameworkId.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"id.equals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.greaterThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.greaterThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"id.lessThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.lessThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.notEquals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"id.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"lastUpdate.equals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"lastUpdate.greaterThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"lastUpdate.greaterThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"lastUpdate.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"lastUpdate.lessThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"lastUpdate.lessThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"lastUpdate.notEquals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"lastUpdate.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"lastUpdate.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"name.contains","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"name.doesNotContain","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"name.equals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"name.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"name.notEquals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"name.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"name.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"questionId.equals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"questionId.greaterThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"questionId.greaterThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"questionId.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"questionId.lessThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"questionId.lessThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"questionId.notEquals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"questionId.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"questionId.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"tomId.equals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"tomId.greaterThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"tomId.greaterThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"tomId.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"tomId.lessThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"tomId.lessThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"tomId.notEquals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"tomId.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"tomId.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"userId.contains","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"userId.doesNotContain","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"userId.equals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"userId.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"userId.notEquals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"userId.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"userId.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"integer","format":"int64"}}}},"401":{"description":"Unauthorized"},"403":{"description":"Forbidden"},"404":{"description":"Not Found"}}}},"/api/questionnaires/count-questions":{"get":{"tags":["questionnaire-resource"],"summary":"countQuestions","operationId":"countQuestionsUsingGET_1","responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/QuestionnaireQuestionsInfo"}}}},"401":{"description":"Unauthorized"},"403":{"description":"Forbidden"},"404":{"description":"Not Found"}}}},"/api/questionnaires/create":{"post":{"tags":["questionnaire-resource"],"summary":"createQuestionnaire","operationId":"createQuestionnaireUsingPOST","requestBody":{"content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/Questionnaire"}}}}},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/Questionnaire"}}}}},"201":{"description":"Created"},"401":{"description":"Unauthorized"},"403":{"description":"Forbidden"},"404":{"description":"Not Found"}}}},"/api/questionnaires/deleteByName":{"post":{"tags":["questionnaire-resource"],"summary":"deleteQuestionnaireByName","operationId":"deleteQuestionnaireByNameUsingPOST","requestBody":{"content":{"application/json":{"schema":{"type":"string"}}}},"responses":{"200":{"description":"OK"},"201":{"description":"Created"},"401":{"description":"Unauthorized"},"403":{"description":"Forbidden"},"404":{"description":"Not Found"}}}},"/api/questionnaires/report-pdf":{"post":{"tags":["questionnaire-resource"],"summary":"saveQuestionnaireReportAsPDF","operationId":"saveQuestionnaireReportAsPDFUsingPOST","requestBody":{"content":{"application/json":{"schema":{"type":"string"}}}},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"string","format":"byte"}}}},"201":{"description":"Created"},"401":{"description":"Unauthorized"},"403":{"description":"Forbidden"},"404":{"description":"Not Found"}}}},"/api/questionnaires/save":{"post":{"tags":["questionnaire-resource"],"summary":"saveQuestionnaire","operationId":"saveQuestionnaireUsingPOST","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/QuestionnaireWrapper"}}}},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/QuestionnaireWrapper"}}}},"201":{"description":"Created"},"401":{"description":"Unauthorized"},"403":{"description":"Forbidden"},"404":{"description":"Not Found"}}}},"/api/questionnaires/{id}":{"get":{"tags":["questionnaire-resource"],"summary":"getQuestionnaire","operationId":"getQuestionnaireUsingGET","parameters":[{"name":"id","in":"path","description":"id","required":true,"style":"simple","schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/QuestionnaireDTO"}}}},"401":{"description":"Unauthorized"},"403":{"description":"Forbidden"},"404":{"description":"Not Found"}}}},"/api/reference-toms":{"get":{"tags":["reference-tom-resource"],"summary":"getAllReferenceToms","operationId":"getAllReferenceTomsUsingGET","parameters":[{"name":"distinct","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"id.equals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.greaterThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.greaterThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"id.lessThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.lessThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.notEquals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"id.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"referenceTomImpl.contains","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"referenceTomImpl.doesNotContain","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"referenceTomImpl.equals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"referenceTomImpl.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"referenceTomImpl.notEquals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"referenceTomImpl.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"referenceTomImpl.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"tomId.equals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"tomId.greaterThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"tomId.greaterThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"tomId.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"tomId.lessThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"tomId.lessThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"tomId.notEquals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"tomId.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"tomId.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/ReferenceTomDTO"}}}}},"401":{"description":"Unauthorized"},"403":{"description":"Forbidden"},"404":{"description":"Not Found"}}}},"/api/reference-toms/count":{"get":{"tags":["reference-tom-resource"],"summary":"countReferenceToms","operationId":"countReferenceTomsUsingGET","parameters":[{"name":"distinct","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"id.equals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.greaterThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.greaterThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"id.lessThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.lessThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.notEquals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"id.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"referenceTomImpl.contains","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"referenceTomImpl.doesNotContain","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"referenceTomImpl.equals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"referenceTomImpl.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"referenceTomImpl.notEquals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"referenceTomImpl.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"referenceTomImpl.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"tomId.equals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"tomId.greaterThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"tomId.greaterThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"tomId.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"tomId.lessThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"tomId.lessThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"tomId.notEquals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"tomId.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"tomId.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"integer","format":"int64"}}}},"401":{"description":"Unauthorized"},"403":{"description":"Forbidden"},"404":{"description":"Not Found"}}}},"/api/reference-toms/{id}":{"get":{"tags":["reference-tom-resource"],"summary":"getReferenceTom","operationId":"getReferenceTomUsingGET","parameters":[{"name":"id","in":"path","description":"id","required":true,"style":"simple","schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ReferenceTomDTO"}}}},"401":{"description":"Unauthorized"},"403":{"description":"Forbidden"},"404":{"description":"Not Found"}}},"put":{"tags":["reference-tom-resource"],"summary":"updateReferenceTom","operationId":"updateReferenceTomUsingPUT","parameters":[{"name":"id","in":"path","description":"id","required":true,"style":"simple","schema":{"type":"integer","format":"int64"}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ReferenceTomDTO"}}}},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ReferenceTomDTO"}}}},"201":{"description":"Created"},"401":{"description":"Unauthorized"},"403":{"description":"Forbidden"},"404":{"description":"Not Found"}}},"patch":{"tags":["reference-tom-resource"],"summary":"partialUpdateReferenceTom","operationId":"partialUpdateReferenceTomUsingPATCH","parameters":[{"name":"id","in":"path","description":"id","required":true,"style":"simple","schema":{"type":"integer","format":"int64"}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ReferenceTomDTO"}},"application/merge-patch+json":{"schema":{"$ref":"#/components/schemas/ReferenceTomDTO"}}}},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ReferenceTomDTO"}}}},"204":{"description":"No Content"},"401":{"description":"Unauthorized"},"403":{"description":"Forbidden"}}}},"/api/resources":{"get":{"tags":["resource-resource"],"summary":"getAllResources","operationId":"getAllResourcesUsingGET","parameters":[{"name":"acronym.contains","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"acronym.doesNotContain","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"acronym.equals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"acronym.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"acronym.notEquals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"acronym.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"acronym.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"availabilityRisk.contains","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"availabilityRisk.doesNotContain","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"availabilityRisk.equals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"availabilityRisk.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"availabilityRisk.notEquals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"availabilityRisk.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"availabilityRisk.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"cloudServiceId.equals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"cloudServiceId.greaterThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"cloudServiceId.greaterThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"cloudServiceId.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"cloudServiceId.lessThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"cloudServiceId.lessThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"cloudServiceId.notEquals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"cloudServiceId.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"cloudServiceId.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"confidentialityRisk.contains","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"confidentialityRisk.doesNotContain","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"confidentialityRisk.equals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"confidentialityRisk.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"confidentialityRisk.notEquals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"confidentialityRisk.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"confidentialityRisk.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"distinct","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"id.equals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.greaterThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.greaterThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"id.lessThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.lessThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.notEquals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"id.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"integrityRisk.contains","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"integrityRisk.doesNotContain","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"integrityRisk.equals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"integrityRisk.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"integrityRisk.notEquals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"integrityRisk.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"integrityRisk.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"name.contains","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"name.doesNotContain","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"name.equals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"name.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"name.notEquals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"name.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"name.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"resourceTypeId.equals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"resourceTypeId.greaterThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"resourceTypeId.greaterThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"resourceTypeId.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"resourceTypeId.lessThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"resourceTypeId.lessThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"resourceTypeId.notEquals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"resourceTypeId.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"resourceTypeId.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"securityControlId.equals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"securityControlId.greaterThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"securityControlId.greaterThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"securityControlId.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"securityControlId.lessThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"securityControlId.lessThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"securityControlId.notEquals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"securityControlId.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"securityControlId.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"targetValueId.equals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"targetValueId.greaterThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"targetValueId.greaterThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"targetValueId.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"targetValueId.lessThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"targetValueId.lessThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"targetValueId.notEquals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"targetValueId.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"targetValueId.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/ResourceDTO"}}}}},"401":{"description":"Unauthorized"},"403":{"description":"Forbidden"},"404":{"description":"Not Found"}}},"post":{"tags":["resource-resource"],"summary":"createResource","operationId":"createResourceUsingPOST","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ResourceDTO"}}}},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ResourceDTO"}}}},"201":{"description":"Created"},"401":{"description":"Unauthorized"},"403":{"description":"Forbidden"},"404":{"description":"Not Found"}}}},"/api/resources/count":{"get":{"tags":["resource-resource"],"summary":"countResources","operationId":"countResourcesUsingGET","parameters":[{"name":"acronym.contains","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"acronym.doesNotContain","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"acronym.equals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"acronym.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"acronym.notEquals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"acronym.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"acronym.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"availabilityRisk.contains","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"availabilityRisk.doesNotContain","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"availabilityRisk.equals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"availabilityRisk.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"availabilityRisk.notEquals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"availabilityRisk.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"availabilityRisk.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"cloudServiceId.equals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"cloudServiceId.greaterThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"cloudServiceId.greaterThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"cloudServiceId.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"cloudServiceId.lessThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"cloudServiceId.lessThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"cloudServiceId.notEquals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"cloudServiceId.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"cloudServiceId.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"confidentialityRisk.contains","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"confidentialityRisk.doesNotContain","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"confidentialityRisk.equals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"confidentialityRisk.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"confidentialityRisk.notEquals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"confidentialityRisk.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"confidentialityRisk.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"distinct","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"id.equals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.greaterThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.greaterThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"id.lessThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.lessThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.notEquals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"id.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"integrityRisk.contains","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"integrityRisk.doesNotContain","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"integrityRisk.equals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"integrityRisk.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"integrityRisk.notEquals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"integrityRisk.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"integrityRisk.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"name.contains","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"name.doesNotContain","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"name.equals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"name.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"name.notEquals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"name.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"name.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"resourceTypeId.equals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"resourceTypeId.greaterThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"resourceTypeId.greaterThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"resourceTypeId.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"resourceTypeId.lessThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"resourceTypeId.lessThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"resourceTypeId.notEquals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"resourceTypeId.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"resourceTypeId.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"securityControlId.equals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"securityControlId.greaterThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"securityControlId.greaterThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"securityControlId.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"securityControlId.lessThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"securityControlId.lessThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"securityControlId.notEquals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"securityControlId.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"securityControlId.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"targetValueId.equals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"targetValueId.greaterThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"targetValueId.greaterThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"targetValueId.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"targetValueId.lessThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"targetValueId.lessThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"targetValueId.notEquals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"targetValueId.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"targetValueId.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"integer","format":"int64"}}}},"401":{"description":"Unauthorized"},"403":{"description":"Forbidden"},"404":{"description":"Not Found"}}}},"/api/resources/{id}":{"get":{"tags":["resource-resource"],"summary":"getResource","operationId":"getResourceUsingGET","parameters":[{"name":"id","in":"path","description":"id","required":true,"style":"simple","schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ResourceDTO"}}}},"401":{"description":"Unauthorized"},"403":{"description":"Forbidden"},"404":{"description":"Not Found"}}},"put":{"tags":["resource-resource"],"summary":"updateResource","operationId":"updateResourceUsingPUT","parameters":[{"name":"id","in":"path","description":"id","required":true,"style":"simple","schema":{"type":"integer","format":"int64"}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ResourceDTO"}}}},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ResourceDTO"}}}},"201":{"description":"Created"},"401":{"description":"Unauthorized"},"403":{"description":"Forbidden"},"404":{"description":"Not Found"}}},"delete":{"tags":["resource-resource"],"summary":"deleteResource","operationId":"deleteResourceUsingDELETE","parameters":[{"name":"id","in":"path","description":"id","required":true,"style":"simple","schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"OK"},"204":{"description":"No Content"},"401":{"description":"Unauthorized"},"403":{"description":"Forbidden"}}},"patch":{"tags":["resource-resource"],"summary":"partialUpdateResource","operationId":"partialUpdateResourceUsingPATCH","parameters":[{"name":"id","in":"path","description":"id","required":true,"style":"simple","schema":{"type":"integer","format":"int64"}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ResourceDTO"}},"application/merge-patch+json":{"schema":{"$ref":"#/components/schemas/ResourceDTO"}}}},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ResourceDTO"}}}},"204":{"description":"No Content"},"401":{"description":"Unauthorized"},"403":{"description":"Forbidden"}}}},"/api/resource-types":{"get":{"tags":["resource-type-resource"],"summary":"getAllResourceTypes","operationId":"getAllResourceTypesUsingGET","parameters":[{"name":"distinct","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"id.equals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.greaterThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.greaterThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"id.lessThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.lessThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.notEquals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"id.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"name.contains","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"name.doesNotContain","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"name.equals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"name.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"name.notEquals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"name.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"name.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"ontologyTerm.contains","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"ontologyTerm.doesNotContain","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"ontologyTerm.equals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"ontologyTerm.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"ontologyTerm.notEquals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"ontologyTerm.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"ontologyTerm.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/ResourceTypeDTO"}}}}},"401":{"description":"Unauthorized"},"403":{"description":"Forbidden"},"404":{"description":"Not Found"}}},"post":{"tags":["resource-type-resource"],"summary":"createResourceType","operationId":"createResourceTypeUsingPOST","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ResourceTypeDTO"}}}},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ResourceTypeDTO"}}}},"201":{"description":"Created"},"401":{"description":"Unauthorized"},"403":{"description":"Forbidden"},"404":{"description":"Not Found"}}}},"/api/resource-types/count":{"get":{"tags":["resource-type-resource"],"summary":"countResourceTypes","operationId":"countResourceTypesUsingGET","parameters":[{"name":"distinct","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"id.equals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.greaterThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.greaterThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"id.lessThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.lessThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.notEquals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"id.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"name.contains","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"name.doesNotContain","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"name.equals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"name.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"name.notEquals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"name.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"name.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"ontologyTerm.contains","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"ontologyTerm.doesNotContain","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"ontologyTerm.equals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"ontologyTerm.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"ontologyTerm.notEquals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"ontologyTerm.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"ontologyTerm.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"integer","format":"int64"}}}},"401":{"description":"Unauthorized"},"403":{"description":"Forbidden"},"404":{"description":"Not Found"}}}},"/api/resource-types/{id}":{"get":{"tags":["resource-type-resource"],"summary":"getResourceType","operationId":"getResourceTypeUsingGET","parameters":[{"name":"id","in":"path","description":"id","required":true,"style":"simple","schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ResourceTypeDTO"}}}},"401":{"description":"Unauthorized"},"403":{"description":"Forbidden"},"404":{"description":"Not Found"}}},"put":{"tags":["resource-type-resource"],"summary":"updateResourceType","operationId":"updateResourceTypeUsingPUT","parameters":[{"name":"id","in":"path","description":"id","required":true,"style":"simple","schema":{"type":"integer","format":"int64"}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ResourceTypeDTO"}}}},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ResourceTypeDTO"}}}},"201":{"description":"Created"},"401":{"description":"Unauthorized"},"403":{"description":"Forbidden"},"404":{"description":"Not Found"}}},"delete":{"tags":["resource-type-resource"],"summary":"deleteResourceType","operationId":"deleteResourceTypeUsingDELETE","parameters":[{"name":"id","in":"path","description":"id","required":true,"style":"simple","schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"OK"},"204":{"description":"No Content"},"401":{"description":"Unauthorized"},"403":{"description":"Forbidden"}}},"patch":{"tags":["resource-type-resource"],"summary":"partialUpdateResourceType","operationId":"partialUpdateResourceTypeUsingPATCH","parameters":[{"name":"id","in":"path","description":"id","required":true,"style":"simple","schema":{"type":"integer","format":"int64"}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ResourceTypeDTO"}},"application/merge-patch+json":{"schema":{"$ref":"#/components/schemas/ResourceTypeDTO"}}}},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ResourceTypeDTO"}}}},"204":{"description":"No Content"},"401":{"description":"Unauthorized"},"403":{"description":"Forbidden"}}}},"/api/security-control-categories":{"get":{"tags":["security-control-category-resource"],"summary":"getAllSecurityControlCategories","operationId":"getAllSecurityControlCategoriesUsingGET","parameters":[{"name":"code.contains","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"code.doesNotContain","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"code.equals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"code.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"code.notEquals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"code.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"code.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"description.contains","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"description.doesNotContain","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"description.equals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"description.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"description.notEquals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"description.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"description.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"distinct","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"id.equals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.greaterThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.greaterThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"id.lessThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.lessThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.notEquals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"id.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"name.contains","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"name.doesNotContain","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"name.equals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"name.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"name.notEquals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"name.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"name.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"securityControlFrameworkId.equals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"securityControlFrameworkId.greaterThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"securityControlFrameworkId.greaterThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"securityControlFrameworkId.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"securityControlFrameworkId.lessThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"securityControlFrameworkId.lessThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"securityControlFrameworkId.notEquals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"securityControlFrameworkId.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"securityControlFrameworkId.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/SecurityControlCategoryDTO"}}}}},"401":{"description":"Unauthorized"},"403":{"description":"Forbidden"},"404":{"description":"Not Found"}}}},"/api/security-control-categories/count":{"get":{"tags":["security-control-category-resource"],"summary":"countSecurityControlCategories","operationId":"countSecurityControlCategoriesUsingGET","parameters":[{"name":"code.contains","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"code.doesNotContain","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"code.equals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"code.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"code.notEquals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"code.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"code.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"description.contains","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"description.doesNotContain","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"description.equals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"description.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"description.notEquals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"description.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"description.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"distinct","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"id.equals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.greaterThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.greaterThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"id.lessThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.lessThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.notEquals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"id.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"name.contains","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"name.doesNotContain","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"name.equals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"name.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"name.notEquals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"name.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"name.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"securityControlFrameworkId.equals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"securityControlFrameworkId.greaterThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"securityControlFrameworkId.greaterThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"securityControlFrameworkId.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"securityControlFrameworkId.lessThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"securityControlFrameworkId.lessThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"securityControlFrameworkId.notEquals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"securityControlFrameworkId.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"securityControlFrameworkId.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"integer","format":"int64"}}}},"401":{"description":"Unauthorized"},"403":{"description":"Forbidden"},"404":{"description":"Not Found"}}}},"/api/security-control-categories/{id}":{"get":{"tags":["security-control-category-resource"],"summary":"getSecurityControlCategory","operationId":"getSecurityControlCategoryUsingGET","parameters":[{"name":"id","in":"path","description":"id","required":true,"style":"simple","schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SecurityControlCategoryDTO"}}}},"401":{"description":"Unauthorized"},"403":{"description":"Forbidden"},"404":{"description":"Not Found"}}},"put":{"tags":["security-control-category-resource"],"summary":"updateSecurityControlCategory","operationId":"updateSecurityControlCategoryUsingPUT","parameters":[{"name":"id","in":"path","description":"id","required":true,"style":"simple","schema":{"type":"integer","format":"int64"}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/SecurityControlCategoryDTO"}}}},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SecurityControlCategoryDTO"}}}},"201":{"description":"Created"},"401":{"description":"Unauthorized"},"403":{"description":"Forbidden"},"404":{"description":"Not Found"}}},"patch":{"tags":["security-control-category-resource"],"summary":"partialUpdateSecurityControlCategory","operationId":"partialUpdateSecurityControlCategoryUsingPATCH","parameters":[{"name":"id","in":"path","description":"id","required":true,"style":"simple","schema":{"type":"integer","format":"int64"}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/SecurityControlCategoryDTO"}},"application/merge-patch+json":{"schema":{"$ref":"#/components/schemas/SecurityControlCategoryDTO"}}}},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SecurityControlCategoryDTO"}}}},"204":{"description":"No Content"},"401":{"description":"Unauthorized"},"403":{"description":"Forbidden"}}}},"/api/security-control-frameworks":{"get":{"tags":["security-control-framework-resource"],"summary":"getAllSecurityControlFrameworks","operationId":"getAllSecurityControlFrameworksUsingGET","parameters":[{"name":"cloudServiceId.equals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"cloudServiceId.greaterThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"cloudServiceId.greaterThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"cloudServiceId.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"cloudServiceId.lessThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"cloudServiceId.lessThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"cloudServiceId.notEquals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"cloudServiceId.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"cloudServiceId.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"description.contains","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"description.doesNotContain","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"description.equals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"description.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"description.notEquals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"description.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"description.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"distinct","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"id.equals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.greaterThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.greaterThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"id.lessThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.lessThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.notEquals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"id.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"name.contains","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"name.doesNotContain","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"name.equals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"name.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"name.notEquals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"name.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"name.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"version.contains","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"version.doesNotContain","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"version.equals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"version.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"version.notEquals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"version.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"version.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/SecurityControlFrameworkDTO"}}}}},"401":{"description":"Unauthorized"},"403":{"description":"Forbidden"},"404":{"description":"Not Found"}}}},"/api/security-control-frameworks-full":{"get":{"tags":["security-control-framework-resource"],"summary":"getAllSecurityControlFullFrameworks","operationId":"getAllSecurityControlFullFrameworksUsingGET","responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/SecurityControlFrameworkFullDTO"}}}}},"401":{"description":"Unauthorized"},"403":{"description":"Forbidden"},"404":{"description":"Not Found"}}}},"/api/security-control-frameworks/checkHasRequirements/{name}":{"get":{"tags":["security-control-framework-resource"],"summary":"checkHasRequirements","operationId":"checkHasRequirementsUsingGET","parameters":[{"name":"name","in":"path","description":"name","required":true,"style":"simple","schema":{"type":"string"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"boolean"}}}},"401":{"description":"Unauthorized"},"403":{"description":"Forbidden"},"404":{"description":"Not Found"}}}},"/api/security-control-frameworks/count":{"get":{"tags":["security-control-framework-resource"],"summary":"countSecurityControlFrameworks","operationId":"countSecurityControlFrameworksUsingGET","parameters":[{"name":"cloudServiceId.equals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"cloudServiceId.greaterThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"cloudServiceId.greaterThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"cloudServiceId.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"cloudServiceId.lessThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"cloudServiceId.lessThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"cloudServiceId.notEquals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"cloudServiceId.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"cloudServiceId.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"description.contains","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"description.doesNotContain","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"description.equals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"description.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"description.notEquals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"description.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"description.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"distinct","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"id.equals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.greaterThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.greaterThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"id.lessThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.lessThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.notEquals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"id.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"name.contains","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"name.doesNotContain","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"name.equals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"name.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"name.notEquals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"name.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"name.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"version.contains","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"version.doesNotContain","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"version.equals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"version.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"version.notEquals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"version.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"version.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"integer","format":"int64"}}}},"401":{"description":"Unauthorized"},"403":{"description":"Forbidden"},"404":{"description":"Not Found"}}}},"/api/security-control-frameworks/{id}":{"get":{"tags":["security-control-framework-resource"],"summary":"getSecurityControlFramework","operationId":"getSecurityControlFrameworkUsingGET","parameters":[{"name":"id","in":"path","description":"id","required":true,"style":"simple","schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SecurityControlFrameworkDTO"}}}},"401":{"description":"Unauthorized"},"403":{"description":"Forbidden"},"404":{"description":"Not Found"}}},"put":{"tags":["security-control-framework-resource"],"summary":"updateSecurityControlFramework","operationId":"updateSecurityControlFrameworkUsingPUT","parameters":[{"name":"id","in":"path","description":"id","required":true,"style":"simple","schema":{"type":"integer","format":"int64"}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/SecurityControlFrameworkDTO"}}}},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SecurityControlFrameworkDTO"}}}},"201":{"description":"Created"},"401":{"description":"Unauthorized"},"403":{"description":"Forbidden"},"404":{"description":"Not Found"}}},"patch":{"tags":["security-control-framework-resource"],"summary":"partialUpdateSecurityControlFramework","operationId":"partialUpdateSecurityControlFrameworkUsingPATCH","parameters":[{"name":"id","in":"path","description":"id","required":true,"style":"simple","schema":{"type":"integer","format":"int64"}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/SecurityControlFrameworkDTO"}},"application/merge-patch+json":{"schema":{"$ref":"#/components/schemas/SecurityControlFrameworkDTO"}}}},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SecurityControlFrameworkDTO"}}}},"204":{"description":"No Content"},"401":{"description":"Unauthorized"},"403":{"description":"Forbidden"}}}},"/api/security-controls":{"get":{"tags":["security-control-resource"],"summary":"getAllSecurityControls","operationId":"getAllSecurityControlsUsingGET","parameters":[{"name":"code.contains","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"code.doesNotContain","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"code.equals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"code.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"code.notEquals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"code.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"code.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"description.contains","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"description.doesNotContain","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"description.equals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"description.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"description.notEquals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"description.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"description.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"distinct","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"id.equals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.greaterThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.greaterThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"id.lessThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.lessThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.notEquals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"id.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"name.contains","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"name.doesNotContain","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"name.equals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"name.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"name.notEquals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"name.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"name.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"objective.contains","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"objective.doesNotContain","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"objective.equals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"objective.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"objective.notEquals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"objective.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"objective.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"resourceId.equals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"resourceId.greaterThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"resourceId.greaterThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"resourceId.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"resourceId.lessThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"resourceId.lessThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"resourceId.notEquals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"resourceId.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"resourceId.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"securityControlCategoryId.equals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"securityControlCategoryId.greaterThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"securityControlCategoryId.greaterThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"securityControlCategoryId.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"securityControlCategoryId.lessThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"securityControlCategoryId.lessThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"securityControlCategoryId.notEquals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"securityControlCategoryId.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"securityControlCategoryId.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"similarControlsId.equals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"similarControlsId.greaterThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"similarControlsId.greaterThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"similarControlsId.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"similarControlsId.lessThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"similarControlsId.lessThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"similarControlsId.notEquals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"similarControlsId.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"similarControlsId.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/SecurityControlDTO"}}}}},"401":{"description":"Unauthorized"},"403":{"description":"Forbidden"},"404":{"description":"Not Found"}}}},"/api/security-controls/count":{"get":{"tags":["security-control-resource"],"summary":"countSecurityControls","operationId":"countSecurityControlsUsingGET","parameters":[{"name":"code.contains","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"code.doesNotContain","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"code.equals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"code.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"code.notEquals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"code.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"code.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"description.contains","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"description.doesNotContain","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"description.equals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"description.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"description.notEquals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"description.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"description.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"distinct","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"id.equals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.greaterThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.greaterThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"id.lessThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.lessThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.notEquals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"id.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"name.contains","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"name.doesNotContain","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"name.equals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"name.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"name.notEquals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"name.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"name.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"objective.contains","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"objective.doesNotContain","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"objective.equals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"objective.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"objective.notEquals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"objective.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"objective.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"resourceId.equals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"resourceId.greaterThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"resourceId.greaterThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"resourceId.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"resourceId.lessThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"resourceId.lessThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"resourceId.notEquals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"resourceId.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"resourceId.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"securityControlCategoryId.equals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"securityControlCategoryId.greaterThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"securityControlCategoryId.greaterThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"securityControlCategoryId.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"securityControlCategoryId.lessThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"securityControlCategoryId.lessThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"securityControlCategoryId.notEquals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"securityControlCategoryId.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"securityControlCategoryId.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"similarControlsId.equals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"similarControlsId.greaterThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"similarControlsId.greaterThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"similarControlsId.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"similarControlsId.lessThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"similarControlsId.lessThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"similarControlsId.notEquals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"similarControlsId.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"similarControlsId.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"integer","format":"int64"}}}},"401":{"description":"Unauthorized"},"403":{"description":"Forbidden"},"404":{"description":"Not Found"}}}},"/api/security-controls/{id}":{"get":{"tags":["security-control-resource"],"summary":"getSecurityControl","operationId":"getSecurityControlUsingGET","parameters":[{"name":"id","in":"path","description":"id","required":true,"style":"simple","schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SecurityControlDTO"}}}},"401":{"description":"Unauthorized"},"403":{"description":"Forbidden"},"404":{"description":"Not Found"}}},"put":{"tags":["security-control-resource"],"summary":"updateSecurityControl","operationId":"updateSecurityControlUsingPUT","parameters":[{"name":"id","in":"path","description":"id","required":true,"style":"simple","schema":{"type":"integer","format":"int64"}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/SecurityControlDTO"}}}},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SecurityControlDTO"}}}},"201":{"description":"Created"},"401":{"description":"Unauthorized"},"403":{"description":"Forbidden"},"404":{"description":"Not Found"}}},"patch":{"tags":["security-control-resource"],"summary":"partialUpdateSecurityControl","operationId":"partialUpdateSecurityControlUsingPATCH","parameters":[{"name":"id","in":"path","description":"id","required":true,"style":"simple","schema":{"type":"integer","format":"int64"}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/SecurityControlDTO"}},"application/merge-patch+json":{"schema":{"$ref":"#/components/schemas/SecurityControlDTO"}}}},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SecurityControlDTO"}}}},"204":{"description":"No Content"},"401":{"description":"Unauthorized"},"403":{"description":"Forbidden"}}}},"/api/security-metrics":{"get":{"tags":["security-metric-resource"],"summary":"getAllSecurityMetrics","operationId":"getAllSecurityMetricsUsingGET","parameters":[{"name":"category.contains","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"category.doesNotContain","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"category.equals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"category.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"category.notEquals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"category.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"category.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"description.contains","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"description.doesNotContain","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"description.equals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"description.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"description.notEquals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"description.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"description.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"distinct","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"id.equals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.greaterThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.greaterThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"id.lessThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.lessThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.notEquals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"id.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"interval.contains","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"interval.doesNotContain","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"interval.equals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"interval.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"interval.notEquals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"interval.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"interval.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"keywords.contains","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"keywords.doesNotContain","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"keywords.equals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"keywords.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"keywords.notEquals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"keywords.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"keywords.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"metricId.contains","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"metricId.doesNotContain","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"metricId.equals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"metricId.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"metricId.notEquals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"metricId.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"metricId.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"name.contains","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"name.doesNotContain","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"name.equals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"name.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"name.notEquals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"name.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"name.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"operator.contains","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"operator.doesNotContain","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"operator.equals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"operator.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"operator.notEquals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"operator.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"operator.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"referenceTomId.equals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"referenceTomId.greaterThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"referenceTomId.greaterThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"referenceTomId.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"referenceTomId.lessThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"referenceTomId.lessThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"referenceTomId.notEquals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"referenceTomId.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"referenceTomId.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"resourceTypeId.equals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"resourceTypeId.greaterThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"resourceTypeId.greaterThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"resourceTypeId.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"resourceTypeId.lessThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"resourceTypeId.lessThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"resourceTypeId.notEquals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"resourceTypeId.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"resourceTypeId.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"scale.contains","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"scale.doesNotContain","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"scale.equals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"scale.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"scale.notEquals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"scale.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"scale.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"securityFeature.contains","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"securityFeature.doesNotContain","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"securityFeature.equals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"securityFeature.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"securityFeature.notEquals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"securityFeature.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"securityFeature.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"source.contains","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"source.doesNotContain","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"source.equals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"source.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"source.notEquals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"source.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"source.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"targetResourceType.contains","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"targetResourceType.doesNotContain","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"targetResourceType.equals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"targetResourceType.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"targetResourceType.notEquals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"targetResourceType.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"targetResourceType.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"targetValue.contains","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"targetValue.doesNotContain","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"targetValue.equals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"targetValue.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"targetValue.notEquals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"targetValue.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"targetValue.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"targetValueDatatype.contains","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"targetValueDatatype.doesNotContain","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"targetValueDatatype.equals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"targetValueDatatype.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"targetValueDatatype.notEquals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"targetValueDatatype.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"targetValueDatatype.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"tomId.equals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"tomId.greaterThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"tomId.greaterThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"tomId.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"tomId.lessThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"tomId.lessThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"tomId.notEquals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"tomId.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"tomId.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/SecurityMetricDTO"}}}}},"401":{"description":"Unauthorized"},"403":{"description":"Forbidden"},"404":{"description":"Not Found"}}},"post":{"tags":["security-metric-resource"],"summary":"createSecurityMetric","operationId":"createSecurityMetricUsingPOST","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/SecurityMetricDTO"}}}},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SecurityMetricDTO"}}}},"201":{"description":"Created"},"401":{"description":"Unauthorized"},"403":{"description":"Forbidden"},"404":{"description":"Not Found"}}}},"/api/security-metrics/count":{"get":{"tags":["security-metric-resource"],"summary":"countSecurityMetrics","operationId":"countSecurityMetricsUsingGET","parameters":[{"name":"category.contains","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"category.doesNotContain","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"category.equals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"category.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"category.notEquals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"category.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"category.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"description.contains","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"description.doesNotContain","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"description.equals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"description.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"description.notEquals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"description.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"description.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"distinct","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"id.equals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.greaterThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.greaterThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"id.lessThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.lessThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.notEquals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"id.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"interval.contains","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"interval.doesNotContain","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"interval.equals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"interval.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"interval.notEquals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"interval.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"interval.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"keywords.contains","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"keywords.doesNotContain","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"keywords.equals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"keywords.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"keywords.notEquals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"keywords.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"keywords.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"metricId.contains","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"metricId.doesNotContain","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"metricId.equals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"metricId.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"metricId.notEquals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"metricId.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"metricId.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"name.contains","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"name.doesNotContain","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"name.equals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"name.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"name.notEquals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"name.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"name.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"operator.contains","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"operator.doesNotContain","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"operator.equals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"operator.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"operator.notEquals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"operator.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"operator.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"referenceTomId.equals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"referenceTomId.greaterThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"referenceTomId.greaterThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"referenceTomId.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"referenceTomId.lessThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"referenceTomId.lessThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"referenceTomId.notEquals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"referenceTomId.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"referenceTomId.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"resourceTypeId.equals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"resourceTypeId.greaterThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"resourceTypeId.greaterThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"resourceTypeId.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"resourceTypeId.lessThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"resourceTypeId.lessThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"resourceTypeId.notEquals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"resourceTypeId.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"resourceTypeId.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"scale.contains","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"scale.doesNotContain","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"scale.equals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"scale.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"scale.notEquals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"scale.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"scale.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"securityFeature.contains","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"securityFeature.doesNotContain","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"securityFeature.equals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"securityFeature.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"securityFeature.notEquals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"securityFeature.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"securityFeature.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"source.contains","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"source.doesNotContain","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"source.equals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"source.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"source.notEquals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"source.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"source.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"targetResourceType.contains","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"targetResourceType.doesNotContain","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"targetResourceType.equals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"targetResourceType.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"targetResourceType.notEquals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"targetResourceType.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"targetResourceType.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"targetValue.contains","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"targetValue.doesNotContain","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"targetValue.equals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"targetValue.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"targetValue.notEquals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"targetValue.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"targetValue.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"targetValueDatatype.contains","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"targetValueDatatype.doesNotContain","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"targetValueDatatype.equals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"targetValueDatatype.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"targetValueDatatype.notEquals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"targetValueDatatype.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"targetValueDatatype.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"tomId.equals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"tomId.greaterThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"tomId.greaterThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"tomId.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"tomId.lessThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"tomId.lessThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"tomId.notEquals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"tomId.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"tomId.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"integer","format":"int64"}}}},"401":{"description":"Unauthorized"},"403":{"description":"Forbidden"},"404":{"description":"Not Found"}}}},"/api/security-metrics/{id}":{"get":{"tags":["security-metric-resource"],"summary":"getSecurityMetric","operationId":"getSecurityMetricUsingGET","parameters":[{"name":"id","in":"path","description":"id","required":true,"style":"simple","schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SecurityMetricDTO"}}}},"401":{"description":"Unauthorized"},"403":{"description":"Forbidden"},"404":{"description":"Not Found"}}},"put":{"tags":["security-metric-resource"],"summary":"updateSecurityMetric","operationId":"updateSecurityMetricUsingPUT","parameters":[{"name":"id","in":"path","description":"id","required":true,"style":"simple","schema":{"type":"integer","format":"int64"}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/SecurityMetricDTO"}}}},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SecurityMetricDTO"}}}},"201":{"description":"Created"},"401":{"description":"Unauthorized"},"403":{"description":"Forbidden"},"404":{"description":"Not Found"}}},"delete":{"tags":["security-metric-resource"],"summary":"deleteSecurityMetric","operationId":"deleteSecurityMetricUsingDELETE","parameters":[{"name":"id","in":"path","description":"id","required":true,"style":"simple","schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"OK"},"204":{"description":"No Content"},"401":{"description":"Unauthorized"},"403":{"description":"Forbidden"}}},"patch":{"tags":["security-metric-resource"],"summary":"partialUpdateSecurityMetric","operationId":"partialUpdateSecurityMetricUsingPATCH","parameters":[{"name":"id","in":"path","description":"id","required":true,"style":"simple","schema":{"type":"integer","format":"int64"}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/SecurityMetricDTO"}},"application/merge-patch+json":{"schema":{"$ref":"#/components/schemas/SecurityMetricDTO"}}}},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SecurityMetricDTO"}}}},"204":{"description":"No Content"},"401":{"description":"Unauthorized"},"403":{"description":"Forbidden"}}}},"/api/similar-controls":{"get":{"tags":["similar-control-resource"],"summary":"getAllSimilarControls","operationId":"getAllSimilarControlsUsingGET","parameters":[{"name":"code.contains","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"code.doesNotContain","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"code.equals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"code.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"code.notEquals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"code.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"code.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"distinct","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"id.equals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.greaterThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.greaterThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"id.lessThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.lessThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.notEquals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"id.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"name.contains","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"name.doesNotContain","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"name.equals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"name.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"name.notEquals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"name.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"name.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"securityControlFrameworkName.contains","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"securityControlFrameworkName.doesNotContain","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"securityControlFrameworkName.equals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"securityControlFrameworkName.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"securityControlFrameworkName.notEquals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"securityControlFrameworkName.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"securityControlFrameworkName.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"securityControlId.equals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"securityControlId.greaterThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"securityControlId.greaterThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"securityControlId.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"securityControlId.lessThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"securityControlId.lessThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"securityControlId.notEquals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"securityControlId.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"securityControlId.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"securityControlName.contains","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"securityControlName.doesNotContain","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"securityControlName.equals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"securityControlName.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"securityControlName.notEquals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"securityControlName.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"securityControlName.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"securityControlObjective.contains","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"securityControlObjective.doesNotContain","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"securityControlObjective.equals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"securityControlObjective.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"securityControlObjective.notEquals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"securityControlObjective.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"securityControlObjective.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/SimilarControlDTO"}}}}},"401":{"description":"Unauthorized"},"403":{"description":"Forbidden"},"404":{"description":"Not Found"}}}},"/api/similar-controls/count":{"get":{"tags":["similar-control-resource"],"summary":"countSimilarControls","operationId":"countSimilarControlsUsingGET","parameters":[{"name":"code.contains","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"code.doesNotContain","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"code.equals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"code.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"code.notEquals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"code.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"code.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"distinct","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"id.equals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.greaterThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.greaterThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"id.lessThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.lessThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.notEquals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"id.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"name.contains","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"name.doesNotContain","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"name.equals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"name.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"name.notEquals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"name.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"name.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"securityControlFrameworkName.contains","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"securityControlFrameworkName.doesNotContain","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"securityControlFrameworkName.equals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"securityControlFrameworkName.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"securityControlFrameworkName.notEquals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"securityControlFrameworkName.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"securityControlFrameworkName.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"securityControlId.equals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"securityControlId.greaterThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"securityControlId.greaterThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"securityControlId.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"securityControlId.lessThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"securityControlId.lessThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"securityControlId.notEquals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"securityControlId.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"securityControlId.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"securityControlName.contains","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"securityControlName.doesNotContain","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"securityControlName.equals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"securityControlName.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"securityControlName.notEquals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"securityControlName.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"securityControlName.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"securityControlObjective.contains","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"securityControlObjective.doesNotContain","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"securityControlObjective.equals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"securityControlObjective.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"securityControlObjective.notEquals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"securityControlObjective.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"securityControlObjective.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"integer","format":"int64"}}}},"401":{"description":"Unauthorized"},"403":{"description":"Forbidden"},"404":{"description":"Not Found"}}}},"/api/similar-controls/{id}":{"get":{"tags":["similar-control-resource"],"summary":"getSimilarControl","operationId":"getSimilarControlUsingGET","parameters":[{"name":"id","in":"path","description":"id","required":true,"style":"simple","schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SimilarControlDTO"}}}},"401":{"description":"Unauthorized"},"403":{"description":"Forbidden"},"404":{"description":"Not Found"}}},"put":{"tags":["similar-control-resource"],"summary":"updateSimilarControl","operationId":"updateSimilarControlUsingPUT","parameters":[{"name":"id","in":"path","description":"id","required":true,"style":"simple","schema":{"type":"integer","format":"int64"}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/SimilarControlDTO"}}}},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SimilarControlDTO"}}}},"201":{"description":"Created"},"401":{"description":"Unauthorized"},"403":{"description":"Forbidden"},"404":{"description":"Not Found"}}},"patch":{"tags":["similar-control-resource"],"summary":"partialUpdateSimilarControl","operationId":"partialUpdateSimilarControlUsingPATCH","parameters":[{"name":"id","in":"path","description":"id","required":true,"style":"simple","schema":{"type":"integer","format":"int64"}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/SimilarControlDTO"}},"application/merge-patch+json":{"schema":{"$ref":"#/components/schemas/SimilarControlDTO"}}}},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SimilarControlDTO"}}}},"204":{"description":"No Content"},"401":{"description":"Unauthorized"},"403":{"description":"Forbidden"}}}},"/api/target-values":{"get":{"tags":["target-value-resource"],"summary":"getAllTargetValues","operationId":"getAllTargetValuesUsingGET","parameters":[{"name":"distinct","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"id.equals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.greaterThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.greaterThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"id.lessThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.lessThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.notEquals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"id.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"value.contains","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"value.doesNotContain","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"value.equals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"value.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"value.notEquals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"value.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"value.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/TargetValueDTO"}}}}},"401":{"description":"Unauthorized"},"403":{"description":"Forbidden"},"404":{"description":"Not Found"}}},"post":{"tags":["target-value-resource"],"summary":"createTargetValue","operationId":"createTargetValueUsingPOST","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/TargetValueDTO"}}}},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/TargetValueDTO"}}}},"201":{"description":"Created"},"401":{"description":"Unauthorized"},"403":{"description":"Forbidden"},"404":{"description":"Not Found"}}}},"/api/target-values/count":{"get":{"tags":["target-value-resource"],"summary":"countTargetValues","operationId":"countTargetValuesUsingGET","parameters":[{"name":"distinct","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"id.equals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.greaterThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.greaterThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"id.lessThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.lessThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.notEquals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"id.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"value.contains","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"value.doesNotContain","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"value.equals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"value.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"value.notEquals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"value.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"value.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"integer","format":"int64"}}}},"401":{"description":"Unauthorized"},"403":{"description":"Forbidden"},"404":{"description":"Not Found"}}}},"/api/target-values/{id}":{"get":{"tags":["target-value-resource"],"summary":"getTargetValue","operationId":"getTargetValueUsingGET","parameters":[{"name":"id","in":"path","description":"id","required":true,"style":"simple","schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/TargetValueDTO"}}}},"401":{"description":"Unauthorized"},"403":{"description":"Forbidden"},"404":{"description":"Not Found"}}},"put":{"tags":["target-value-resource"],"summary":"updateTargetValue","operationId":"updateTargetValueUsingPUT","parameters":[{"name":"id","in":"path","description":"id","required":true,"style":"simple","schema":{"type":"integer","format":"int64"}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/TargetValueDTO"}}}},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/TargetValueDTO"}}}},"201":{"description":"Created"},"401":{"description":"Unauthorized"},"403":{"description":"Forbidden"},"404":{"description":"Not Found"}}},"delete":{"tags":["target-value-resource"],"summary":"deleteTargetValue","operationId":"deleteTargetValueUsingDELETE","parameters":[{"name":"id","in":"path","description":"id","required":true,"style":"simple","schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"OK"},"204":{"description":"No Content"},"401":{"description":"Unauthorized"},"403":{"description":"Forbidden"}}},"patch":{"tags":["target-value-resource"],"summary":"partialUpdateTargetValue","operationId":"partialUpdateTargetValueUsingPATCH","parameters":[{"name":"id","in":"path","description":"id","required":true,"style":"simple","schema":{"type":"integer","format":"int64"}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/TargetValueDTO"}},"application/merge-patch+json":{"schema":{"$ref":"#/components/schemas/TargetValueDTO"}}}},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/TargetValueDTO"}}}},"204":{"description":"No Content"},"401":{"description":"Unauthorized"},"403":{"description":"Forbidden"}}}},"/api/toms":{"get":{"tags":["tom-resource"],"summary":"getAllToms","operationId":"getAllTomsUsingGET","parameters":[{"name":"assuranceLevel.equals","in":"query","required":false,"style":"form","schema":{"type":"string","enum":["Basic","High","Substantial"]}},{"name":"assuranceLevel.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"},"enum":["Basic","High","Substantial"]}},{"name":"assuranceLevel.notEquals","in":"query","required":false,"style":"form","schema":{"type":"string","enum":["Basic","High","Substantial"]}},{"name":"assuranceLevel.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"},"enum":["Basic","High","Substantial"]}},{"name":"assuranceLevel.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"code.contains","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"code.doesNotContain","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"code.equals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"code.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"code.notEquals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"code.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"code.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"description.contains","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"description.doesNotContain","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"description.equals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"description.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"description.notEquals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"description.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"description.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"distinct","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"guidance.contains","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"guidance.doesNotContain","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"guidance.equals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"guidance.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"guidance.notEquals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"guidance.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"guidance.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"id.equals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.greaterThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.greaterThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"id.lessThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.lessThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.notEquals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"id.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"name.contains","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"name.doesNotContain","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"name.equals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"name.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"name.notEquals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"name.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"name.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"securityControlId.equals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"securityControlId.greaterThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"securityControlId.greaterThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"securityControlId.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"securityControlId.lessThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"securityControlId.lessThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"securityControlId.notEquals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"securityControlId.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"securityControlId.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"type.equals","in":"query","required":false,"style":"form","schema":{"type":"string","enum":["ORGANIZATIONAL","ORGANIZATIONAL_TECHNICAL","TECHNICAL"]}},{"name":"type.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"},"enum":["ORGANIZATIONAL","ORGANIZATIONAL_TECHNICAL","TECHNICAL"]}},{"name":"type.notEquals","in":"query","required":false,"style":"form","schema":{"type":"string","enum":["ORGANIZATIONAL","ORGANIZATIONAL_TECHNICAL","TECHNICAL"]}},{"name":"type.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"},"enum":["ORGANIZATIONAL","ORGANIZATIONAL_TECHNICAL","TECHNICAL"]}},{"name":"type.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/TomDTO"}}}}},"401":{"description":"Unauthorized"},"403":{"description":"Forbidden"},"404":{"description":"Not Found"}}}},"/api/toms/count":{"get":{"tags":["tom-resource"],"summary":"countToms","operationId":"countTomsUsingGET","parameters":[{"name":"assuranceLevel.equals","in":"query","required":false,"style":"form","schema":{"type":"string","enum":["Basic","High","Substantial"]}},{"name":"assuranceLevel.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"},"enum":["Basic","High","Substantial"]}},{"name":"assuranceLevel.notEquals","in":"query","required":false,"style":"form","schema":{"type":"string","enum":["Basic","High","Substantial"]}},{"name":"assuranceLevel.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"},"enum":["Basic","High","Substantial"]}},{"name":"assuranceLevel.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"code.contains","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"code.doesNotContain","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"code.equals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"code.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"code.notEquals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"code.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"code.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"description.contains","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"description.doesNotContain","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"description.equals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"description.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"description.notEquals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"description.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"description.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"distinct","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"guidance.contains","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"guidance.doesNotContain","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"guidance.equals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"guidance.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"guidance.notEquals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"guidance.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"guidance.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"id.equals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.greaterThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.greaterThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"id.lessThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.lessThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.notEquals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"id.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"id.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"name.contains","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"name.doesNotContain","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"name.equals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"name.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"name.notEquals","in":"query","required":false,"style":"form","schema":{"type":"string"}},{"name":"name.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"}}},{"name":"name.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"securityControlId.equals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"securityControlId.greaterThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"securityControlId.greaterThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"securityControlId.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"securityControlId.lessThan","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"securityControlId.lessThanOrEqual","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"securityControlId.notEquals","in":"query","required":false,"style":"form","schema":{"type":"integer","format":"int64"}},{"name":"securityControlId.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"integer","format":"int64"}}},{"name":"securityControlId.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}},{"name":"type.equals","in":"query","required":false,"style":"form","schema":{"type":"string","enum":["ORGANIZATIONAL","ORGANIZATIONAL_TECHNICAL","TECHNICAL"]}},{"name":"type.in","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"},"enum":["ORGANIZATIONAL","ORGANIZATIONAL_TECHNICAL","TECHNICAL"]}},{"name":"type.notEquals","in":"query","required":false,"style":"form","schema":{"type":"string","enum":["ORGANIZATIONAL","ORGANIZATIONAL_TECHNICAL","TECHNICAL"]}},{"name":"type.notIn","in":"query","required":false,"style":"pipeDelimited","schema":{"type":"array","items":{"type":"string"},"enum":["ORGANIZATIONAL","ORGANIZATIONAL_TECHNICAL","TECHNICAL"]}},{"name":"type.specified","in":"query","required":false,"style":"form","schema":{"type":"boolean"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"integer","format":"int64"}}}},"401":{"description":"Unauthorized"},"403":{"description":"Forbidden"},"404":{"description":"Not Found"}}}},"/api/toms/framework-assurance/{frameworkName}":{"get":{"tags":["tom-resource"],"summary":"getTomsByFrameworkName","operationId":"getTomsByFrameworkNameUsingGET","parameters":[{"name":"frameworkName","in":"path","description":"frameworkName","required":true,"style":"simple","schema":{"type":"string"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/TomDTO"}}}}},"401":{"description":"Unauthorized"},"403":{"description":"Forbidden"},"404":{"description":"Not Found"}}}},"/api/toms/framework-assurance/{frameworkName}/{assuranceLevel}":{"get":{"tags":["tom-resource"],"summary":"getTomsByFrameworkNameAndAssuranceLevel","operationId":"getTomsByFrameworkNameAndAssuranceLevelUsingGET","parameters":[{"name":"frameworkName","in":"path","description":"frameworkName","required":true,"style":"simple","schema":{"type":"string"}},{"name":"assuranceLevel","in":"path","description":"assuranceLevel","required":true,"style":"simple","schema":{"type":"string"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/TomDTO"}}}}},"401":{"description":"Unauthorized"},"403":{"description":"Forbidden"},"404":{"description":"Not Found"}}}},"/api/toms/{id}":{"get":{"tags":["tom-resource"],"summary":"getTom","operationId":"getTomUsingGET","parameters":[{"name":"id","in":"path","description":"id","required":true,"style":"simple","schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/TomDTO"}}}},"401":{"description":"Unauthorized"},"403":{"description":"Forbidden"},"404":{"description":"Not Found"}}},"put":{"tags":["tom-resource"],"summary":"updateTom","operationId":"updateTomUsingPUT","parameters":[{"name":"id","in":"path","description":"id","required":true,"style":"simple","schema":{"type":"integer","format":"int64"}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/TomDTO"}}}},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/TomDTO"}}}},"201":{"description":"Created"},"401":{"description":"Unauthorized"},"403":{"description":"Forbidden"},"404":{"description":"Not Found"}}},"patch":{"tags":["tom-resource"],"summary":"partialUpdateTom","operationId":"partialUpdateTomUsingPATCH","parameters":[{"name":"id","in":"path","description":"id","required":true,"style":"simple","schema":{"type":"integer","format":"int64"}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/TomDTO"}},"application/merge-patch+json":{"schema":{"$ref":"#/components/schemas/TomDTO"}}}},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/TomDTO"}}}},"204":{"description":"No Content"},"401":{"description":"Unauthorized"},"403":{"description":"Forbidden"}}}},"/api/admin/users":{"get":{"tags":["user-resource"],"summary":"getAllUsers","operationId":"getAllUsersUsingGET","parameters":[{"name":"page","in":"query","description":"Page number of the requested page","required":false,"style":"form","allowReserved":true,"schema":{"type":"integer","format":"int32"}},{"name":"size","in":"query","description":"Size of a page","required":false,"style":"form","allowReserved":true,"schema":{"type":"integer","format":"int32"}},{"name":"sort","in":"query","description":"Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.","required":false,"style":"form","allowReserved":true,"schema":{"type":"array","items":{"type":"string"}}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/AdminUserDTO"}}}}},"401":{"description":"Unauthorized"},"403":{"description":"Forbidden"},"404":{"description":"Not Found"}}}},"/api/admin/users/{login}":{"get":{"tags":["user-resource"],"summary":"getUser","operationId":"getUserUsingGET","parameters":[{"name":"login","in":"path","description":"login","required":true,"style":"simple","schema":{"pattern":"^(?>[a-zA-Z0-9!$&*+=?^_`{|}~.-]+@[a-zA-Z0-9-]+(?:\\.[a-zA-Z0-9-]+)*)|(?>[_.@A-Za-z0-9-]+)$","type":"string"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/AdminUserDTO"}}}},"401":{"description":"Unauthorized"},"403":{"description":"Forbidden"},"404":{"description":"Not Found"}}}}},"components":{"schemas":{"AdminUserDTO":{"title":"AdminUserDTO","required":["login"],"type":"object","properties":{"activated":{"type":"boolean"},"authorities":{"uniqueItems":true,"type":"array","items":{"type":"string"}},"company":{"maxLength":255,"minLength":0,"type":"string"},"createdBy":{"type":"string"},"createdDate":{"type":"string","format":"date-time"},"email":{"maxLength":254,"minLength":5,"type":"string"},"firstName":{"maxLength":50,"minLength":0,"type":"string"},"id":{"type":"string"},"imageUrl":{"maxLength":256,"minLength":0,"type":"string"},"langKey":{"maxLength":10,"minLength":2,"type":"string"},"lastModifiedBy":{"type":"string"},"lastModifiedDate":{"type":"string","format":"date-time"},"lastName":{"maxLength":50,"minLength":0,"type":"string"},"login":{"maxLength":50,"minLength":1,"pattern":"^(?>[a-zA-Z0-9!$&*+=?^_`{|}~.-]+@[a-zA-Z0-9-]+(?:\\.[a-zA-Z0-9-]+)*)|(?>[_.@A-Za-z0-9-]+)$","type":"string"}}},"AuditLogDTO":{"title":"AuditLogDTO","required":["dateLog","entity","operation","target","user"],"type":"object","properties":{"dateLog":{"type":"string","description":"dateLog"},"entity":{"type":"string","description":"entity"},"id":{"type":"integer","format":"int64"},"operation":{"type":"string","description":"operation"},"target":{"type":"string","description":"target"},"user":{"type":"string","description":"user"}},"description":"AuditLog entity.\n\n@author Diego Rosado"},"CloudService":{"title":"CloudService","required":["acronym","cloudServiceProvider","description","name","securityControlFramework","type"],"type":"object","properties":{"acronym":{"type":"string"},"cloudServiceProvider":{"$ref":"#/components/schemas/CloudServiceProvider"},"description":{"type":"string"},"id":{"type":"integer","format":"int64"},"name":{"type":"string"},"resources":{"uniqueItems":true,"type":"array","items":{"$ref":"#/components/schemas/Resource"}},"securityControlFramework":{"$ref":"#/components/schemas/SecurityControlFramework"},"type":{"type":"string"}}},"CloudServiceDTO":{"title":"CloudServiceDTO","required":["acronym","description","name","type"],"type":"object","properties":{"acronym":{"type":"string","description":"acronym"},"cloudServiceProvider":{"$ref":"#/components/schemas/CloudServiceProviderDTO"},"description":{"type":"string","description":"description"},"id":{"type":"integer","format":"int64"},"name":{"type":"string","description":"name"},"securityControlFramework":{"$ref":"#/components/schemas/SecurityControlFrameworkDTO"},"type":{"type":"string","description":"type"}}},"CloudServiceProvider":{"title":"CloudServiceProvider","required":["acronym","contactDetails","name"],"type":"object","properties":{"acronym":{"type":"string"},"cloudServices":{"uniqueItems":true,"type":"array","items":{"$ref":"#/components/schemas/CloudService"}},"contactDetails":{"type":"string"},"id":{"type":"integer","format":"int64"},"name":{"type":"string"}}},"CloudServiceProviderDTO":{"title":"CloudServiceProviderDTO","required":["acronym","contactDetails","name"],"type":"object","properties":{"acronym":{"type":"string","description":"acronym"},"contactDetails":{"type":"string","description":"contactDetails"},"id":{"type":"integer","format":"int64"},"name":{"type":"string","description":"name"}}},"QuestionAnswerDTO":{"title":"QuestionAnswerDTO","required":["answer","value","visible"],"type":"object","properties":{"answer":{"type":"string","description":"answer"},"id":{"type":"integer","format":"int64"},"value":{"type":"integer","description":"value","format":"int32"},"visible":{"type":"boolean","description":"visible","example":false}},"description":"QuestionAnswer entity.\n\n@author Diego Rosado"},"QuestionAssuranceLevelDTO":{"title":"QuestionAssuranceLevelDTO","required":["assuranceLevel"],"type":"object","properties":{"assuranceLevel":{"type":"string","description":"assuranceLevel"},"id":{"type":"integer","format":"int64"},"questionnaireCloudServiceList":{"type":"array","items":{"$ref":"#/components/schemas/QuestionnaireCloudService"}}},"description":"QuestionAssuranceLevel entity.\n\n@author Diego Rosado"},"QuestionDTO":{"title":"QuestionDTO","required":["assuranceLevelId","code","controlId","defaultComment","defaultEvidence","frameworkId","question","tomId"],"type":"object","properties":{"assuranceLevelId":{"type":"string","description":"assuranceLevelId"},"code":{"type":"string","description":"code"},"controlId":{"type":"string","description":"controlId"},"defaultComment":{"type":"string","description":"defaultComment"},"defaultEvidence":{"type":"string","description":"defaultEvidence"},"frameworkId":{"type":"string","description":"frameworkId"},"id":{"type":"integer","format":"int64"},"question":{"type":"string","description":"question"},"tomId":{"type":"string","description":"tomId"}},"description":"Question entity.\n\n@author Diego Rosado"},"Questionnaire":{"title":"Questionnaire","required":["answerId","assuranceLevelId","comments","controlId","evidences","frameworkId","name","questionId","tomId","userId"],"type":"object","properties":{"answerId":{"type":"integer","format":"int64"},"assuranceLevelId":{"type":"integer","format":"int64"},"comments":{"type":"string"},"controlId":{"type":"integer","format":"int64"},"evidences":{"type":"string"},"frameworkId":{"type":"integer","format":"int64"},"id":{"type":"integer","format":"int64"},"lastUpdate":{"type":"integer","format":"int64"},"name":{"type":"string"},"questionId":{"type":"integer","format":"int64"},"questionnaireNonConformityList":{"type":"array","items":{"$ref":"#/components/schemas/QuestionnaireNonConformity"}},"tomId":{"type":"integer","format":"int64"},"userId":{"type":"string"}}},"QuestionnaireCloudService":{"title":"QuestionnaireCloudService","type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"}}},"QuestionnaireDTO":{"title":"QuestionnaireDTO","required":["answerId","assuranceLevelId","comments","controlId","evidences","frameworkId","name","questionId","tomId","userId"],"type":"object","properties":{"answerId":{"type":"integer","description":"answerId","format":"int64"},"assuranceLevelId":{"type":"integer","description":"assuranceLevelId","format":"int64"},"comments":{"type":"string","description":"comments"},"controlId":{"type":"integer","description":"controlId","format":"int64"},"evidences":{"type":"string","description":"evidences"},"frameworkId":{"type":"integer","description":"frameworkId","format":"int64"},"id":{"type":"integer","format":"int64"},"lastUpdate":{"type":"integer","description":"lastUpdate","format":"int64"},"name":{"type":"string","description":"name"},"questionId":{"type":"integer","description":"questionId","format":"int64"},"tomId":{"type":"integer","description":"tomId","format":"int64"},"userId":{"type":"string","description":"userId"}},"description":"Questionnaire entity.\n\n@author Diego Rosado"},"QuestionnaireNonConformity":{"title":"QuestionnaireNonConformity","required":["comments","compliance"],"type":"object","properties":{"comments":{"type":"string"},"compliance":{"type":"string"},"questionnaireName":{"type":"string"},"tomId":{"type":"integer","format":"int64"}}},"QuestionnaireNonConformityDTO":{"title":"QuestionnaireNonConformityDTO","required":["comments","compliance","questionnaireName","tomId"],"type":"object","properties":{"comments":{"type":"string","description":"comments"},"compliance":{"type":"string","description":"compliance"},"questionnaireName":{"type":"string","description":"questionnaireName"},"tomId":{"type":"integer","description":"tomId","format":"int64"}},"description":"QuestionnaireNonConformityDTO entity.\n\n@author Diego Rosado"},"QuestionnaireQuestionsInfo":{"title":"QuestionnaireQuestionsInfo","type":"object","properties":{"basic":{"type":"integer","format":"int32"},"high":{"type":"integer","format":"int32"},"substantial":{"type":"integer","format":"int32"}}},"QuestionnaireWrapper":{"title":"QuestionnaireWrapper","type":"object","properties":{"id":{"type":"string"},"questionnaire":{"type":"array","items":{"$ref":"#/components/schemas/Questionnaire"}}}},"ReferenceTomDTO":{"title":"ReferenceTomDTO","required":["referenceTomImpl"],"type":"object","properties":{"id":{"type":"integer","format":"int64"},"referenceTomImpl":{"type":"string","description":"name"},"tom":{"$ref":"#/components/schemas/TomDTO"}},"description":"ReferenceTom entity.\n\n@author Diego Rosado"},"Resource":{"title":"Resource","required":["acronym","cloudService","name","resourceType","targetValue"],"type":"object","properties":{"acronym":{"type":"string"},"availabilityRisk":{"type":"string"},"cloudService":{"$ref":"#/components/schemas/CloudService"},"confidentialityRisk":{"type":"string"},"id":{"type":"integer","format":"int64"},"integrityRisk":{"type":"string"},"name":{"type":"string"},"resourceType":{"$ref":"#/components/schemas/ResourceType"},"securityControls":{"uniqueItems":true,"type":"array","items":{"$ref":"#/components/schemas/SecurityControl"}},"targetValue":{"$ref":"#/components/schemas/TargetValue"}}},"ResourceDTO":{"title":"ResourceDTO","required":["acronym","name"],"type":"object","properties":{"acronym":{"type":"string","description":"acronym"},"availabilityRisk":{"type":"string","description":"availabilityRisk"},"cloudService":{"$ref":"#/components/schemas/CloudServiceDTO"},"confidentialityRisk":{"type":"string","description":"confidentialityRisk"},"id":{"type":"integer","format":"int64"},"integrityRisk":{"type":"string","description":"integrityRisk"},"name":{"type":"string","description":"name"},"resourceType":{"$ref":"#/components/schemas/ResourceTypeDTO"},"targetValue":{"$ref":"#/components/schemas/TargetValueDTO"}},"description":"Resource entity.\n\n@author Diego Rosado"},"ResourceType":{"title":"ResourceType","required":["name","ontologyTerm"],"type":"object","properties":{"id":{"type":"integer","format":"int64"},"name":{"type":"string"},"ontologyTerm":{"type":"string"}}},"ResourceTypeDTO":{"title":"ResourceTypeDTO","required":["name","ontologyTerm"],"type":"object","properties":{"id":{"type":"integer","format":"int64"},"name":{"type":"string","description":"name"},"ontologyTerm":{"type":"string","description":"ontologyTerm"}},"description":"ResourceType entity.\n\n@author Diego Rosado"},"SecurityControl":{"title":"SecurityControl","required":["code","description","name","objective","securityControlCategory"],"type":"object","properties":{"code":{"type":"string"},"description":{"type":"string"},"id":{"type":"integer","format":"int64"},"name":{"type":"string"},"objective":{"type":"string"},"resources":{"uniqueItems":true,"type":"array","items":{"$ref":"#/components/schemas/Resource"}},"securityControlCategory":{"$ref":"#/components/schemas/SecurityControlCategory"},"similarControls":{"uniqueItems":true,"type":"array","items":{"$ref":"#/components/schemas/SimilarControl"}}}},"SecurityControlCategory":{"title":"SecurityControlCategory","required":["code","description","name","securityControlFramework"],"type":"object","properties":{"code":{"type":"string"},"description":{"type":"string"},"id":{"type":"integer","format":"int64"},"name":{"type":"string"},"securityControlFramework":{"$ref":"#/components/schemas/SecurityControlFramework"}}},"SecurityControlCategoryDTO":{"title":"SecurityControlCategoryDTO","required":["code","description","name"],"type":"object","properties":{"code":{"type":"string","description":"code"},"description":{"type":"string","description":"description"},"id":{"type":"integer","format":"int64"},"name":{"type":"string","description":"name"},"securityControlFramework":{"$ref":"#/components/schemas/SecurityControlFrameworkDTO"}},"description":"SecurityControlCategory entity.\n\n@author Diego Rosado"},"SecurityControlCategoryFullDTO":{"title":"SecurityControlCategoryFullDTO","required":["securityControlCategoryCode","securityControlCategoryDescription","securityControlCategoryId","securityControlCategoryName","securityControlList"],"type":"object","properties":{"securityControlCategoryCode":{"type":"string","description":"securityControlCategoryCode"},"securityControlCategoryDescription":{"type":"string","description":"securityControlCategoryDescription"},"securityControlCategoryId":{"type":"integer","description":"securityControlCategoryId","format":"int64"},"securityControlCategoryName":{"type":"string","description":"securityControlCategoryName"},"securityControlList":{"type":"array","description":"securityControlList","items":{"$ref":"#/components/schemas/SecurityControlFullDTO"}}},"description":"SecurityControlCategoryFullDTO entity."},"SecurityControlDTO":{"title":"SecurityControlDTO","required":["code","description","name","objective"],"type":"object","properties":{"code":{"type":"string","description":"code"},"description":{"type":"string","description":"description"},"id":{"type":"integer","format":"int64"},"name":{"type":"string","description":"name"},"objective":{"type":"string","description":"objective"},"resources":{"uniqueItems":true,"type":"array","items":{"$ref":"#/components/schemas/ResourceDTO"}},"securityControlCategory":{"$ref":"#/components/schemas/SecurityControlCategoryDTO"}},"description":"SecurityControl entity.\n\n@author Diego Rosado"},"SecurityControlFramework":{"title":"SecurityControlFramework","required":["description","name","version"],"type":"object","properties":{"cloudServices":{"uniqueItems":true,"type":"array","items":{"$ref":"#/components/schemas/CloudService"}},"description":{"type":"string"},"id":{"type":"integer","format":"int64"},"name":{"type":"string"},"version":{"type":"string"}}},"SecurityControlFrameworkDTO":{"title":"SecurityControlFrameworkDTO","required":["description","name","version"],"type":"object","properties":{"description":{"type":"string","description":"description"},"id":{"type":"integer","format":"int64"},"name":{"type":"string","description":"name"},"version":{"type":"string","description":"version"}},"description":"SecurityControlFramework entity.\n\n@author Diego Rosado"},"SecurityControlFrameworkFullDTO":{"title":"SecurityControlFrameworkFullDTO","required":["securityControlCategoryList","securityControlFrameworkDescription","securityControlFrameworkId","securityControlFrameworkName","securityControlFrameworkVersion","securityMetricList"],"type":"object","properties":{"securityControlCategoryList":{"type":"array","description":"securityControlCategoryList","items":{"$ref":"#/components/schemas/SecurityControlCategoryFullDTO"}},"securityControlFrameworkDescription":{"type":"string","description":"securityControlFrameworkDescription"},"securityControlFrameworkId":{"type":"integer","description":"securityControlFrameworkId","format":"int64"},"securityControlFrameworkName":{"type":"string","description":"securityControlFrameworkName"},"securityControlFrameworkVersion":{"type":"string","description":"securityControlFrameworkVersion"},"securityMetricList":{"type":"array","description":"securityMetricList","items":{"$ref":"#/components/schemas/SecurityMetricFullDTO"}}},"description":"SecurityControlFramework entity.\n\n@author Diego Rosado"},"SecurityControlFullDTO":{"title":"SecurityControlFullDTO","required":["securityControlCode","securityControlDescription","securityControlId","securityControlName","securityControlObjective","similarControlList","tomList"],"type":"object","properties":{"securityControlCode":{"type":"string","description":"securityControlCode"},"securityControlDescription":{"type":"string","description":"securityControlDescription"},"securityControlId":{"type":"integer","description":"securityControlId","format":"int64"},"securityControlName":{"type":"string","description":"securityControlName"},"securityControlObjective":{"type":"string","description":"securityControlObjective"},"similarControlList":{"type":"array","description":"similarControlList","items":{"$ref":"#/components/schemas/SimilarControlFullDTO"}},"tomList":{"type":"array","description":"tomList","items":{"$ref":"#/components/schemas/TomFullDTO"}}},"description":"SecurityControl entity."},"SecurityMetric":{"title":"SecurityMetric","required":["category","description","interval","name","operator","scale","source","targetValue","targetValueDatatype"],"type":"object","properties":{"category":{"type":"string"},"description":{"type":"string"},"id":{"type":"integer","format":"int64"},"interval":{"type":"string"},"keywords":{"type":"string"},"metricId":{"type":"string"},"name":{"type":"string"},"operator":{"type":"string"},"resourceType":{"$ref":"#/components/schemas/ResourceType"},"scale":{"type":"string"},"securityFeature":{"type":"string"},"source":{"type":"string"},"targetResourceType":{"type":"string"},"targetValue":{"type":"string"},"targetValueDatatype":{"type":"string"},"toms":{"uniqueItems":true,"type":"array","items":{"$ref":"#/components/schemas/Tom"}}}},"SecurityMetricDTO":{"title":"SecurityMetricDTO","required":["category","description","interval","keywords","name","operator","scale","securityFeature","source","targetValue","targetValueDatatype"],"type":"object","properties":{"category":{"type":"string","description":"category"},"description":{"type":"string","description":"description"},"id":{"type":"integer","format":"int64"},"interval":{"type":"string","description":"interval"},"keywords":{"type":"string","description":"keywords"},"metricId":{"type":"string"},"name":{"type":"string","description":"name"},"operator":{"type":"string","description":"operator"},"resourceType":{"$ref":"#/components/schemas/ResourceTypeDTO"},"scale":{"type":"string","description":"scale"},"securityFeature":{"type":"string","description":"security_feature"},"source":{"type":"string","description":"source"},"targetResourceType":{"type":"string","description":"targetResourceType pendiente de sacar a entidad TargetResourceType?"},"targetValue":{"type":"string"},"targetValueDatatype":{"type":"string","description":"targetValueDatatype pendiente de estudiar"},"toms":{"type":"array","items":{"$ref":"#/components/schemas/Tom"}}},"description":"SecurityMetric entity.\n\n@author Diego Rosado"},"SecurityMetricFullDTO":{"title":"SecurityMetricFullDTO","required":["relatedTom","securityMetricCategory","securityMetricDescription","securityMetricId","securityMetricInterval","securityMetricKeywords","securityMetricMetricId","securityMetricName","securityMetricOperator","securityMetricScale","securityMetricSecurityFeature","securityMetricSource","securityMetricTargetResourceType","securityMetricTargetValue","securityMetricTargetValueDatatype"],"type":"object","properties":{"relatedTom":{"description":"relatedTom","$ref":"#/components/schemas/TomFullDTO"},"securityMetricCategory":{"type":"string","description":"securityMetricCategory"},"securityMetricDescription":{"type":"string","description":"securityMetricDescription"},"securityMetricId":{"type":"integer","description":"securityMetricId","format":"int64"},"securityMetricInterval":{"type":"string","description":"securityMetricInterval"},"securityMetricKeywords":{"type":"string","description":"securityMetricKeywords"},"securityMetricMetricId":{"type":"string","description":"securityMetricMetricId"},"securityMetricName":{"type":"string","description":"securityMetricName"},"securityMetricOperator":{"type":"string","description":"securityMetricOperator"},"securityMetricScale":{"type":"string","description":"securityMetricScale"},"securityMetricSecurityFeature":{"type":"string","description":"securityMetricSecurityFeature"},"securityMetricSource":{"type":"string","description":"securityMetricSource"},"securityMetricTargetResourceType":{"type":"string","description":"securityMetricTargetResourceType"},"securityMetricTargetValue":{"type":"string","description":"securityMetricTargetValue"},"securityMetricTargetValueDatatype":{"type":"string","description":"securityMetricTargetValueDatatype"}},"description":"SecurityMetricFullDTO entity."},"SimilarControl":{"title":"SimilarControl","required":["code","name","securityControl","securityControlFrameworkName"],"type":"object","properties":{"code":{"type":"string"},"id":{"type":"integer","format":"int64"},"name":{"type":"string"},"securityControl":{"$ref":"#/components/schemas/SecurityControl"},"securityControlFrameworkName":{"type":"string"}}},"SimilarControlDTO":{"title":"SimilarControlDTO","required":["code","name","securityControlFrameworkName"],"type":"object","properties":{"code":{"type":"string","description":"code"},"id":{"type":"integer","format":"int64"},"name":{"type":"string","description":"name"},"securityControl":{"$ref":"#/components/schemas/SecurityControlDTO"},"securityControlFrameworkName":{"type":"string","description":"securityControlFrameworkName"}},"description":"SimilarControl entity.\n\n@author Diego Rosado"},"SimilarControlFullDTO":{"title":"SimilarControlFullDTO","required":["similarControlCode","similarControlId","similarControlName","similarControlSecurityControlFrameworkName"],"type":"object","properties":{"similarControlCode":{"type":"string","description":"similarControlCode"},"similarControlId":{"type":"integer","description":"similarControlId","format":"int64"},"similarControlName":{"type":"string","description":"similarControlName"},"similarControlSecurityControlFrameworkName":{"type":"string","description":"similarControlecurityControlFrameworkName"}},"description":"SimilarControlFullDTO entity."},"TargetValue":{"title":"TargetValue","required":["value"],"type":"object","properties":{"id":{"type":"integer","format":"int64"},"value":{"type":"string"}}},"TargetValueDTO":{"title":"TargetValueDTO","required":["value"],"type":"object","properties":{"id":{"type":"integer","format":"int64"},"value":{"type":"string","description":"value"}},"description":"TargetValue entity.\n\n@author Diego Rosado"},"Tom":{"title":"Tom","required":["code","description","name","securityControl","type"],"type":"object","properties":{"assuranceLevel":{"type":"string","enum":["Basic","High","Substantial"]},"code":{"type":"string"},"description":{"type":"string"},"guidance":{"type":"string"},"id":{"type":"integer","format":"int64"},"name":{"type":"string"},"securityControl":{"$ref":"#/components/schemas/SecurityControl"},"securityMetrics":{"uniqueItems":true,"type":"array","items":{"$ref":"#/components/schemas/SecurityMetric"}},"type":{"type":"string","enum":["ORGANIZATIONAL","ORGANIZATIONAL_TECHNICAL","TECHNICAL"]}}},"TomDTO":{"title":"TomDTO","required":["code","description","name","type"],"type":"object","properties":{"assuranceLevel":{"type":"string","description":"assuranceLevel","enum":["Basic","High","Substantial"]},"code":{"type":"string","description":"code"},"description":{"type":"string","description":"description"},"guidance":{"type":"string","description":"guidance"},"id":{"type":"integer","format":"int64"},"name":{"type":"string","description":"name"},"securityControl":{"$ref":"#/components/schemas/SecurityControlDTO"},"securityMetrics":{"type":"array","items":{"$ref":"#/components/schemas/SecurityMetric"}},"type":{"type":"string","description":"type","enum":["ORGANIZATIONAL","ORGANIZATIONAL_TECHNICAL","TECHNICAL"]}},"description":"Tom entity.\n\n@author Diego Rosado"},"TomFullDTO":{"title":"TomFullDTO","required":["tomAssuranceLevel","tomCode","tomDescription","tomId","tomName","tomType"],"type":"object","properties":{"tomAssuranceLevel":{"type":"string","description":"tomAssuranceLevel"},"tomCode":{"type":"string","description":"tomCode"},"tomDescription":{"type":"string","description":"tomDescription"},"tomId":{"type":"integer","description":"tomId","format":"int64"},"tomName":{"type":"string","description":"tomName"},"tomType":{"type":"string","description":"tomType"}},"description":"Tom entity."},"UserDTO":{"title":"UserDTO","type":"object","properties":{"id":{"type":"string"},"login":{"type":"string"}}}}}} \ No newline at end of file diff --git a/release/docker-compose-keycloak-setup.yaml b/release/docker-compose-keycloak-setup.yaml index 7e79f74d6638e47d5dfb4fa2a42472ce6d30da6e..65f07166c8e14c9a250b1609c4ae7aa1b99da518 100755 --- a/release/docker-compose-keycloak-setup.yaml +++ b/release/docker-compose-keycloak-setup.yaml @@ -1,4 +1,4 @@ -services: - keycloak-setup: - image: optima-medina-docker-dev.artifact.tecnalia.com/wp2/t22/catalogue/keycloak-setup:${RELEASE_VERSION:?err} - +services: + keycloak-setup: + image: optima-medina-docker-dev.artifact.tecnalia.com/wp2/t22/catalogue/keycloak-setup:${RELEASE_VERSION:?err} + \ No newline at end of file diff --git a/release/docker-compose.yaml b/release/docker-compose.yaml index 474344856c64b3bbac88a9587174ee5067585c52..a728685f3e0116800ae7c179af00876cf5ccdf4e 100755 --- a/release/docker-compose.yaml +++ b/release/docker-compose.yaml @@ -1,13 +1,13 @@ -services: - medina-mysql: - image: optima-medina-docker-dev.artifact.tecnalia.com/wp2/t22/catalogue/mysql:${RELEASE_VERSION:?err} - - jhipster-registry: - image: optima-medina-docker-dev.artifact.tecnalia.com/wp2/t22/catalogue/registry:${RELEASE_VERSION:?err} - - cocgateway-app: - image: optima-medina-docker-dev.artifact.tecnalia.com/wp2/t22/catalogue/gateway:${RELEASE_VERSION:?err} - - cocbackend-app: - image: optima-medina-docker-dev.artifact.tecnalia.com/wp2/t22/catalogue/backend:${RELEASE_VERSION:?err} - +services: + medina-mysql: + image: optima-medina-docker-dev.artifact.tecnalia.com/wp2/t22/catalogue/mysql:${RELEASE_VERSION:?err} + + jhipster-registry: + image: optima-medina-docker-dev.artifact.tecnalia.com/wp2/t22/catalogue/registry:${RELEASE_VERSION:?err} + + cocgateway-app: + image: optima-medina-docker-dev.artifact.tecnalia.com/wp2/t22/catalogue/gateway:${RELEASE_VERSION:?err} + + cocbackend-app: + image: optima-medina-docker-dev.artifact.tecnalia.com/wp2/t22/catalogue/backend:${RELEASE_VERSION:?err} +