diff --git a/.github/workflows/build-quality-check.yml b/.github/workflows/build-quality-check.yml index e8ef2422..670a79fb 100644 --- a/.github/workflows/build-quality-check.yml +++ b/.github/workflows/build-quality-check.yml @@ -43,18 +43,18 @@ jobs: # exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide flake8 ./libs/python/ --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics - name: Log in to the Container registry - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: registry: ${{ env.REGISTRY }} username: ${{ github.actor }} password: ${{ secrets.GITHUB_TOKEN }} - name: Extract metadata (tags, labels) for Docker id: meta - uses: docker/metadata-action@v4 + uses: docker/metadata-action@v5 with: images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} - name: Build Docker image - uses: docker/build-push-action@v4.1.1 + uses: docker/build-push-action@v5.0.0 with: context: . file: ./config/Dockerfile diff --git a/.github/workflows/docker-dev-build-and-push.yml b/.github/workflows/docker-dev-build-and-push.yml index 4b3f8a0e..3eca7681 100644 --- a/.github/workflows/docker-dev-build-and-push.yml +++ b/.github/workflows/docker-dev-build-and-push.yml @@ -20,10 +20,10 @@ jobs: ref: ${{ env.DEV_BRANCH }} - name: Set up QEMU - uses: docker/setup-qemu-action@v2 + uses: docker/setup-qemu-action@v3 - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v2 + uses: docker/setup-buildx-action@v3 with: driver-opts: | image=moby/buildkit:v0.11.6 @@ -31,7 +31,7 @@ jobs: # buildkitd-flags: --debug - name: Log in to the Container registry - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: registry: ${{ env.REGISTRY }} username: ${{ github.actor }} @@ -39,12 +39,12 @@ jobs: - name: Extract metadata (tags, labels) for Docker id: meta - uses: docker/metadata-action@v4 + uses: docker/metadata-action@v5 with: images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} - name: Build Docker image - uses: docker/build-push-action@v4.1.1 + uses: docker/build-push-action@v5.0.0 with: context: . platforms: linux/amd64 diff --git a/.github/workflows/docker-release-build-and-push.yml b/.github/workflows/docker-release-build-and-push.yml index 929cf126..8326ae29 100644 --- a/.github/workflows/docker-release-build-and-push.yml +++ b/.github/workflows/docker-release-build-and-push.yml @@ -21,10 +21,10 @@ jobs: ref: ${{ github.event.release.commitish }} - name: Set up QEMU - uses: docker/setup-qemu-action@v2 + uses: docker/setup-qemu-action@v3 - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v2 + uses: docker/setup-buildx-action@v3 with: driver-opts: | image=moby/buildkit:v0.11.6 @@ -33,7 +33,7 @@ jobs: # buildkitd-flags: --debug - name: Log in to the Container registry - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: registry: ${{ env.REGISTRY }} username: ${{ github.actor }} @@ -41,12 +41,12 @@ jobs: - name: Extract metadata (tags, labels) for Docker id: meta - uses: docker/metadata-action@v4 + uses: docker/metadata-action@v5 with: images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} - name: Build Docker image - uses: docker/build-push-action@v4.1.1 + uses: docker/build-push-action@v5.0.0 with: context: . platforms: linux/amd64 diff --git a/.github/workflows/stage-integration-test-full.yml b/.github/workflows/stage-integration-test-full.yml index 8c2a22ae..927eface 100644 --- a/.github/workflows/stage-integration-test-full.yml +++ b/.github/workflows/stage-integration-test-full.yml @@ -31,24 +31,24 @@ jobs: steps: - uses: actions/checkout@v4 - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v2 + uses: docker/setup-buildx-action@v3 with: driver-opts: | image=moby/buildkit:v0.10.6 - name: Log in to the Container registry - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: registry: ${{ env.REGISTRY }} username: ${{ github.actor }} password: ${{ secrets.GITHUB_TOKEN }} - name: Extract metadata (tags, labels) for Docker id: meta - uses: docker/metadata-action@v4 + uses: docker/metadata-action@v5 with: images: ${{ env.REGISTRY }}/${{ github.repository }}/${{ env.IMAGE_NAME }} - name: Build Docker image id: dockerbuild - uses: docker/build-push-action@v4.1.1 + uses: docker/build-push-action@v5.0.0 with: context: . file: ./config/Dockerfile diff --git a/.github/workflows/stage-integration-test-slim.yml b/.github/workflows/stage-integration-test-slim.yml index 3f5182e2..47c05f11 100644 --- a/.github/workflows/stage-integration-test-slim.yml +++ b/.github/workflows/stage-integration-test-slim.yml @@ -31,24 +31,24 @@ jobs: steps: - uses: actions/checkout@v4 - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v2 + uses: docker/setup-buildx-action@v3 with: driver-opts: | image=moby/buildkit:v0.10.6 - name: Log in to the Container registry - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: registry: ${{ env.REGISTRY }} username: ${{ github.actor }} password: ${{ secrets.GITHUB_TOKEN }} - name: Extract metadata (tags, labels) for Docker id: meta - uses: docker/metadata-action@v4 + uses: docker/metadata-action@v5 with: images: ${{ env.REGISTRY }}/${{ github.repository }}/${{ env.IMAGE_NAME }} - name: Build Docker image id: dockerbuild - uses: docker/build-push-action@v4.1.1 + uses: docker/build-push-action@v5.0.0 with: context: . file: ./config/Dockerfile diff --git a/config/python/requirements.txt b/config/python/requirements.txt index ca0907a9..c3fee74f 100644 --- a/config/python/requirements.txt +++ b/config/python/requirements.txt @@ -5,7 +5,7 @@ charset-normalizer==3.2.0 idna==3.4 inquirer==3.1.3 Jinja2==3.1.2 -jsonschema==4.19.0 +jsonschema==4.19.1 MarkupSafe==2.1.3 mccabe==0.7.0 ninja2==0.1 @@ -17,7 +17,7 @@ python-editor==1.0.4 readchar==4.0.5 requests==2.31.0 six==1.16.0 -urllib3==2.0.4 +urllib3==2.0.5 wcwidth==0.2.6 pyyaml==6.0.1 xmltodict==0.13.0 diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-0-then-allof-0-then-properties-parameters-properties-abap-system-id.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-0-then-allof-0-then-properties-parameters-properties-abap-system-id.md index 75b5cb09..982c0b3c 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-0-then-allof-0-then-properties-parameters-properties-abap-system-id.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-0-then-allof-0-then-properties-parameters-properties-abap-system-id.md @@ -11,10 +11,10 @@ **pattern**: the string must match the following regular expression: ```regexp -^(?!ADD|ALL|AMD|AND|ANY|ARE|ASC|AUX|AVG|BIT|CDC|COM|CON|DBA|END|EPS|FOR|GET|GID|IBM|INT|KEY|LOG|LPT|MAP|MAX|MIN|MON|NIX|NOT|NUL|OFF|OLD|OMS|OUT|PAD|PRN|RAW|REF|ROW|SAP|SET|SGA|SHG|SID|SQL|SUM|SYS|TMP|TOP|UID|USE|USR|VAR)[A-Z][A-Z0-9]{2}$ +^(?!ADD|ALL|AMD|ADM|AND|ANY|ARE|ASC|AUX|AVG|BIT|CDC|COM|CON|DAA|DBA|ECO|END|EPS|FOR|GET|GID|IBM|INT|KEY|LOG|LPT|MAP|MAX|MIN|MON|NIX|NOT|NUL|OFF|OLD|OMS|OUT|PAD|PRN|RAW|REF|ROW|SAP|SET|SGA|SHG|SID|SQL|SUM|SYS|TMP|TOP|UID|USE|USR|VAR)[A-Z][A-Z0-9]{2}$ ``` -[try pattern](https://regexr.com/?expression=%5E\(%3F!ADD%7CALL%7CAMD%7CAND%7CANY%7CARE%7CASC%7CAUX%7CAVG%7CBIT%7CCDC%7CCOM%7CCON%7CDBA%7CEND%7CEPS%7CFOR%7CGET%7CGID%7CIBM%7CINT%7CKEY%7CLOG%7CLPT%7CMAP%7CMAX%7CMIN%7CMON%7CNIX%7CNOT%7CNUL%7COFF%7COLD%7COMS%7COUT%7CPAD%7CPRN%7CRAW%7CREF%7CROW%7CSAP%7CSET%7CSGA%7CSHG%7CSID%7CSQL%7CSUM%7CSYS%7CTMP%7CTOP%7CUID%7CUSE%7CUSR%7CVAR\)%5BA-Z%5D%5BA-Z0-9%5D%7B2%7D%24 "try regular expression with regexr.com") +[try pattern](https://regexr.com/?expression=%5E\(%3F!ADD%7CALL%7CAMD%7CADM%7CAND%7CANY%7CARE%7CASC%7CAUX%7CAVG%7CBIT%7CCDC%7CCOM%7CCON%7CDAA%7CDBA%7CECO%7CEND%7CEPS%7CFOR%7CGET%7CGID%7CIBM%7CINT%7CKEY%7CLOG%7CLPT%7CMAP%7CMAX%7CMIN%7CMON%7CNIX%7CNOT%7CNUL%7COFF%7COLD%7COMS%7COUT%7CPAD%7CPRN%7CRAW%7CREF%7CROW%7CSAP%7CSET%7CSGA%7CSHG%7CSID%7CSQL%7CSUM%7CSYS%7CTMP%7CTOP%7CUID%7CUSE%7CUSR%7CVAR\)%5BA-Z%5D%5BA-Z0-9%5D%7B2%7D%24 "try regular expression with regexr.com") ## sapsystemname Default Value diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-0-then-allof-0-then-properties-parameters.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-0-then-allof-0-then-properties-parameters.md index e5bca1e5..bc05a52c 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-0-then-allof-0-then-properties-parameters.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-0-then-allof-0-then-properties-parameters.md @@ -197,10 +197,10 @@ Enter a valid system ID (SID) for the ABAP system. The ID must consist of exactl **pattern**: the string must match the following regular expression: ```regexp -^(?!ADD|ALL|AMD|AND|ANY|ARE|ASC|AUX|AVG|BIT|CDC|COM|CON|DBA|END|EPS|FOR|GET|GID|IBM|INT|KEY|LOG|LPT|MAP|MAX|MIN|MON|NIX|NOT|NUL|OFF|OLD|OMS|OUT|PAD|PRN|RAW|REF|ROW|SAP|SET|SGA|SHG|SID|SQL|SUM|SYS|TMP|TOP|UID|USE|USR|VAR)[A-Z][A-Z0-9]{2}$ +^(?!ADD|ALL|AMD|ADM|AND|ANY|ARE|ASC|AUX|AVG|BIT|CDC|COM|CON|DAA|DBA|ECO|END|EPS|FOR|GET|GID|IBM|INT|KEY|LOG|LPT|MAP|MAX|MIN|MON|NIX|NOT|NUL|OFF|OLD|OMS|OUT|PAD|PRN|RAW|REF|ROW|SAP|SET|SGA|SHG|SID|SQL|SUM|SYS|TMP|TOP|UID|USE|USR|VAR)[A-Z][A-Z0-9]{2}$ ``` -[try pattern](https://regexr.com/?expression=%5E\(%3F!ADD%7CALL%7CAMD%7CAND%7CANY%7CARE%7CASC%7CAUX%7CAVG%7CBIT%7CCDC%7CCOM%7CCON%7CDBA%7CEND%7CEPS%7CFOR%7CGET%7CGID%7CIBM%7CINT%7CKEY%7CLOG%7CLPT%7CMAP%7CMAX%7CMIN%7CMON%7CNIX%7CNOT%7CNUL%7COFF%7COLD%7COMS%7COUT%7CPAD%7CPRN%7CRAW%7CREF%7CROW%7CSAP%7CSET%7CSGA%7CSHG%7CSID%7CSQL%7CSUM%7CSYS%7CTMP%7CTOP%7CUID%7CUSE%7CUSR%7CVAR\)%5BA-Z%5D%5BA-Z0-9%5D%7B2%7D%24 "try regular expression with regexr.com") +[try pattern](https://regexr.com/?expression=%5E\(%3F!ADD%7CALL%7CAMD%7CADM%7CAND%7CANY%7CARE%7CASC%7CAUX%7CAVG%7CBIT%7CCDC%7CCOM%7CCON%7CDAA%7CDBA%7CECO%7CEND%7CEPS%7CFOR%7CGET%7CGID%7CIBM%7CINT%7CKEY%7CLOG%7CLPT%7CMAP%7CMAX%7CMIN%7CMON%7CNIX%7CNOT%7CNUL%7COFF%7COLD%7COMS%7COUT%7CPAD%7CPRN%7CRAW%7CREF%7CROW%7CSAP%7CSET%7CSGA%7CSHG%7CSID%7CSQL%7CSUM%7CSYS%7CTMP%7CTOP%7CUID%7CUSE%7CUSR%7CVAR\)%5BA-Z%5D%5BA-Z0-9%5D%7B2%7D%24 "try regular expression with regexr.com") ### sapsystemname Default Value diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-100-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-100-if-properties-name.md index 7482b324..8b460896 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-100-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-100-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"sap-calm" +"sap-build-apps-runtime" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-100-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-100-if.md index c0f3030f..661c19d9 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-100-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-100-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"sap-calm" +"sap-build-apps-runtime" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-100-then-allof-0-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-100-then-allof-0-if-properties-plan.md index 4f94ce99..126392b1 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-100-then-allof-0-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-100-then-allof-0-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"default" +"standard" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-100-then-allof-0-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-100-then-allof-0-if.md index f7ae4a84..0bc66da6 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-100-then-allof-0-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-100-then-allof-0-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"default" +"standard" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-100-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-100-then-allof-0-then.md index de8198f9..85fb93e7 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-100-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-100-then-allof-0-then.md @@ -10,12 +10,9 @@ unknown ## plan -service plan >default< for >sap-calm< is available in data centers: +service plan >standard< for >sap-build-apps-runtime< is available in data centers: -* {'region': 'ap10', 'name': 'Australia (Sydney)'} * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} -* {'region': 'eu20', 'name': 'Europe (Netherlands)'} -* {'region': 'jp10', 'name': 'Japan (Tokyo)'} * {'region': 'us10', 'name': 'US East (VA)'} `plan` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-100-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-100-then-properties-plan.md index 916e7975..248cb3df 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-100-then-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-100-then-properties-plan.md @@ -6,6 +6,6 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :---------- | :---------- | -| `"default"` | | +| Value | Explanation | +| :----------- | :---------- | +| `"standard"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-100-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-100-then.md index fe7ea2be..6a900377 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-100-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-100-then.md @@ -35,13 +35,13 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :---------- | :---------- | -| `"default"` | | +| Value | Explanation | +| :----------- | :---------- | +| `"standard"` | | ## name -SAP Cloud ALM, memory extension: Add extensions for special use cases that exceed the standard functions of SAP Cloud ALM under Enterprise Support. Excessively store and extend data, e.g. to upload additional data, increase run retention time, add process management assets and tenants. Leverage the development environment of SAP BTP, for example, by your own, dashboards, or enhancements. +SAP Build Apps runtime: The runtime service for SAP Build Apps. Allows connectivity to visual cloud functions applications developed and deployed on the SAP Build Apps runtime. A subscription to SAP Build Apps is required to use this service. `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-101-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-101-if-properties-name.md index d483dd86..7482b324 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-101-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-101-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"sap-document-information-extraction" +"sap-calm" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-101-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-101-if.md index b24ffb8b..bb643aca 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-101-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-101-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"sap-document-information-extraction" +"sap-calm" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-101-then-allof-0-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-101-then-allof-0-if-properties-plan.md index 9264f7d4..4f94ce99 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-101-then-allof-0-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-101-then-allof-0-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"blocks_of_100" +"default" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-101-then-allof-0-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-101-then-allof-0-if.md index 12e6b896..bf75d93a 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-101-then-allof-0-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-101-then-allof-0-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"blocks_of_100" +"default" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-101-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-101-then-allof-0-then.md index 65f7207f..71412c60 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-101-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-101-then-allof-0-then.md @@ -10,11 +10,11 @@ unknown ## plan -service plan >blocks\_of\_100< for >sap-document-information-extraction< is available in data centers: +service plan >default< for >sap-calm< is available in data centers: * {'region': 'ap10', 'name': 'Australia (Sydney)'} * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} -* {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} +* {'region': 'eu20', 'name': 'Europe (Netherlands)'} * {'region': 'jp10', 'name': 'Japan (Tokyo)'} * {'region': 'us10', 'name': 'US East (VA)'} diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-101-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-101-then-properties-plan.md index 0aba132f..916e7975 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-101-then-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-101-then-properties-plan.md @@ -6,8 +6,6 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :---------------- | :---------- | -| `"blocks_of_100"` | | -| `"default"` | | -| `"free"` | | +| Value | Explanation | +| :---------- | :---------- | +| `"default"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-101-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-101-then.md index 077bba50..1e3dca8a 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-101-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-101-then.md @@ -6,10 +6,6 @@ all of * [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-101-then-allof-0.md "check type definition") -* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-101-then-allof-1.md "check type definition") - -* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-101-then-allof-2.md "check type definition") - # then Properties | Property | Type | Required | Nullable | Defined by | @@ -39,15 +35,13 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :---------------- | :---------- | -| `"blocks_of_100"` | | -| `"default"` | | -| `"free"` | | +| Value | Explanation | +| :---------- | :---------- | +| `"default"` | | ## name -Document Information Extraction: Document Information Extraction helps you to process various documents that have content in headers and tables. You can use the extracted information, for example, to automatically process payables, invoices, or payment notes while making sure that invoices and payables match. +SAP Cloud ALM, memory extension: Add extensions for special use cases that exceed the standard functions of SAP Cloud ALM under Enterprise Support. Excessively store and extend data, e.g. to upload additional data, increase run retention time, add process management assets and tenants. Leverage the development environment of SAP BTP, for example, by your own, dashboards, or enhancements. `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-102-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-102-if-properties-name.md index 14bd7172..d483dd86 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-102-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-102-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"sap-graph" +"sap-document-information-extraction" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-102-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-102-if.md index 55e8ee13..f5034068 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-102-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-102-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"sap-graph" +"sap-document-information-extraction" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-102-then-allof-0-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-102-then-allof-0-if-properties-plan.md index ea600e6d..9264f7d4 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-102-then-allof-0-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-102-then-allof-0-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"api" +"blocks_of_100" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-102-then-allof-0-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-102-then-allof-0-if.md index c5d53503..2aa2c6c6 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-102-then-allof-0-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-102-then-allof-0-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"api" +"blocks_of_100" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-102-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-102-then-allof-0-then.md index 28df4e77..bc685169 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-102-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-102-then-allof-0-then.md @@ -10,13 +10,13 @@ unknown ## plan -service plan >api< for >sap-graph< is available in data centers: +service plan >blocks\_of\_100< for >sap-document-information-extraction< is available in data centers: * {'region': 'ap10', 'name': 'Australia (Sydney)'} * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} -* {'region': 'eu30', 'name': 'Europe (Frankfurt)'} +* {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} +* {'region': 'jp10', 'name': 'Japan (Tokyo)'} * {'region': 'us10', 'name': 'US East (VA)'} -* {'region': 'us30', 'name': 'US Central (IA)'} `plan` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-101-then-allof-1-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-102-then-allof-1-if-properties-plan.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-101-then-allof-1-if-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-102-then-allof-1-if-properties-plan.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-101-then-allof-1-if-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-102-then-allof-1-if-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-101-then-allof-1-if-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-102-then-allof-1-if-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-101-then-allof-1-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-102-then-allof-1-if.md similarity index 83% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-101-then-allof-1-if.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-102-then-allof-1-if.md index 474a47be..d817b128 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-101-then-allof-1-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-102-then-allof-1-if.md @@ -6,7 +6,7 @@ unknown | Property | Type | Required | Nullable | Defined by | | :------------ | :------------ | :------- | :------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-101-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/101/then/allOf/1/if/properties/plan") | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-102-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/102/then/allOf/1/if/properties/plan") | ## plan @@ -20,7 +20,7 @@ unknown * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-101-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/101/then/allOf/1/if/properties/plan") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-102-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/102/then/allOf/1/if/properties/plan") ### plan Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-101-then-allof-1-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-102-then-allof-1-then-properties-plan.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-101-then-allof-1-then-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-102-then-allof-1-then-properties-plan.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-101-then-allof-1-then-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-102-then-allof-1-then-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-101-then-allof-1-then-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-102-then-allof-1-then-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-101-then-allof-1-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-102-then-allof-1-then.md similarity index 85% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-101-then-allof-1-then.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-102-then-allof-1-then.md index 2c65367c..414c55a7 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-101-then-allof-1-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-102-then-allof-1-then.md @@ -6,7 +6,7 @@ unknown | Property | Type | Required | Nullable | Defined by | | :------------ | :------------ | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-101-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/101/then/allOf/1/then/properties/plan") | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-102-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/102/then/allOf/1/then/properties/plan") | ## plan @@ -26,7 +26,7 @@ service plan >default< for >sap-document-information-extraction< is available in * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-101-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/101/then/allOf/1/then/properties/plan") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-102-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/102/then/allOf/1/then/properties/plan") ### plan Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-101-then-allof-1.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-102-then-allof-1.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-101-then-allof-1.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-102-then-allof-1.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-101-then-allof-2-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-102-then-allof-2-if-properties-plan.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-101-then-allof-2-if-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-102-then-allof-2-if-properties-plan.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-101-then-allof-2-if-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-102-then-allof-2-if-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-101-then-allof-2-if-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-102-then-allof-2-if-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-101-then-allof-2-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-102-then-allof-2-if.md similarity index 83% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-101-then-allof-2-if.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-102-then-allof-2-if.md index 4a72f277..730e7be0 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-101-then-allof-2-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-102-then-allof-2-if.md @@ -6,7 +6,7 @@ unknown | Property | Type | Required | Nullable | Defined by | | :------------ | :------------ | :------- | :------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-101-then-allof-2-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/101/then/allOf/2/if/properties/plan") | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-102-then-allof-2-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/102/then/allOf/2/if/properties/plan") | ## plan @@ -20,7 +20,7 @@ unknown * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-101-then-allof-2-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/101/then/allOf/2/if/properties/plan") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-102-then-allof-2-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/102/then/allOf/2/if/properties/plan") ### plan Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-101-then-allof-2-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-102-then-allof-2-then-properties-plan.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-101-then-allof-2-then-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-102-then-allof-2-then-properties-plan.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-101-then-allof-2-then-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-102-then-allof-2-then-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-101-then-allof-2-then-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-102-then-allof-2-then-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-101-then-allof-2-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-102-then-allof-2-then.md similarity index 85% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-101-then-allof-2-then.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-102-then-allof-2-then.md index 4cd82f0b..f000b758 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-101-then-allof-2-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-102-then-allof-2-then.md @@ -6,7 +6,7 @@ unknown | Property | Type | Required | Nullable | Defined by | | :------------ | :------------ | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-101-then-allof-2-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/101/then/allOf/2/then/properties/plan") | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-102-then-allof-2-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/102/then/allOf/2/then/properties/plan") | ## plan @@ -26,7 +26,7 @@ service plan >free< for >sap-document-information-extraction< is available in da * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-101-then-allof-2-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/101/then/allOf/2/then/properties/plan") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-102-then-allof-2-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/102/then/allOf/2/then/properties/plan") ### plan Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-101-then-allof-2.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-102-then-allof-2.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-101-then-allof-2.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-102-then-allof-2.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-102-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-102-then-properties-plan.md index c2540069..0aba132f 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-102-then-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-102-then-properties-plan.md @@ -6,6 +6,8 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :------ | :---------- | -| `"api"` | | +| Value | Explanation | +| :---------------- | :---------- | +| `"blocks_of_100"` | | +| `"default"` | | +| `"free"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-102-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-102-then.md index 681e8005..5a37adcf 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-102-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-102-then.md @@ -6,6 +6,10 @@ all of * [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-102-then-allof-0.md "check type definition") +* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-102-then-allof-1.md "check type definition") + +* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-102-then-allof-2.md "check type definition") + # then Properties | Property | Type | Required | Nullable | Defined by | @@ -35,13 +39,15 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :------ | :---------- | -| `"api"` | | +| Value | Explanation | +| :---------------- | :---------- | +| `"blocks_of_100"` | | +| `"default"` | | +| `"free"` | | ## name -SAP Graph: SAP Graph is a new unified API for SAP, using modern open standards like OData v4. With SAP Graph, developers access SAP-managed business data as a single semantically connected data graph, spanning the suite of SAP products. Targeting SAP's ecosystem of developers and customers, SAP Graph's one API and Business Data Graph reduce the cost and complexity of creating and deploying reusable extension applications. The unified API exposes a unified graph-like model of business objects (entities) and relationships. As a BTP service, SAP Graph is compatible with SAP Cloud Application Programming (CAP) extension solutions, events managed via SAP Event Mesh, and No-Code/Low-Code applications like SAP AppGyver. SAP Graph uses open standards, such as OData v.4 and OAuth, thus allowing you to easily build applications and extensions for the SAP Intelligent Enterprise. +Document Information Extraction: Document Information Extraction helps you to process various documents that have content in headers and tables. You can use the extracted information, for example, to automatically process payables, invoices, or payment notes while making sure that invoices and payables match. `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-103-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-103-if-properties-name.md index a6972da2..14bd7172 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-103-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-103-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"sdm" +"sap-graph" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-103-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-103-if.md index 330f6c11..f3083843 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-103-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-103-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"sdm" +"sap-graph" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-103-then-allof-0-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-103-then-allof-0-if-properties-plan.md index c97f5143..ea600e6d 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-103-then-allof-0-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-103-then-allof-0-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"free" +"api" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-103-then-allof-0-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-103-then-allof-0-if.md index 921835d9..9dae6c92 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-103-then-allof-0-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-103-then-allof-0-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"free" +"api" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-103-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-103-then-allof-0-then.md index b18d11a1..e3dd379f 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-103-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-103-then-allof-0-then.md @@ -10,24 +10,12 @@ unknown ## plan -service plan >free< for >sdm< is available in data centers: +service plan >api< for >sap-graph< is available in data centers: * {'region': 'ap10', 'name': 'Australia (Sydney)'} -* {'region': 'ap11', 'name': 'Singapore'} -* {'region': 'ap12', 'name': 'South Korea (Seoul)'} -* {'region': 'ap20', 'name': 'Australia (Sydney) Azure'} -* {'region': 'ap21', 'name': 'Singapore'} -* {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} -* {'region': 'ca10', 'name': 'Canada (Montreal)'} * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} -* {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} -* {'region': 'eu20', 'name': 'Europe (Netherlands)'} * {'region': 'eu30', 'name': 'Europe (Frankfurt)'} -* {'region': 'jp10', 'name': 'Japan (Tokyo)'} -* {'region': 'jp20', 'name': 'Japan (Tokyo)'} * {'region': 'us10', 'name': 'US East (VA)'} -* {'region': 'us20', 'name': 'US West (WA)'} -* {'region': 'us21', 'name': 'US East (VA)'} * {'region': 'us30', 'name': 'US Central (IA)'} `plan` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-103-then-allof-1-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-103-then-allof-1-then.md deleted file mode 100644 index 5702c480..00000000 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-103-then-allof-1-then.md +++ /dev/null @@ -1,45 +0,0 @@ -## then Type - -unknown - -# then Properties - -| Property | Type | Required | Nullable | Defined by | -| :------------ | :------------ | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-103-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/103/then/allOf/1/then/properties/plan") | - -## plan - -service plan >standard< for >sdm< is available in data centers: - -* {'region': 'ap10', 'name': 'Australia (Sydney)'} -* {'region': 'ap11', 'name': 'Singapore'} -* {'region': 'ap12', 'name': 'South Korea (Seoul)'} -* {'region': 'ap20', 'name': 'Australia (Sydney) Azure'} -* {'region': 'ap21', 'name': 'Singapore'} -* {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} -* {'region': 'ca10', 'name': 'Canada (Montreal)'} -* {'region': 'eu10', 'name': 'Europe (Frankfurt)'} -* {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} -* {'region': 'eu20', 'name': 'Europe (Netherlands)'} -* {'region': 'eu30', 'name': 'Europe (Frankfurt)'} -* {'region': 'jp10', 'name': 'Japan (Tokyo)'} -* {'region': 'jp20', 'name': 'Japan (Tokyo)'} -* {'region': 'us10', 'name': 'US East (VA)'} -* {'region': 'us20', 'name': 'US West (WA)'} -* {'region': 'us21', 'name': 'US East (VA)'} -* {'region': 'us30', 'name': 'US Central (IA)'} - -`plan` - -* is optional - -* Type: unknown - -* cannot be null - -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-103-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/103/then/allOf/1/then/properties/plan") - -### plan Type - -unknown diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-103-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-103-then-properties-plan.md index 49c8bb8c..c2540069 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-103-then-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-103-then-properties-plan.md @@ -6,7 +6,6 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :----------- | :---------- | -| `"free"` | | -| `"standard"` | | +| Value | Explanation | +| :------ | :---------- | +| `"api"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-103-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-103-then.md index 3399e9a8..091774f1 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-103-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-103-then.md @@ -6,8 +6,6 @@ all of * [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-103-then-allof-0.md "check type definition") -* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-103-then-allof-1.md "check type definition") - # then Properties | Property | Type | Required | Nullable | Defined by | @@ -37,14 +35,13 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :----------- | :---------- | -| `"free"` | | -| `"standard"` | | +| Value | Explanation | +| :------ | :---------- | +| `"api"` | | ## name -Document Management Service, Integration Option: Leverage the APIs of SAP Document Management service and build your own document management layer to enable document management capabilities for your business applications. You can also embed the easy-to-use, UI5-based, reusable UI component of Document Management into your application for document management scenarios. +SAP Graph: SAP Graph is a new unified API for SAP, using modern open standards like OData v4. With SAP Graph, developers access SAP-managed business data as a single semantically connected data graph, spanning the suite of SAP products. Targeting SAP's ecosystem of developers and customers, SAP Graph's one API and Business Data Graph reduce the cost and complexity of creating and deploying reusable extension applications. The unified API exposes a unified graph-like model of business objects (entities) and relationships. As a BTP service, SAP Graph is compatible with SAP Cloud Application Programming (CAP) extension solutions, events managed via SAP Event Mesh, and No-Code/Low-Code applications like SAP AppGyver. SAP Graph uses open standards, such as OData v.4 and OAuth, thus allowing you to easily build applications and extensions for the SAP Intelligent Enterprise. `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-104-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-104-if-properties-name.md index e7e8f400..a6972da2 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-104-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-104-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"sdm-repository" +"sdm" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-104-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-104-if.md index 29ae7701..63f71e68 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-104-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-104-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"sdm-repository" +"sdm" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-104-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-104-then-allof-0-then.md index 27d2bffc..bc3287ff 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-104-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-104-then-allof-0-then.md @@ -10,7 +10,7 @@ unknown ## plan -service plan >free< for >sdm-repository< is available in data centers: +service plan >free< for >sdm< is available in data centers: * {'region': 'ap10', 'name': 'Australia (Sydney)'} * {'region': 'ap11', 'name': 'Singapore'} diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-104-then-allof-1-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-104-then-allof-1-then.md index 33b69da3..d7994288 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-104-then-allof-1-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-104-then-allof-1-then.md @@ -10,7 +10,7 @@ unknown ## plan -service plan >standard< for >sdm-repository< is available in data centers: +service plan >standard< for >sdm< is available in data centers: * {'region': 'ap10', 'name': 'Australia (Sydney)'} * {'region': 'ap11', 'name': 'Singapore'} diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-104-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-104-then.md index c4723285..e9398799 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-104-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-104-then.md @@ -44,7 +44,7 @@ unknown ## name -SAP Document Management service: Use Document Management Service, Repository Option to securely store and manage your business documents and attachments. +Document Management Service, Integration Option: Leverage the APIs of SAP Document Management service and build your own document management layer to enable document management capabilities for your business applications. You can also embed the easy-to-use, UI5-based, reusable UI component of Document Management into your application for document management scenarios. `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-105-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-105-if-properties-name.md index ec29f606..e7e8f400 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-105-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-105-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"service-manager" +"sdm-repository" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-105-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-105-if.md index 67b0be7f..20e116d9 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-105-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-105-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"service-manager" +"sdm-repository" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-105-then-allof-0-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-105-then-allof-0-if-properties-plan.md index 8915532d..c97f5143 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-105-then-allof-0-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-105-then-allof-0-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"container" +"free" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-105-then-allof-0-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-105-then-allof-0-if.md index 14dd557e..51d0040f 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-105-then-allof-0-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-105-then-allof-0-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"container" +"free" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-105-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-105-then-allof-0-then.md index bc00a956..a91dc987 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-105-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-105-then-allof-0-then.md @@ -10,7 +10,7 @@ unknown ## plan -service plan >container< for >service-manager< is available in data centers: +service plan >free< for >sdm-repository< is available in data centers: * {'region': 'ap10', 'name': 'Australia (Sydney)'} * {'region': 'ap11', 'name': 'Singapore'} @@ -19,12 +19,10 @@ service plan >container< for >service-manager< is available in data centers: * {'region': 'ap21', 'name': 'Singapore'} * {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} * {'region': 'ca10', 'name': 'Canada (Montreal)'} -* {'region': 'ch20', 'name': 'cf-ch20'} * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} * {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} * {'region': 'eu20', 'name': 'Europe (Netherlands)'} * {'region': 'eu30', 'name': 'Europe (Frankfurt)'} -* {'region': 'in30', 'name': 'India (Mumbai)'} * {'region': 'jp10', 'name': 'Japan (Tokyo)'} * {'region': 'jp20', 'name': 'Japan (Tokyo)'} * {'region': 'us10', 'name': 'US East (VA)'} diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-105-then-allof-1-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-105-then-allof-1-if-properties-plan.md index 8dff524b..126392b1 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-105-then-allof-1-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-105-then-allof-1-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"service-operator-access" +"standard" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-105-then-allof-1-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-105-then-allof-1-if.md index 62eb1cf6..6f0a422b 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-105-then-allof-1-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-105-then-allof-1-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"service-operator-access" +"standard" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-105-then-allof-1-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-105-then-allof-1-then.md index 546608a7..0d7b8ddd 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-105-then-allof-1-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-105-then-allof-1-then.md @@ -10,7 +10,7 @@ unknown ## plan -service plan >service-operator-access< for >service-manager< is available in data centers: +service plan >standard< for >sdm-repository< is available in data centers: * {'region': 'ap10', 'name': 'Australia (Sydney)'} * {'region': 'ap11', 'name': 'Singapore'} @@ -19,12 +19,10 @@ service plan >service-operator-access< for >service-manager< is available in dat * {'region': 'ap21', 'name': 'Singapore'} * {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} * {'region': 'ca10', 'name': 'Canada (Montreal)'} -* {'region': 'ch20', 'name': 'cf-ch20'} * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} * {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} * {'region': 'eu20', 'name': 'Europe (Netherlands)'} * {'region': 'eu30', 'name': 'Europe (Frankfurt)'} -* {'region': 'in30', 'name': 'India (Mumbai)'} * {'region': 'jp10', 'name': 'Japan (Tokyo)'} * {'region': 'jp20', 'name': 'Japan (Tokyo)'} * {'region': 'us10', 'name': 'US East (VA)'} diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-105-then-allof-2-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-105-then-allof-2-then.md deleted file mode 100644 index cd27e6bf..00000000 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-105-then-allof-2-then.md +++ /dev/null @@ -1,47 +0,0 @@ -## then Type - -unknown - -# then Properties - -| Property | Type | Required | Nullable | Defined by | -| :------------ | :------------ | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-105-then-allof-2-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/105/then/allOf/2/then/properties/plan") | - -## plan - -service plan >subaccount-admin< for >service-manager< is available in data centers: - -* {'region': 'ap10', 'name': 'Australia (Sydney)'} -* {'region': 'ap11', 'name': 'Singapore'} -* {'region': 'ap12', 'name': 'South Korea (Seoul)'} -* {'region': 'ap20', 'name': 'Australia (Sydney) Azure'} -* {'region': 'ap21', 'name': 'Singapore'} -* {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} -* {'region': 'ca10', 'name': 'Canada (Montreal)'} -* {'region': 'ch20', 'name': 'cf-ch20'} -* {'region': 'eu10', 'name': 'Europe (Frankfurt)'} -* {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} -* {'region': 'eu20', 'name': 'Europe (Netherlands)'} -* {'region': 'eu30', 'name': 'Europe (Frankfurt)'} -* {'region': 'in30', 'name': 'India (Mumbai)'} -* {'region': 'jp10', 'name': 'Japan (Tokyo)'} -* {'region': 'jp20', 'name': 'Japan (Tokyo)'} -* {'region': 'us10', 'name': 'US East (VA)'} -* {'region': 'us20', 'name': 'US West (WA)'} -* {'region': 'us21', 'name': 'US East (VA)'} -* {'region': 'us30', 'name': 'US Central (IA)'} - -`plan` - -* is optional - -* Type: unknown - -* cannot be null - -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-105-then-allof-2-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/105/then/allOf/2/then/properties/plan") - -### plan Type - -unknown diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-105-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-105-then-properties-plan.md index f8a300e1..49c8bb8c 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-105-then-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-105-then-properties-plan.md @@ -6,9 +6,7 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :-------------------------- | :---------- | -| `"container"` | | -| `"service-operator-access"` | | -| `"subaccount-admin"` | | -| `"subaccount-audit"` | | +| Value | Explanation | +| :----------- | :---------- | +| `"free"` | | +| `"standard"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-105-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-105-then.md index 33a3728a..6e5cd56f 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-105-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-105-then.md @@ -8,10 +8,6 @@ all of * [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-105-then-allof-1.md "check type definition") -* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-105-then-allof-2.md "check type definition") - -* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-105-then-allof-3.md "check type definition") - # then Properties | Property | Type | Required | Nullable | Defined by | @@ -41,16 +37,14 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :-------------------------- | :---------- | -| `"container"` | | -| `"service-operator-access"` | | -| `"subaccount-admin"` | | -| `"subaccount-audit"` | | +| Value | Explanation | +| :----------- | :---------- | +| `"free"` | | +| `"standard"` | | ## name -SAP Service Manager: SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments. +SAP Document Management service: Use Document Management Service, Repository Option to securely store and manage your business documents and attachments. `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-106-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-106-if-properties-name.md index aec1eafe..ec29f606 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-106-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-106-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"service-ticket-intelligence" +"service-manager" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-106-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-106-if.md index ddb1135f..7feb17ca 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-106-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-106-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"service-ticket-intelligence" +"service-manager" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-106-then-allof-0-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-106-then-allof-0-if-properties-plan.md index 9264f7d4..8915532d 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-106-then-allof-0-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-106-then-allof-0-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"blocks_of_100" +"container" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-106-then-allof-0-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-106-then-allof-0-if.md index 39fcad14..3ca2d29f 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-106-then-allof-0-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-106-then-allof-0-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"blocks_of_100" +"container" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-106-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-106-then-allof-0-then.md index da42fa12..9bbe568a 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-106-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-106-then-allof-0-then.md @@ -10,11 +10,26 @@ unknown ## plan -service plan >blocks\_of\_100< for >service-ticket-intelligence< is available in data centers: - +service plan >container< for >service-manager< is available in data centers: + +* {'region': 'ap10', 'name': 'Australia (Sydney)'} +* {'region': 'ap11', 'name': 'Singapore'} +* {'region': 'ap12', 'name': 'South Korea (Seoul)'} +* {'region': 'ap20', 'name': 'Australia (Sydney) Azure'} +* {'region': 'ap21', 'name': 'Singapore'} +* {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} +* {'region': 'ca10', 'name': 'Canada (Montreal)'} +* {'region': 'ch20', 'name': 'cf-ch20'} * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} * {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} +* {'region': 'eu20', 'name': 'Europe (Netherlands)'} +* {'region': 'eu30', 'name': 'Europe (Frankfurt)'} +* {'region': 'in30', 'name': 'India (Mumbai)'} +* {'region': 'jp10', 'name': 'Japan (Tokyo)'} +* {'region': 'jp20', 'name': 'Japan (Tokyo)'} * {'region': 'us10', 'name': 'US East (VA)'} +* {'region': 'us20', 'name': 'US West (WA)'} +* {'region': 'us21', 'name': 'US East (VA)'} * {'region': 'us30', 'name': 'US Central (IA)'} `plan` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-106-then-allof-1-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-106-then-allof-1-if-properties-plan.md index c97f5143..8dff524b 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-106-then-allof-1-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-106-then-allof-1-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"free" +"service-operator-access" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-106-then-allof-1-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-106-then-allof-1-if.md index ffcb1214..ea21a72d 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-106-then-allof-1-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-106-then-allof-1-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"free" +"service-operator-access" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-106-then-allof-1-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-106-then-allof-1-then.md index 09e8d308..f301fc35 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-106-then-allof-1-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-106-then-allof-1-then.md @@ -10,11 +10,26 @@ unknown ## plan -service plan >free< for >service-ticket-intelligence< is available in data centers: - +service plan >service-operator-access< for >service-manager< is available in data centers: + +* {'region': 'ap10', 'name': 'Australia (Sydney)'} +* {'region': 'ap11', 'name': 'Singapore'} +* {'region': 'ap12', 'name': 'South Korea (Seoul)'} +* {'region': 'ap20', 'name': 'Australia (Sydney) Azure'} +* {'region': 'ap21', 'name': 'Singapore'} +* {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} +* {'region': 'ca10', 'name': 'Canada (Montreal)'} +* {'region': 'ch20', 'name': 'cf-ch20'} * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} * {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} +* {'region': 'eu20', 'name': 'Europe (Netherlands)'} +* {'region': 'eu30', 'name': 'Europe (Frankfurt)'} +* {'region': 'in30', 'name': 'India (Mumbai)'} +* {'region': 'jp10', 'name': 'Japan (Tokyo)'} +* {'region': 'jp20', 'name': 'Japan (Tokyo)'} * {'region': 'us10', 'name': 'US East (VA)'} +* {'region': 'us20', 'name': 'US West (WA)'} +* {'region': 'us21', 'name': 'US East (VA)'} * {'region': 'us30', 'name': 'US Central (IA)'} `plan` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-106-then-allof-2-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-106-then-allof-2-if-properties-plan.md index 126392b1..5afc6021 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-106-then-allof-2-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-106-then-allof-2-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"standard" +"subaccount-admin" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-106-then-allof-2-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-106-then-allof-2-if.md index 32d11492..04e861d1 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-106-then-allof-2-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-106-then-allof-2-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"standard" +"subaccount-admin" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-106-then-allof-2-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-106-then-allof-2-then.md index 61541c7d..2af025b7 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-106-then-allof-2-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-106-then-allof-2-then.md @@ -10,11 +10,26 @@ unknown ## plan -service plan >standard< for >service-ticket-intelligence< is available in data centers: - +service plan >subaccount-admin< for >service-manager< is available in data centers: + +* {'region': 'ap10', 'name': 'Australia (Sydney)'} +* {'region': 'ap11', 'name': 'Singapore'} +* {'region': 'ap12', 'name': 'South Korea (Seoul)'} +* {'region': 'ap20', 'name': 'Australia (Sydney) Azure'} +* {'region': 'ap21', 'name': 'Singapore'} +* {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} +* {'region': 'ca10', 'name': 'Canada (Montreal)'} +* {'region': 'ch20', 'name': 'cf-ch20'} * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} * {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} +* {'region': 'eu20', 'name': 'Europe (Netherlands)'} +* {'region': 'eu30', 'name': 'Europe (Frankfurt)'} +* {'region': 'in30', 'name': 'India (Mumbai)'} +* {'region': 'jp10', 'name': 'Japan (Tokyo)'} +* {'region': 'jp20', 'name': 'Japan (Tokyo)'} * {'region': 'us10', 'name': 'US East (VA)'} +* {'region': 'us20', 'name': 'US West (WA)'} +* {'region': 'us21', 'name': 'US East (VA)'} * {'region': 'us30', 'name': 'US Central (IA)'} `plan` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-105-then-allof-3-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-106-then-allof-3-if-properties-plan.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-105-then-allof-3-if-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-106-then-allof-3-if-properties-plan.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-103-then-allof-1-if-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-106-then-allof-3-if-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-103-then-allof-1-if-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-106-then-allof-3-if-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-105-then-allof-3-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-106-then-allof-3-if.md similarity index 83% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-105-then-allof-3-if.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-106-then-allof-3-if.md index f8ac52ef..f17bb6f6 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-105-then-allof-3-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-106-then-allof-3-if.md @@ -6,7 +6,7 @@ unknown | Property | Type | Required | Nullable | Defined by | | :------------ | :------------ | :------- | :------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-105-then-allof-3-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/105/then/allOf/3/if/properties/plan") | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-106-then-allof-3-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/106/then/allOf/3/if/properties/plan") | ## plan @@ -20,7 +20,7 @@ unknown * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-105-then-allof-3-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/105/then/allOf/3/if/properties/plan") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-106-then-allof-3-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/106/then/allOf/3/if/properties/plan") ### plan Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-103-then-allof-1-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-106-then-allof-3-then-properties-plan.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-103-then-allof-1-then-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-106-then-allof-3-then-properties-plan.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-103-then-allof-1-then-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-106-then-allof-3-then-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-103-then-allof-1-then-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-106-then-allof-3-then-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-105-then-allof-3-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-106-then-allof-3-then.md similarity index 89% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-105-then-allof-3-then.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-106-then-allof-3-then.md index c35d58b4..75511c13 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-105-then-allof-3-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-106-then-allof-3-then.md @@ -6,7 +6,7 @@ unknown | Property | Type | Required | Nullable | Defined by | | :------------ | :------------ | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-105-then-allof-3-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/105/then/allOf/3/then/properties/plan") | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-106-then-allof-3-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/106/then/allOf/3/then/properties/plan") | ## plan @@ -40,7 +40,7 @@ service plan >subaccount-audit< for >service-manager< is available in data cente * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-105-then-allof-3-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/105/then/allOf/3/then/properties/plan") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-106-then-allof-3-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/106/then/allOf/3/then/properties/plan") ### plan Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-105-then-allof-3.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-106-then-allof-3.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-105-then-allof-3.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-106-then-allof-3.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-106-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-106-then-properties-plan.md index fbb67bdf..f8a300e1 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-106-then-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-106-then-properties-plan.md @@ -6,8 +6,9 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :---------------- | :---------- | -| `"blocks_of_100"` | | -| `"free"` | | -| `"standard"` | | +| Value | Explanation | +| :-------------------------- | :---------- | +| `"container"` | | +| `"service-operator-access"` | | +| `"subaccount-admin"` | | +| `"subaccount-audit"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-106-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-106-then.md index edf5c020..580dd960 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-106-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-106-then.md @@ -10,6 +10,8 @@ all of * [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-106-then-allof-2.md "check type definition") +* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-106-then-allof-3.md "check type definition") + # then Properties | Property | Type | Required | Nullable | Defined by | @@ -39,15 +41,16 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :---------------- | :---------- | -| `"blocks_of_100"` | | -| `"free"` | | -| `"standard"` | | +| Value | Explanation | +| :-------------------------- | :---------- | +| `"container"` | | +| `"service-operator-access"` | | +| `"subaccount-admin"` | | +| `"subaccount-audit"` | | ## name -Service Ticket Intelligence: With Service Ticket Intelligence, incoming customers service tickets are automatically classified into their categories, and routed to the right agent. The agent is then provided with recommended solutions to improve operational efficiency. Service Ticket Intelligence leverages deep learning neural networks trained on large amounts of historical data. The model understands the semantics of unstructured ticket messages, classifies the ticket into their most likely categories and recommends solutions or knowledge base articles from similar previously answered tickets for the agent. With more processed service tickets and users feedback, the model improves over time. +SAP Service Manager: SAP Service Manager service allows you to consume platform services in any connected runtime environment, track service instances creation, and share services and service instances between different environments. `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-107-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-107-if-properties-name.md index 720caf27..aec1eafe 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-107-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-107-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"spatialservices" +"service-ticket-intelligence" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-107-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-107-if.md index 7ae91d6b..3827499a 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-107-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-107-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"spatialservices" +"service-ticket-intelligence" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-107-then-allof-0-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-107-then-allof-0-if-properties-plan.md index f74c2390..9264f7d4 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-107-then-allof-0-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-107-then-allof-0-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"lite" +"blocks_of_100" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-107-then-allof-0-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-107-then-allof-0-if.md index e2ee9899..57d2ee1c 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-107-then-allof-0-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-107-then-allof-0-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"lite" +"blocks_of_100" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-107-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-107-then-allof-0-then.md index 160f4086..d43a3a08 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-107-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-107-then-allof-0-then.md @@ -10,11 +10,12 @@ unknown ## plan -service plan >lite< for >spatialservices< is available in data centers: +service plan >blocks\_of\_100< for >service-ticket-intelligence< is available in data centers: -* {'region': 'ap10', 'name': 'Australia (Sydney)'} * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} +* {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} * {'region': 'us10', 'name': 'US East (VA)'} +* {'region': 'us30', 'name': 'US Central (IA)'} `plan` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-107-then-allof-1-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-107-then-allof-1-if-properties-plan.md index 126392b1..c97f5143 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-107-then-allof-1-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-107-then-allof-1-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"standard" +"free" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-107-then-allof-1-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-107-then-allof-1-if.md index 7ab8273b..3a9dd966 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-107-then-allof-1-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-107-then-allof-1-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"standard" +"free" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-107-then-allof-1-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-107-then-allof-1-then.md index bf062f32..ced907bb 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-107-then-allof-1-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-107-then-allof-1-then.md @@ -10,9 +10,12 @@ unknown ## plan -service plan >standard< for >spatialservices< is available in data centers: +service plan >free< for >service-ticket-intelligence< is available in data centers: * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} +* {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} +* {'region': 'us10', 'name': 'US East (VA)'} +* {'region': 'us30', 'name': 'US Central (IA)'} `plan` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-103-then-allof-1-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-107-then-allof-2-if-properties-plan.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-103-then-allof-1-if-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-107-then-allof-2-if-properties-plan.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-105-then-allof-2-if-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-107-then-allof-2-if-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-105-then-allof-2-if-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-107-then-allof-2-if-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-105-then-allof-2-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-107-then-allof-2-if.md similarity index 81% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-105-then-allof-2-if.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-107-then-allof-2-if.md index c8b9cf50..0f8aaa98 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-105-then-allof-2-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-107-then-allof-2-if.md @@ -6,7 +6,7 @@ unknown | Property | Type | Required | Nullable | Defined by | | :------------ | :------------ | :------- | :------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-105-then-allof-2-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/105/then/allOf/2/if/properties/plan") | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-107-then-allof-2-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/107/then/allOf/2/if/properties/plan") | ## plan @@ -20,7 +20,7 @@ unknown * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-105-then-allof-2-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/105/then/allOf/2/if/properties/plan") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-107-then-allof-2-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/107/then/allOf/2/if/properties/plan") ### plan Type @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"subaccount-admin" +"standard" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-105-then-allof-2-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-107-then-allof-2-then-properties-plan.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-105-then-allof-2-then-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-107-then-allof-2-then-properties-plan.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-105-then-allof-2-then-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-107-then-allof-2-then-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-105-then-allof-2-then-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-107-then-allof-2-then-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-107-then-allof-2-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-107-then-allof-2-then.md new file mode 100644 index 00000000..13e290cb --- /dev/null +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-107-then-allof-2-then.md @@ -0,0 +1,32 @@ +## then Type + +unknown + +# then Properties + +| Property | Type | Required | Nullable | Defined by | +| :------------ | :------------ | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-107-then-allof-2-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/107/then/allOf/2/then/properties/plan") | + +## plan + +service plan >standard< for >service-ticket-intelligence< is available in data centers: + +* {'region': 'eu10', 'name': 'Europe (Frankfurt)'} +* {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} +* {'region': 'us10', 'name': 'US East (VA)'} +* {'region': 'us30', 'name': 'US Central (IA)'} + +`plan` + +* is optional + +* Type: unknown + +* cannot be null + +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-107-then-allof-2-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/107/then/allOf/2/then/properties/plan") + +### plan Type + +unknown diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-105-then-allof-2.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-107-then-allof-2.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-105-then-allof-2.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-107-then-allof-2.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-107-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-107-then-properties-plan.md index 4cfe3b95..fbb67bdf 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-107-then-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-107-then-properties-plan.md @@ -6,7 +6,8 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :----------- | :---------- | -| `"lite"` | | -| `"standard"` | | +| Value | Explanation | +| :---------------- | :---------- | +| `"blocks_of_100"` | | +| `"free"` | | +| `"standard"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-107-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-107-then.md index 4841a21b..320ccc4d 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-107-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-107-then.md @@ -8,6 +8,8 @@ all of * [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-107-then-allof-1.md "check type definition") +* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-107-then-allof-2.md "check type definition") + # then Properties | Property | Type | Required | Nullable | Defined by | @@ -37,14 +39,15 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :----------- | :---------- | -| `"lite"` | | -| `"standard"` | | +| Value | Explanation | +| :---------------- | :---------- | +| `"blocks_of_100"` | | +| `"free"` | | +| `"standard"` | | ## name -SAP HANA spatial services: SAP HANA spatial services provides a unified access layer for location-based services, including maps for visualization, geocoding and routing capabilities. It integrates location-based content and services from external providers into SAP products and customer applications. +Service Ticket Intelligence: With Service Ticket Intelligence, incoming customers service tickets are automatically classified into their categories, and routed to the right agent. The agent is then provided with recommended solutions to improve operational efficiency. Service Ticket Intelligence leverages deep learning neural networks trained on large amounts of historical data. The model understands the semantics of unstructured ticket messages, classifies the ticket into their most likely categories and recommends solutions or knowledge base articles from similar previously answered tickets for the agent. With more processed service tickets and users feedback, the model improves over time. `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-108-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-108-if-properties-name.md index f645090e..720caf27 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-108-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-108-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"theming" +"spatialservices" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-108-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-108-if.md index ed04b4ef..6ac81833 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-108-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-108-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"theming" +"spatialservices" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-108-then-allof-0-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-108-then-allof-0-if-properties-plan.md index 126392b1..f74c2390 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-108-then-allof-0-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-108-then-allof-0-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"standard" +"lite" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-108-then-allof-0-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-108-then-allof-0-if.md index 1ac0778e..313ebbda 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-108-then-allof-0-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-108-then-allof-0-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"standard" +"lite" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-108-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-108-then-allof-0-then.md index 64fa519b..85fbc193 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-108-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-108-then-allof-0-then.md @@ -10,27 +10,11 @@ unknown ## plan -service plan >standard< for >theming< is available in data centers: +service plan >lite< for >spatialservices< is available in data centers: * {'region': 'ap10', 'name': 'Australia (Sydney)'} -* {'region': 'ap11', 'name': 'Singapore'} -* {'region': 'ap12', 'name': 'South Korea (Seoul)'} -* {'region': 'ap20', 'name': 'Australia (Sydney) Azure'} -* {'region': 'ap21', 'name': 'Singapore'} -* {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} -* {'region': 'ca10', 'name': 'Canada (Montreal)'} -* {'region': 'ch20', 'name': 'cf-ch20'} * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} -* {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} -* {'region': 'eu20', 'name': 'Europe (Netherlands)'} -* {'region': 'eu30', 'name': 'Europe (Frankfurt)'} -* {'region': 'in30', 'name': 'India (Mumbai)'} -* {'region': 'jp10', 'name': 'Japan (Tokyo)'} -* {'region': 'jp20', 'name': 'Japan (Tokyo)'} * {'region': 'us10', 'name': 'US East (VA)'} -* {'region': 'us20', 'name': 'US West (WA)'} -* {'region': 'us21', 'name': 'US East (VA)'} -* {'region': 'us30', 'name': 'US Central (IA)'} `plan` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-109-then-allof-1-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-108-then-allof-1-if-properties-plan.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-109-then-allof-1-if-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-108-then-allof-1-if-properties-plan.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-105-then-allof-3-if-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-108-then-allof-1-if-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-105-then-allof-3-if-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-108-then-allof-1-if-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-103-then-allof-1-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-108-then-allof-1-if.md similarity index 83% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-103-then-allof-1-if.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-108-then-allof-1-if.md index 35373b4a..64b5e782 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-103-then-allof-1-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-108-then-allof-1-if.md @@ -6,7 +6,7 @@ unknown | Property | Type | Required | Nullable | Defined by | | :------------ | :------------ | :------- | :------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-103-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/103/then/allOf/1/if/properties/plan") | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-108-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/108/then/allOf/1/if/properties/plan") | ## plan @@ -20,7 +20,7 @@ unknown * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-103-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/103/then/allOf/1/if/properties/plan") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-108-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/108/then/allOf/1/if/properties/plan") ### plan Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-105-then-allof-3-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-108-then-allof-1-then-properties-plan.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-105-then-allof-3-then-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-108-then-allof-1-then-properties-plan.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-105-then-allof-3-then-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-108-then-allof-1-then-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-105-then-allof-3-then-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-108-then-allof-1-then-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-108-then-allof-1-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-108-then-allof-1-then.md new file mode 100644 index 00000000..7ea9808e --- /dev/null +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-108-then-allof-1-then.md @@ -0,0 +1,29 @@ +## then Type + +unknown + +# then Properties + +| Property | Type | Required | Nullable | Defined by | +| :------------ | :------------ | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-108-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/108/then/allOf/1/then/properties/plan") | + +## plan + +service plan >standard< for >spatialservices< is available in data centers: + +* {'region': 'eu10', 'name': 'Europe (Frankfurt)'} + +`plan` + +* is optional + +* Type: unknown + +* cannot be null + +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-108-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/108/then/allOf/1/then/properties/plan") + +### plan Type + +unknown diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-103-then-allof-1.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-108-then-allof-1.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-103-then-allof-1.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-108-then-allof-1.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-108-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-108-then-properties-plan.md index 248cb3df..4cfe3b95 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-108-then-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-108-then-properties-plan.md @@ -8,4 +8,5 @@ unknown | Value | Explanation | | :----------- | :---------- | +| `"lite"` | | | `"standard"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-108-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-108-then.md index c6165b05..3f92752b 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-108-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-108-then.md @@ -6,6 +6,8 @@ all of * [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-108-then-allof-0.md "check type definition") +* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-108-then-allof-1.md "check type definition") + # then Properties | Property | Type | Required | Nullable | Defined by | @@ -37,11 +39,12 @@ unknown | Value | Explanation | | :----------- | :---------- | +| `"lite"` | | | `"standard"` | | ## name -UI theme designer: The UI theme designer lets you apply your corporate branding to applications built with SAP UI technologies. You can make changes to theme templates supplied by SAP to create custom themes that use your own color scheme, background images, and company logo. You can apply a custom theme to various SAP UI clients and technologies. Additionally, you can include your own custom CSS files without having to modify any of your applications. +SAP HANA spatial services: SAP HANA spatial services provides a unified access layer for location-based services, including maps for visualization, geocoding and routing capabilities. It integrates location-based content and services from external providers into SAP products and customer applications. `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-109-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-109-if-properties-name.md index 93495d44..f645090e 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-109-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-109-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"transport" +"theming" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-109-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-109-if.md index ede4b8ba..85aa0d03 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-109-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-109-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"transport" +"theming" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-109-then-allof-0-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-109-then-allof-0-if-properties-plan.md index 0dccfa24..126392b1 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-109-then-allof-0-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-109-then-allof-0-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"export" +"standard" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-109-then-allof-0-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-109-then-allof-0-if.md index f31ab34d..9216a686 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-109-then-allof-0-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-109-then-allof-0-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"export" +"standard" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-109-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-109-then-allof-0-then.md index ca94c93e..f700fec0 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-109-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-109-then-allof-0-then.md @@ -10,7 +10,7 @@ unknown ## plan -service plan >export< for >transport< is available in data centers: +service plan >standard< for >theming< is available in data centers: * {'region': 'ap10', 'name': 'Australia (Sydney)'} * {'region': 'ap11', 'name': 'Singapore'} diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-109-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-109-then-properties-plan.md index cdc26794..248cb3df 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-109-then-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-109-then-properties-plan.md @@ -6,8 +6,6 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :--------------------- | :---------- | -| `"export"` | | -| `"standard"` | | -| `"transport_operator"` | | +| Value | Explanation | +| :----------- | :---------- | +| `"standard"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-109-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-109-then.md index 8813467f..45eec9a2 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-109-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-109-then.md @@ -6,10 +6,6 @@ all of * [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-109-then-allof-0.md "check type definition") -* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-109-then-allof-1.md "check type definition") - -* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-109-then-allof-2.md "check type definition") - # then Properties | Property | Type | Required | Nullable | Defined by | @@ -39,15 +35,13 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :--------------------- | :---------- | -| `"export"` | | -| `"standard"` | | -| `"transport_operator"` | | +| Value | Explanation | +| :----------- | :---------- | +| `"standard"` | | ## name -SAP Cloud Transport Management: SAP Cloud Transport Management service lets you manage software deliverables between accounts of different environments (such as Neo and Cloud Foundry), by transporting them across various runtimes. This includes application artifacts as well as their respective application-specific content. +UI theme designer: The UI theme designer lets you apply your corporate branding to applications built with SAP UI technologies. You can make changes to theme templates supplied by SAP to create custom themes that use your own color scheme, background images, and company logo. You can apply a custom theme to various SAP UI clients and technologies. Additionally, you can include your own custom CSS files without having to modify any of your applications. `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-11-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-11-if-properties-name.md index d8a53a9b..632ff299 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-11-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-11-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"auditlog-api" +"auditlog" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-11-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-11-if.md index 4220559b..7fb263c8 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-11-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-11-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"auditlog-api" +"auditlog" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-11-then-allof-0-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-11-then-allof-0-if-properties-plan.md index 4f94ce99..9afdf414 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-11-then-allof-0-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-11-then-allof-0-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"default" +"premium" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-11-then-allof-0-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-11-then-allof-0-if.md index b2f829a6..18d265d5 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-11-then-allof-0-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-11-then-allof-0-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"default" +"premium" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-11-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-11-then-allof-0-then.md index 28d5ae9f..6d05d082 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-11-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-11-then-allof-0-then.md @@ -10,27 +10,9 @@ unknown ## plan -service plan >default< for >auditlog-api< is available in data centers: - -* {'region': 'ap10', 'name': 'Australia (Sydney)'} -* {'region': 'ap11', 'name': 'Singapore'} -* {'region': 'ap12', 'name': 'South Korea (Seoul)'} -* {'region': 'ap20', 'name': 'Australia (Sydney) Azure'} -* {'region': 'ap21', 'name': 'Singapore'} -* {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} -* {'region': 'ca10', 'name': 'Canada (Montreal)'} -* {'region': 'ch20', 'name': 'cf-ch20'} -* {'region': 'eu10', 'name': 'Europe (Frankfurt)'} +service plan >premium< for >auditlog< is available in data centers: + * {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} -* {'region': 'eu20', 'name': 'Europe (Netherlands)'} -* {'region': 'eu30', 'name': 'Europe (Frankfurt)'} -* {'region': 'in30', 'name': 'India (Mumbai)'} -* {'region': 'jp10', 'name': 'Japan (Tokyo)'} -* {'region': 'jp20', 'name': 'Japan (Tokyo)'} -* {'region': 'us10', 'name': 'US East (VA)'} -* {'region': 'us20', 'name': 'US West (WA)'} -* {'region': 'us21', 'name': 'US East (VA)'} -* {'region': 'us30', 'name': 'US Central (IA)'} `plan` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-11-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-11-then-properties-plan.md index 916e7975..1f9587b6 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-11-then-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-11-then-properties-plan.md @@ -8,4 +8,4 @@ unknown | Value | Explanation | | :---------- | :---------- | -| `"default"` | | +| `"premium"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-11-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-11-then.md index 6125b353..30d1162b 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-11-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-11-then.md @@ -37,11 +37,11 @@ unknown | Value | Explanation | | :---------- | :---------- | -| `"default"` | | +| `"premium"` | | ## name -DEPRECATED Audit Log Retrieval: DEPRECATED Retrieve the audit logs. +SAP Audit Log service: Allow users to ingest compliance audit data from SAP BTP services and applications and store it for a default retention time of 90 days (with no additional costs applied). The ability to retrieve and download this data within this period is part of Auditlog Management Service. The service serves to support audit activities by prove wrongdoing and identifying malicious activities and provision of forensic evidence that can be used at Court. The scope of the service are secure and configuration change information records, data privacy specific logs, logs motivated by Multiple Regulations. The service is following each SAP Product standards and GDPR Compliance regulations. `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-110-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-110-if-properties-name.md index 0144f07e..93495d44 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-110-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-110-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"uas" +"transport" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-110-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-110-if.md index 7e59f7c0..5b00ffc1 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-110-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-110-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"uas" +"transport" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-110-then-allof-0-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-110-then-allof-0-if-properties-plan.md index 1d941445..0dccfa24 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-110-then-allof-0-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-110-then-allof-0-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"reporting-directory" +"export" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-110-then-allof-0-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-110-then-allof-0-if.md index 4d16896f..3984d49e 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-110-then-allof-0-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-110-then-allof-0-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"reporting-directory" +"export" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-110-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-110-then-allof-0-then.md index 558344c7..06c2ca81 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-110-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-110-then-allof-0-then.md @@ -10,10 +10,11 @@ unknown ## plan -service plan >reporting-directory< for >uas< is available in data centers: +service plan >export< for >transport< is available in data centers: * {'region': 'ap10', 'name': 'Australia (Sydney)'} * {'region': 'ap11', 'name': 'Singapore'} +* {'region': 'ap12', 'name': 'South Korea (Seoul)'} * {'region': 'ap20', 'name': 'Australia (Sydney) Azure'} * {'region': 'ap21', 'name': 'Singapore'} * {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-110-then-allof-1-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-110-then-allof-1-if-properties-plan.md index 6f25968e..126392b1 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-110-then-allof-1-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-110-then-allof-1-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"reporting-ga-admin" +"standard" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-110-then-allof-1-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-110-then-allof-1-if.md index 4b3e6bc0..cac3c2cb 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-110-then-allof-1-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-110-then-allof-1-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"reporting-ga-admin" +"standard" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-110-then-allof-1-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-110-then-allof-1-then.md index 84fb9fd9..a022efb5 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-110-then-allof-1-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-110-then-allof-1-then.md @@ -10,10 +10,11 @@ unknown ## plan -service plan >reporting-ga-admin< for >uas< is available in data centers: +service plan >standard< for >transport< is available in data centers: * {'region': 'ap10', 'name': 'Australia (Sydney)'} * {'region': 'ap11', 'name': 'Singapore'} +* {'region': 'ap12', 'name': 'South Korea (Seoul)'} * {'region': 'ap20', 'name': 'Australia (Sydney) Azure'} * {'region': 'ap21', 'name': 'Singapore'} * {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-109-then-allof-2-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-110-then-allof-2-if-properties-plan.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-109-then-allof-2-if-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-110-then-allof-2-if-properties-plan.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-109-then-allof-1-if-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-110-then-allof-2-if-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-109-then-allof-1-if-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-110-then-allof-2-if-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-109-then-allof-2-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-110-then-allof-2-if.md similarity index 83% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-109-then-allof-2-if.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-110-then-allof-2-if.md index df7fa079..b1dda42c 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-109-then-allof-2-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-110-then-allof-2-if.md @@ -6,7 +6,7 @@ unknown | Property | Type | Required | Nullable | Defined by | | :------------ | :------------ | :------- | :------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-109-then-allof-2-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/109/then/allOf/2/if/properties/plan") | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-110-then-allof-2-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/110/then/allOf/2/if/properties/plan") | ## plan @@ -20,7 +20,7 @@ unknown * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-109-then-allof-2-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/109/then/allOf/2/if/properties/plan") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-110-then-allof-2-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/110/then/allOf/2/if/properties/plan") ### plan Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-109-then-allof-1-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-110-then-allof-2-then-properties-plan.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-109-then-allof-1-then-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-110-then-allof-2-then-properties-plan.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-109-then-allof-1-then-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-110-then-allof-2-then-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-109-then-allof-1-then-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-110-then-allof-2-then-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-109-then-allof-2-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-110-then-allof-2-then.md similarity index 89% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-109-then-allof-2-then.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-110-then-allof-2-then.md index d1e34e2e..7de76fb9 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-109-then-allof-2-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-110-then-allof-2-then.md @@ -6,7 +6,7 @@ unknown | Property | Type | Required | Nullable | Defined by | | :------------ | :------------ | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-109-then-allof-2-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/109/then/allOf/2/then/properties/plan") | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-110-then-allof-2-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/110/then/allOf/2/then/properties/plan") | ## plan @@ -40,7 +40,7 @@ service plan >transport\_operator< for >transport< is available in data centers: * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-109-then-allof-2-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/109/then/allOf/2/then/properties/plan") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-110-then-allof-2-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/110/then/allOf/2/then/properties/plan") ### plan Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-109-then-allof-2.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-110-then-allof-2.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-109-then-allof-2.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-110-then-allof-2.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-110-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-110-then-properties-plan.md index 57015842..cdc26794 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-110-then-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-110-then-properties-plan.md @@ -6,7 +6,8 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :---------------------- | :---------- | -| `"reporting-directory"` | | -| `"reporting-ga-admin"` | | +| Value | Explanation | +| :--------------------- | :---------- | +| `"export"` | | +| `"standard"` | | +| `"transport_operator"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-110-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-110-then.md index 23b32eb4..add26681 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-110-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-110-then.md @@ -8,6 +8,8 @@ all of * [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-110-then-allof-1.md "check type definition") +* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-110-then-allof-2.md "check type definition") + # then Properties | Property | Type | Required | Nullable | Defined by | @@ -37,14 +39,15 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :---------------------- | :---------- | -| `"reporting-directory"` | | -| `"reporting-ga-admin"` | | +| Value | Explanation | +| :--------------------- | :---------- | +| `"export"` | | +| `"standard"` | | +| `"transport_operator"` | | ## name -SAP Usage Data Management service for SAP BTP: The SAP Usage Data Management service for SAP BTP provides REST APIs that are responsible for gathering, storing, and making usage information available for all services and applications in all regions in a cloud deployment, for the purpose of central analysis, reporting, and license auditing. The service accumulates the information and provides reports in several business systems (reporting and operations) for resource planning and cross billing purposes. +SAP Cloud Transport Management: SAP Cloud Transport Management service lets you manage software deliverables between accounts of different environments (such as Neo and Cloud Foundry), by transporting them across various runtimes. This includes application artifacts as well as their respective application-specific content. `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-111-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-111-if-properties-name.md index ee0bbc4c..0144f07e 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-111-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-111-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"ui5-flexibility-keyuser" +"uas" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-111-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-111-if.md index 72d849e1..0901726f 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-111-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-111-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"ui5-flexibility-keyuser" +"uas" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-111-then-allof-0-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-111-then-allof-0-if-properties-plan.md index c97f5143..1d941445 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-111-then-allof-0-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-111-then-allof-0-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"free" +"reporting-directory" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-111-then-allof-0-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-111-then-allof-0-if.md index 32230e38..22c5f9b9 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-111-then-allof-0-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-111-then-allof-0-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"free" +"reporting-directory" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-111-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-111-then-allof-0-then.md index 2ea3f4db..56580545 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-111-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-111-then-allof-0-then.md @@ -10,18 +10,20 @@ unknown ## plan -service plan >free< for >ui5-flexibility-keyuser< is available in data centers: +service plan >reporting-directory< for >uas< is available in data centers: * {'region': 'ap10', 'name': 'Australia (Sydney)'} * {'region': 'ap11', 'name': 'Singapore'} -* {'region': 'ap12', 'name': 'South Korea (Seoul)'} * {'region': 'ap20', 'name': 'Australia (Sydney) Azure'} * {'region': 'ap21', 'name': 'Singapore'} * {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} * {'region': 'ca10', 'name': 'Canada (Montreal)'} +* {'region': 'ch20', 'name': 'cf-ch20'} * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} * {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} * {'region': 'eu20', 'name': 'Europe (Netherlands)'} +* {'region': 'eu30', 'name': 'Europe (Frankfurt)'} +* {'region': 'in30', 'name': 'India (Mumbai)'} * {'region': 'jp10', 'name': 'Japan (Tokyo)'} * {'region': 'jp20', 'name': 'Japan (Tokyo)'} * {'region': 'us10', 'name': 'US East (VA)'} diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-111-then-allof-1-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-111-then-allof-1-if-properties-plan.md index 55dcb4ee..6f25968e 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-111-then-allof-1-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-111-then-allof-1-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"keyuser" +"reporting-ga-admin" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-111-then-allof-1-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-111-then-allof-1-if.md index a9dcc3e7..7a4e186a 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-111-then-allof-1-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-111-then-allof-1-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"keyuser" +"reporting-ga-admin" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-111-then-allof-1-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-111-then-allof-1-then.md index cdedee4f..ec0c80a6 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-111-then-allof-1-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-111-then-allof-1-then.md @@ -10,15 +10,15 @@ unknown ## plan -service plan >keyuser< for >ui5-flexibility-keyuser< is available in data centers: +service plan >reporting-ga-admin< for >uas< is available in data centers: * {'region': 'ap10', 'name': 'Australia (Sydney)'} * {'region': 'ap11', 'name': 'Singapore'} -* {'region': 'ap12', 'name': 'South Korea (Seoul)'} * {'region': 'ap20', 'name': 'Australia (Sydney) Azure'} * {'region': 'ap21', 'name': 'Singapore'} * {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} * {'region': 'ca10', 'name': 'Canada (Montreal)'} +* {'region': 'ch20', 'name': 'cf-ch20'} * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} * {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} * {'region': 'eu20', 'name': 'Europe (Netherlands)'} diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-111-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-111-then-properties-plan.md index 06280942..57015842 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-111-then-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-111-then-properties-plan.md @@ -6,7 +6,7 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :---------- | :---------- | -| `"free"` | | -| `"keyuser"` | | +| Value | Explanation | +| :---------------------- | :---------- | +| `"reporting-directory"` | | +| `"reporting-ga-admin"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-111-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-111-then.md index d5f30684..259abdea 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-111-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-111-then.md @@ -37,14 +37,14 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :---------- | :---------- | -| `"free"` | | -| `"keyuser"` | | +| Value | Explanation | +| :---------------------- | :---------- | +| `"reporting-directory"` | | +| `"reporting-ga-admin"` | | ## name -UI5 flexibility for key users: The UI5 flexibility service for key users lets you provide UI adaptation capabilites for your UI5 applications on Cloud Foundry. Users of your applications can change the user interface of your applications in an upgrade-safe and modification-free way, without affecting any other customer. +SAP Usage Data Management service for SAP BTP: The SAP Usage Data Management service for SAP BTP provides REST APIs that are responsible for gathering, storing, and making usage information available for all services and applications in all regions in a cloud deployment, for the purpose of central analysis, reporting, and license auditing. The service accumulates the information and provides reports in several business systems (reporting and operations) for resource planning and cross billing purposes. `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-112-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-112-if-properties-name.md index e31e75de..ee0bbc4c 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-112-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-112-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"workcalendar" +"ui5-flexibility-keyuser" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-112-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-112-if.md index 45ca3c68..e3c69e08 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-112-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-112-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"workcalendar" +"ui5-flexibility-keyuser" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-112-then-allof-0-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-112-then-allof-0-if-properties-plan.md index 4f94ce99..c97f5143 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-112-then-allof-0-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-112-then-allof-0-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"default" +"free" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-112-then-allof-0-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-112-then-allof-0-if.md index 0af850f9..13eadf05 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-112-then-allof-0-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-112-then-allof-0-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"default" +"free" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-112-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-112-then-allof-0-then.md index 8a76f65d..c184669a 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-112-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-112-then-allof-0-then.md @@ -10,10 +10,24 @@ unknown ## plan -service plan >default< for >workcalendar< is available in data centers: - +service plan >free< for >ui5-flexibility-keyuser< is available in data centers: + +* {'region': 'ap10', 'name': 'Australia (Sydney)'} +* {'region': 'ap11', 'name': 'Singapore'} +* {'region': 'ap12', 'name': 'South Korea (Seoul)'} +* {'region': 'ap20', 'name': 'Australia (Sydney) Azure'} +* {'region': 'ap21', 'name': 'Singapore'} +* {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} +* {'region': 'ca10', 'name': 'Canada (Montreal)'} * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} +* {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} +* {'region': 'eu20', 'name': 'Europe (Netherlands)'} +* {'region': 'jp10', 'name': 'Japan (Tokyo)'} +* {'region': 'jp20', 'name': 'Japan (Tokyo)'} * {'region': 'us10', 'name': 'US East (VA)'} +* {'region': 'us20', 'name': 'US West (WA)'} +* {'region': 'us21', 'name': 'US East (VA)'} +* {'region': 'us30', 'name': 'US Central (IA)'} `plan` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-83-then-allof-1-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-112-then-allof-1-if-properties-plan.md similarity index 92% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-83-then-allof-1-if-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-112-then-allof-1-if-properties-plan.md index 2cf6fedc..55dcb4ee 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-83-then-allof-1-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-112-then-allof-1-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"medium" +"keyuser" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-109-then-allof-2-if-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-112-then-allof-1-if-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-109-then-allof-2-if-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-112-then-allof-1-if-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-109-then-allof-1-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-112-then-allof-1-if.md similarity index 82% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-109-then-allof-1-if.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-112-then-allof-1-if.md index 577e6c78..e7e2f33d 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-109-then-allof-1-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-112-then-allof-1-if.md @@ -6,7 +6,7 @@ unknown | Property | Type | Required | Nullable | Defined by | | :------------ | :------------ | :------- | :------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-109-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/109/then/allOf/1/if/properties/plan") | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-112-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/112/then/allOf/1/if/properties/plan") | ## plan @@ -20,7 +20,7 @@ unknown * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-109-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/109/then/allOf/1/if/properties/plan") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-112-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/112/then/allOf/1/if/properties/plan") ### plan Type @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"standard" +"keyuser" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-109-then-allof-2-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-112-then-allof-1-then-properties-plan.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-109-then-allof-2-then-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-112-then-allof-1-then-properties-plan.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-109-then-allof-2-then-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-112-then-allof-1-then-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-109-then-allof-2-then-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-112-then-allof-1-then-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-109-then-allof-1-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-112-then-allof-1-then.md similarity index 84% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-109-then-allof-1-then.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-112-then-allof-1-then.md index 81043429..a2f9a5d5 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-109-then-allof-1-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-112-then-allof-1-then.md @@ -6,11 +6,11 @@ unknown | Property | Type | Required | Nullable | Defined by | | :------------ | :------------ | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-109-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/109/then/allOf/1/then/properties/plan") | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-112-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/112/then/allOf/1/then/properties/plan") | ## plan -service plan >standard< for >transport< is available in data centers: +service plan >keyuser< for >ui5-flexibility-keyuser< is available in data centers: * {'region': 'ap10', 'name': 'Australia (Sydney)'} * {'region': 'ap11', 'name': 'Singapore'} @@ -19,7 +19,6 @@ service plan >standard< for >transport< is available in data centers: * {'region': 'ap21', 'name': 'Singapore'} * {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} * {'region': 'ca10', 'name': 'Canada (Montreal)'} -* {'region': 'ch20', 'name': 'cf-ch20'} * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} * {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} * {'region': 'eu20', 'name': 'Europe (Netherlands)'} @@ -40,7 +39,7 @@ service plan >standard< for >transport< is available in data centers: * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-109-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/109/then/allOf/1/then/properties/plan") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-112-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/112/then/allOf/1/then/properties/plan") ### plan Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-109-then-allof-1.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-112-then-allof-1.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-109-then-allof-1.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-112-then-allof-1.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-112-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-112-then-properties-plan.md index 916e7975..06280942 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-112-then-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-112-then-properties-plan.md @@ -8,4 +8,5 @@ unknown | Value | Explanation | | :---------- | :---------- | -| `"default"` | | +| `"free"` | | +| `"keyuser"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-112-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-112-then.md index 1b9bf55e..d5c35896 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-112-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-112-then.md @@ -6,6 +6,8 @@ all of * [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-112-then-allof-0.md "check type definition") +* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-112-then-allof-1.md "check type definition") + # then Properties | Property | Type | Required | Nullable | Defined by | @@ -37,11 +39,12 @@ unknown | Value | Explanation | | :---------- | :---------- | -| `"default"` | | +| `"free"` | | +| `"keyuser"` | | ## name -Work Calendar: The Work Calendar service provides APIs to get detailed information such as weekday, holiday or workday based on country factory calendars. +UI5 flexibility for key users: The UI5 flexibility service for key users lets you provide UI adaptation capabilites for your UI5 applications on Cloud Foundry. Users of your applications can change the user interface of your applications in an upgrade-safe and modification-free way, without affecting any other customer. `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-113-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-113-if-properties-name.md index bf74d618..e31e75de 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-113-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-113-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"workflow" +"workcalendar" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-113-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-113-if.md index d5c7a6d3..8ea11873 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-113-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-113-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"workflow" +"workcalendar" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-113-then-allof-0-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-113-then-allof-0-if-properties-plan.md index 126392b1..4f94ce99 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-113-then-allof-0-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-113-then-allof-0-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"standard" +"default" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-113-then-allof-0-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-113-then-allof-0-if.md index 27116088..1278e4f3 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-113-then-allof-0-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-113-then-allof-0-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"standard" +"default" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-113-then-allof-0-then-properties-parameters.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-113-then-allof-0-then-properties-parameters.md deleted file mode 100644 index 52b1d503..00000000 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-113-then-allof-0-then-properties-parameters.md +++ /dev/null @@ -1,71 +0,0 @@ -## parameters Type - -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-113-then-allof-0-then-properties-parameters.md)) - -# parameters Properties - -| Property | Type | Required | Nullable | Defined by | -| :------------------------------------------------------------ | :------- | :------- | :------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [authorities](#authorities) | `array` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-113-then-allof-0-then-properties-parameters-properties-authorities.md "undefined#/properties/services/items/allOf/1/then/allOf/113/then/allOf/0/then/properties/parameters/properties/authorities") | -| [defaultCollectionQueryFilter](#defaultcollectionqueryfilter) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-113-then-allof-0-then-properties-parameters-properties-defaultcollectionqueryfilter.md "undefined#/properties/services/items/allOf/1/then/allOf/113/then/allOf/0/then/properties/parameters/properties/defaultCollectionQueryFilter") | - -## authorities - -Configures scopes that are available in the client credentials flow. - -`authorities` - -* is optional - -* Type: `string[]` - -* cannot be null - -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-113-then-allof-0-then-properties-parameters-properties-authorities.md "undefined#/properties/services/items/allOf/1/then/allOf/113/then/allOf/0/then/properties/parameters/properties/authorities") - -### authorities Type - -`string[]` - -### authorities Default Value - -The default value is: - -```json -[] -``` - -## defaultCollectionQueryFilter - -Configures the default behavior of queries that return a collection of Workflow entities. - -`defaultCollectionQueryFilter` - -* is optional - -* Type: `string` - -* cannot be null - -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-113-then-allof-0-then-properties-parameters-properties-defaultcollectionqueryfilter.md "undefined#/properties/services/items/allOf/1/then/allOf/113/then/allOf/0/then/properties/parameters/properties/defaultCollectionQueryFilter") - -### defaultCollectionQueryFilter Type - -`string` - -### defaultCollectionQueryFilter Constraints - -**enum**: the value of this property must be equal to one of the following values: - -| Value | Explanation | -| :--------- | :---------- | -| `"own"` | | -| `"shared"` | | - -### defaultCollectionQueryFilter Default Value - -The default value is: - -```json -"own" -``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-113-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-113-then-allof-0-then.md index a3d37794..7721a801 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-113-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-113-then-allof-0-then.md @@ -4,32 +4,16 @@ unknown # then Properties -| Property | Type | Required | Nullable | Defined by | -| :------------------------ | :------------ | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-113-then-allof-0-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/113/then/allOf/0/then/properties/plan") | -| [parameters](#parameters) | `object` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-113-then-allof-0-then-properties-parameters.md "undefined#/properties/services/items/allOf/1/then/allOf/113/then/allOf/0/then/properties/parameters") | +| Property | Type | Required | Nullable | Defined by | +| :------------ | :------------ | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-113-then-allof-0-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/113/then/allOf/0/then/properties/plan") | ## plan -service plan >standard< for >workflow< is available in data centers: +service plan >default< for >workcalendar< is available in data centers: -* {'region': 'ap10', 'name': 'Australia (Sydney)'} -* {'region': 'ap11', 'name': 'Singapore'} -* {'region': 'ap12', 'name': 'South Korea (Seoul)'} -* {'region': 'ap20', 'name': 'Australia (Sydney) Azure'} -* {'region': 'ap21', 'name': 'Singapore'} -* {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} -* {'region': 'ca10', 'name': 'Canada (Montreal)'} * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} -* {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} -* {'region': 'eu20', 'name': 'Europe (Netherlands)'} -* {'region': 'eu30', 'name': 'Europe (Frankfurt)'} -* {'region': 'jp10', 'name': 'Japan (Tokyo)'} -* {'region': 'jp20', 'name': 'Japan (Tokyo)'} * {'region': 'us10', 'name': 'US East (VA)'} -* {'region': 'us20', 'name': 'US West (WA)'} -* {'region': 'us21', 'name': 'US East (VA)'} -* {'region': 'us30', 'name': 'US Central (IA)'} `plan` @@ -44,21 +28,3 @@ service plan >standard< for >workflow< is available in data centers: ### plan Type unknown - -## parameters - - - -`parameters` - -* is required - -* Type: `object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-113-then-allof-0-then-properties-parameters.md)) - -* cannot be null - -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-113-then-allof-0-then-properties-parameters.md "undefined#/properties/services/items/allOf/1/then/allOf/113/then/allOf/0/then/properties/parameters") - -### parameters Type - -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-113-then-allof-0-then-properties-parameters.md)) diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-113-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-113-then-properties-plan.md index 248cb3df..916e7975 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-113-then-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-113-then-properties-plan.md @@ -6,6 +6,6 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :----------- | :---------- | -| `"standard"` | | +| Value | Explanation | +| :---------- | :---------- | +| `"default"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-113-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-113-then.md index 276ddcc9..3e792b0e 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-113-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-113-then.md @@ -35,13 +35,13 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :----------- | :---------- | -| `"standard"` | | +| Value | Explanation | +| :---------- | :---------- | +| `"default"` | | ## name -SAP Workflow Management: SAP Workflow service allows you to build, run, and manage workflows, from simple approvals to end-to-end processes that span across different organizations and applications. With an inbox application and custom-built user interfaces, you involve end users into business processes for decision making and data entry. The workflow service comes with web-based tools for workflow modeling, APIs for consumption in custom applications, monitoring tools, and a set of Fiori-based applications for end-user access. You can use JavaScript to embed custom business logic. +Work Calendar: The Work Calendar service provides APIs to get detailed information such as weekday, holiday or workday based on country factory calendars. `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-114-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-114-if-properties-name.md index 35b710c5..bf74d618 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-114-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-114-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"workflowmanagement" +"workflow" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-114-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-114-if.md index d486f038..c325b5dd 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-114-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-114-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"workflowmanagement" +"workflow" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-114-then-allof-0-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-114-then-allof-0-if-properties-plan.md index d191f55e..126392b1 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-114-then-allof-0-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-114-then-allof-0-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"workflow" +"standard" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-114-then-allof-0-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-114-then-allof-0-if.md index 3d3e97b5..877319eb 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-114-then-allof-0-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-114-then-allof-0-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"workflow" +"standard" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-113-then-allof-0-then-properties-parameters-properties-authorities-items.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-114-then-allof-0-then-properties-parameters-properties-authorities-items.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-113-then-allof-0-then-properties-parameters-properties-authorities-items.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-114-then-allof-0-then-properties-parameters-properties-authorities-items.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-113-then-allof-0-then-properties-parameters-properties-authorities.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-114-then-allof-0-then-properties-parameters-properties-authorities.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-113-then-allof-0-then-properties-parameters-properties-authorities.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-114-then-allof-0-then-properties-parameters-properties-authorities.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-113-then-allof-0-then-properties-parameters-properties-defaultcollectionqueryfilter.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-114-then-allof-0-then-properties-parameters-properties-defaultcollectionqueryfilter.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-113-then-allof-0-then-properties-parameters-properties-defaultcollectionqueryfilter.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-114-then-allof-0-then-properties-parameters-properties-defaultcollectionqueryfilter.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-114-then-allof-0-then-properties-parameters.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-114-then-allof-0-then-properties-parameters.md index 052d66c1..610f42d1 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-114-then-allof-0-then-properties-parameters.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-114-then-allof-0-then-properties-parameters.md @@ -4,5 +4,68 @@ # parameters Properties -| Property | Type | Required | Nullable | Defined by | -| :------- | :--- | :------- | :------- | :--------- | +| Property | Type | Required | Nullable | Defined by | +| :------------------------------------------------------------ | :------- | :------- | :------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [authorities](#authorities) | `array` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-114-then-allof-0-then-properties-parameters-properties-authorities.md "undefined#/properties/services/items/allOf/1/then/allOf/114/then/allOf/0/then/properties/parameters/properties/authorities") | +| [defaultCollectionQueryFilter](#defaultcollectionqueryfilter) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-114-then-allof-0-then-properties-parameters-properties-defaultcollectionqueryfilter.md "undefined#/properties/services/items/allOf/1/then/allOf/114/then/allOf/0/then/properties/parameters/properties/defaultCollectionQueryFilter") | + +## authorities + +Configures scopes that are available in the client credentials flow. + +`authorities` + +* is optional + +* Type: `string[]` + +* cannot be null + +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-114-then-allof-0-then-properties-parameters-properties-authorities.md "undefined#/properties/services/items/allOf/1/then/allOf/114/then/allOf/0/then/properties/parameters/properties/authorities") + +### authorities Type + +`string[]` + +### authorities Default Value + +The default value is: + +```json +[] +``` + +## defaultCollectionQueryFilter + +Configures the default behavior of queries that return a collection of Workflow entities. + +`defaultCollectionQueryFilter` + +* is optional + +* Type: `string` + +* cannot be null + +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-114-then-allof-0-then-properties-parameters-properties-defaultcollectionqueryfilter.md "undefined#/properties/services/items/allOf/1/then/allOf/114/then/allOf/0/then/properties/parameters/properties/defaultCollectionQueryFilter") + +### defaultCollectionQueryFilter Type + +`string` + +### defaultCollectionQueryFilter Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :--------- | :---------- | +| `"own"` | | +| `"shared"` | | + +### defaultCollectionQueryFilter Default Value + +The default value is: + +```json +"own" +``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-114-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-114-then-allof-0-then.md index 8efa920c..6137e173 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-114-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-114-then-allof-0-then.md @@ -11,7 +11,7 @@ unknown ## plan -service plan >workflow< for >workflowmanagement< is available in data centers: +service plan >standard< for >workflow< is available in data centers: * {'region': 'ap10', 'name': 'Australia (Sydney)'} * {'region': 'ap11', 'name': 'Singapore'} diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-114-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-114-then-properties-plan.md index 0fa346a8..248cb3df 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-114-then-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-114-then-properties-plan.md @@ -8,4 +8,4 @@ unknown | Value | Explanation | | :----------- | :---------- | -| `"workflow"` | | +| `"standard"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-114-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-114-then.md index 1077f9e1..a446acf9 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-114-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-114-then.md @@ -37,11 +37,11 @@ unknown | Value | Explanation | | :----------- | :---------- | -| `"workflow"` | | +| `"standard"` | | ## name -SAP Workflow Management: Digitize workflows, manage decisions and gain end-to-end process visibility +SAP Workflow Management: SAP Workflow service allows you to build, run, and manage workflows, from simple approvals to end-to-end processes that span across different organizations and applications. With an inbox application and custom-built user interfaces, you involve end users into business processes for decision making and data entry. The workflow service comes with web-based tools for workflow modeling, APIs for consumption in custom applications, monitoring tools, and a set of Fiori-based applications for end-user access. You can use JavaScript to embed custom business logic. `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-115-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-115-if-properties-name.md index f490d2b3..35b710c5 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-115-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-115-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"wums-partner-api-beta" +"workflowmanagement" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-115-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-115-if.md index 640b5853..99876155 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-115-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-115-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"wums-partner-api-beta" +"workflowmanagement" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-115-then-allof-0-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-115-then-allof-0-if-properties-plan.md index 4f94ce99..d191f55e 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-115-then-allof-0-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-115-then-allof-0-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"default" +"workflow" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-115-then-allof-0-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-115-then-allof-0-if.md index 6383ba1f..76b9d60d 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-115-then-allof-0-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-115-then-allof-0-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"default" +"workflow" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-115-then-allof-0-then-properties-parameters.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-115-then-allof-0-then-properties-parameters.md new file mode 100644 index 00000000..48f9291c --- /dev/null +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-115-then-allof-0-then-properties-parameters.md @@ -0,0 +1,8 @@ +## parameters Type + +`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-115-then-allof-0-then-properties-parameters.md)) + +# parameters Properties + +| Property | Type | Required | Nullable | Defined by | +| :------- | :--- | :------- | :------- | :--------- | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-115-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-115-then-allof-0-then.md index 2ca60acf..17ec9591 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-115-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-115-then-allof-0-then.md @@ -4,15 +4,32 @@ unknown # then Properties -| Property | Type | Required | Nullable | Defined by | -| :------------ | :------------ | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-115-then-allof-0-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/115/then/allOf/0/then/properties/plan") | +| Property | Type | Required | Nullable | Defined by | +| :------------------------ | :------------ | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-115-then-allof-0-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/115/then/allOf/0/then/properties/plan") | +| [parameters](#parameters) | `object` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-115-then-allof-0-then-properties-parameters.md "undefined#/properties/services/items/allOf/1/then/allOf/115/then/allOf/0/then/properties/parameters") | ## plan -service plan >default< for >wums-partner-api-beta< is available in data centers: +service plan >workflow< for >workflowmanagement< is available in data centers: +* {'region': 'ap10', 'name': 'Australia (Sydney)'} +* {'region': 'ap11', 'name': 'Singapore'} +* {'region': 'ap12', 'name': 'South Korea (Seoul)'} +* {'region': 'ap20', 'name': 'Australia (Sydney) Azure'} +* {'region': 'ap21', 'name': 'Singapore'} +* {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} +* {'region': 'ca10', 'name': 'Canada (Montreal)'} * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} +* {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} +* {'region': 'eu20', 'name': 'Europe (Netherlands)'} +* {'region': 'eu30', 'name': 'Europe (Frankfurt)'} +* {'region': 'jp10', 'name': 'Japan (Tokyo)'} +* {'region': 'jp20', 'name': 'Japan (Tokyo)'} +* {'region': 'us10', 'name': 'US East (VA)'} +* {'region': 'us20', 'name': 'US West (WA)'} +* {'region': 'us21', 'name': 'US East (VA)'} +* {'region': 'us30', 'name': 'US Central (IA)'} `plan` @@ -27,3 +44,21 @@ service plan >default< for >wums-partner-api-beta< is available in data centers: ### plan Type unknown + +## parameters + + + +`parameters` + +* is required + +* Type: `object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-115-then-allof-0-then-properties-parameters.md)) + +* cannot be null + +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-115-then-allof-0-then-properties-parameters.md "undefined#/properties/services/items/allOf/1/then/allOf/115/then/allOf/0/then/properties/parameters") + +### parameters Type + +`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-115-then-allof-0-then-properties-parameters.md)) diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-115-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-115-then-properties-plan.md index 916e7975..0fa346a8 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-115-then-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-115-then-properties-plan.md @@ -6,6 +6,6 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :---------- | :---------- | -| `"default"` | | +| Value | Explanation | +| :----------- | :---------- | +| `"workflow"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-115-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-115-then.md index cda5d8de..a6932856 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-115-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-115-then.md @@ -35,13 +35,13 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :---------- | :---------- | -| `"default"` | | +| Value | Explanation | +| :----------- | :---------- | +| `"workflow"` | | ## name -Workspace Utilization: The Workspace Utilization service lets you assign sensors to workplaces and spaces. These sensors measure how your workspaces are used. The Workspace Utilization service integrates with SAP Cloud for Real Estate and SAP Analytics Cloud to analyze, manage, and optimize your workspaces. +SAP Workflow Management: Digitize workflows, manage decisions and gain end-to-end process visibility `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-116-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-116-if-properties-name.md index fe32dfc4..f490d2b3 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-116-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-116-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"xfs-runtime" +"wums-partner-api-beta" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-116-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-116-if.md index ecc7d7fc..6bb78303 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-116-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-116-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"xfs-runtime" +"wums-partner-api-beta" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-116-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-116-then-allof-0-then.md index 0f2e4c4b..ad4a0e0f 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-116-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-116-then-allof-0-then.md @@ -10,21 +10,9 @@ unknown ## plan -service plan >default< for >xfs-runtime< is available in data centers: - -* {'region': 'ap10', 'name': 'Australia (Sydney)'} -* {'region': 'ap11', 'name': 'Singapore'} -* {'region': 'ap12', 'name': 'South Korea (Seoul)'} -* {'region': 'ap21', 'name': 'Singapore'} -* {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} -* {'region': 'ca10', 'name': 'Canada (Montreal)'} +service plan >default< for >wums-partner-api-beta< is available in data centers: + * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} -* {'region': 'eu20', 'name': 'Europe (Netherlands)'} -* {'region': 'jp10', 'name': 'Japan (Tokyo)'} -* {'region': 'jp20', 'name': 'Japan (Tokyo)'} -* {'region': 'us10', 'name': 'US East (VA)'} -* {'region': 'us20', 'name': 'US West (WA)'} -* {'region': 'us21', 'name': 'US East (VA)'} `plan` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-116-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-116-then.md index 3e0a61f3..b8b2ece8 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-116-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-116-then.md @@ -41,7 +41,7 @@ unknown ## name -SAP BTP, serverless runtime: Allows you to create, manage, configure extensions on SAP Business Technology Platform +Workspace Utilization: The Workspace Utilization service lets you assign sensors to workplaces and spaces. These sensors measure how your workspaces are used. The Workspace Utilization service integrates with SAP Cloud for Real Estate and SAP Analytics Cloud to analyze, manage, and optimize your workspaces. `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-117-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-117-if-properties-name.md index 6ab3fac0..fe32dfc4 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-117-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-117-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"xsuaa" +"xfs-runtime" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-117-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-117-if.md index d898d196..4f818dcb 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-117-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-117-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"xsuaa" +"xfs-runtime" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-117-then-allof-0-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-117-then-allof-0-if-properties-plan.md index 44b5fea9..4f94ce99 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-117-then-allof-0-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-117-then-allof-0-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"apiaccess" +"default" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-117-then-allof-0-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-117-then-allof-0-if.md index 8a6147c4..b1c58400 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-117-then-allof-0-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-117-then-allof-0-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"apiaccess" +"default" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-117-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-117-then-allof-0-then.md index 0e2fe3ac..692ad0d3 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-117-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-117-then-allof-0-then.md @@ -10,27 +10,21 @@ unknown ## plan -service plan >apiaccess< for >xsuaa< is available in data centers: +service plan >default< for >xfs-runtime< is available in data centers: * {'region': 'ap10', 'name': 'Australia (Sydney)'} * {'region': 'ap11', 'name': 'Singapore'} * {'region': 'ap12', 'name': 'South Korea (Seoul)'} -* {'region': 'ap20', 'name': 'Australia (Sydney) Azure'} * {'region': 'ap21', 'name': 'Singapore'} * {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} * {'region': 'ca10', 'name': 'Canada (Montreal)'} -* {'region': 'ch20', 'name': 'cf-ch20'} * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} -* {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} * {'region': 'eu20', 'name': 'Europe (Netherlands)'} -* {'region': 'eu30', 'name': 'Europe (Frankfurt)'} -* {'region': 'in30', 'name': 'India (Mumbai)'} * {'region': 'jp10', 'name': 'Japan (Tokyo)'} * {'region': 'jp20', 'name': 'Japan (Tokyo)'} * {'region': 'us10', 'name': 'US East (VA)'} * {'region': 'us20', 'name': 'US West (WA)'} * {'region': 'us21', 'name': 'US East (VA)'} -* {'region': 'us30', 'name': 'US Central (IA)'} `plan` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-117-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-117-then-properties-plan.md index 2f64335f..916e7975 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-117-then-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-117-then-properties-plan.md @@ -6,9 +6,6 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :-------------- | :---------- | -| `"apiaccess"` | | -| `"application"` | | -| `"broker"` | | -| `"space"` | | +| Value | Explanation | +| :---------- | :---------- | +| `"default"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-117-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-117-then.md index 8b2139f2..9605af43 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-117-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-117-then.md @@ -6,12 +6,6 @@ all of * [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-117-then-allof-0.md "check type definition") -* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-117-then-allof-1.md "check type definition") - -* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-117-then-allof-2.md "check type definition") - -* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-117-then-allof-3.md "check type definition") - # then Properties | Property | Type | Required | Nullable | Defined by | @@ -41,16 +35,13 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :-------------- | :---------- | -| `"apiaccess"` | | -| `"application"` | | -| `"broker"` | | -| `"space"` | | +| Value | Explanation | +| :---------- | :---------- | +| `"default"` | | ## name -SAP Authorization and Trust Management service: The Authorization and Trust Management service lets you manage user authorizations and trust to identity providers. Identity providers are the user base for applications. You can use an identity authentication tenant, an SAP on-premise system, or a custom corporate identity provider. User authorizations are managed using technical roles at the application level, which can be aggregated into business-level groups and role collections for large-scale cloud scenarios. +SAP BTP, serverless runtime: Allows you to create, manage, configure extensions on SAP Business Technology Platform `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-90-then-allof-2-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-118-if-properties-name.md similarity index 66% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-90-then-allof-2-if-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-118-if-properties-name.md index b970e1cf..6ab3fac0 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-90-then-allof-2-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-118-if-properties-name.md @@ -1,11 +1,11 @@ -## plan Type +## name Type unknown -## plan Constraints +## name Constraints **constant**: the value of this property must be equal to: ```json -"small" +"xsuaa" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-117-then-allof-1-if-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-118-if-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-117-then-allof-1-if-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-118-if-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-118-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-118-if.md new file mode 100644 index 00000000..5ce883bc --- /dev/null +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-118-if.md @@ -0,0 +1,35 @@ +## if Type + +unknown + +# if Properties + +| Property | Type | Required | Nullable | Defined by | +| :------------ | :------------ | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| [name](#name) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-118-if-properties-name.md "undefined#/properties/services/items/allOf/1/then/allOf/118/if/properties/name") | + +## name + + + +`name` + +* is optional + +* Type: unknown + +* cannot be null + +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-118-if-properties-name.md "undefined#/properties/services/items/allOf/1/then/allOf/118/if/properties/name") + +### name Type + +unknown + +### name Constraints + +**constant**: the value of this property must be equal to: + +```json +"xsuaa" +``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-5-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-118-then-allof-0-if-properties-plan.md similarity index 90% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-5-if-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-118-then-allof-0-if-properties-plan.md index 3fbe8323..44b5fea9 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-5-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-118-then-allof-0-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"hana-free" +"apiaccess" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-117-then-allof-1-then-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-118-then-allof-0-if-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-117-then-allof-1-then-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-118-then-allof-0-if-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-118-then-allof-0-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-118-then-allof-0-if.md new file mode 100644 index 00000000..6e6b9dae --- /dev/null +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-118-then-allof-0-if.md @@ -0,0 +1,35 @@ +## if Type + +unknown + +# if Properties + +| Property | Type | Required | Nullable | Defined by | +| :------------ | :------------ | :------- | :------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-118-then-allof-0-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/118/then/allOf/0/if/properties/plan") | + +## plan + + + +`plan` + +* is optional + +* Type: unknown + +* cannot be null + +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-118-then-allof-0-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/118/then/allOf/0/if/properties/plan") + +### plan Type + +unknown + +### plan Constraints + +**constant**: the value of this property must be equal to: + +```json +"apiaccess" +``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-117-then-allof-1-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-118-then-allof-0-then-properties-plan.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-117-then-allof-1-then-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-118-then-allof-0-then-properties-plan.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-117-then-allof-2-if-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-118-then-allof-0-then-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-117-then-allof-2-if-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-118-then-allof-0-then-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-118-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-118-then-allof-0-then.md new file mode 100644 index 00000000..3b3b5f80 --- /dev/null +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-118-then-allof-0-then.md @@ -0,0 +1,47 @@ +## then Type + +unknown + +# then Properties + +| Property | Type | Required | Nullable | Defined by | +| :------------ | :------------ | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-118-then-allof-0-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/118/then/allOf/0/then/properties/plan") | + +## plan + +service plan >apiaccess< for >xsuaa< is available in data centers: + +* {'region': 'ap10', 'name': 'Australia (Sydney)'} +* {'region': 'ap11', 'name': 'Singapore'} +* {'region': 'ap12', 'name': 'South Korea (Seoul)'} +* {'region': 'ap20', 'name': 'Australia (Sydney) Azure'} +* {'region': 'ap21', 'name': 'Singapore'} +* {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} +* {'region': 'ca10', 'name': 'Canada (Montreal)'} +* {'region': 'ch20', 'name': 'cf-ch20'} +* {'region': 'eu10', 'name': 'Europe (Frankfurt)'} +* {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} +* {'region': 'eu20', 'name': 'Europe (Netherlands)'} +* {'region': 'eu30', 'name': 'Europe (Frankfurt)'} +* {'region': 'in30', 'name': 'India (Mumbai)'} +* {'region': 'jp10', 'name': 'Japan (Tokyo)'} +* {'region': 'jp20', 'name': 'Japan (Tokyo)'} +* {'region': 'us10', 'name': 'US East (VA)'} +* {'region': 'us20', 'name': 'US West (WA)'} +* {'region': 'us21', 'name': 'US East (VA)'} +* {'region': 'us30', 'name': 'US Central (IA)'} + +`plan` + +* is optional + +* Type: unknown + +* cannot be null + +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-118-then-allof-0-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/118/then/allOf/0/then/properties/plan") + +### plan Type + +unknown diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-0-then-properties-parameters-properties-notifications-default-0.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-118-then-allof-0.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-0-then-properties-parameters-properties-notifications-default-0.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-118-then-allof-0.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-117-then-allof-1-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-118-then-allof-1-if-properties-plan.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-117-then-allof-1-if-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-118-then-allof-1-if-properties-plan.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-117-then-allof-2-then-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-118-then-allof-1-if-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-117-then-allof-2-then-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-118-then-allof-1-if-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-117-then-allof-1-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-118-then-allof-1-if.md similarity index 83% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-117-then-allof-1-if.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-118-then-allof-1-if.md index 439e4b21..f1c18425 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-117-then-allof-1-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-118-then-allof-1-if.md @@ -6,7 +6,7 @@ unknown | Property | Type | Required | Nullable | Defined by | | :------------ | :------------ | :------- | :------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-117-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/117/then/allOf/1/if/properties/plan") | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-118-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/118/then/allOf/1/if/properties/plan") | ## plan @@ -20,7 +20,7 @@ unknown * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-117-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/117/then/allOf/1/if/properties/plan") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-118-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/118/then/allOf/1/if/properties/plan") ### plan Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-117-then-allof-2-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-118-then-allof-1-then-properties-plan.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-117-then-allof-2-then-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-118-then-allof-1-then-properties-plan.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-117-then-allof-3-if-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-118-then-allof-1-then-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-117-then-allof-3-if-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-118-then-allof-1-then-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-117-then-allof-1-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-118-then-allof-1-then.md similarity index 89% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-117-then-allof-1-then.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-118-then-allof-1-then.md index 181e7a0d..0c1d2472 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-117-then-allof-1-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-118-then-allof-1-then.md @@ -6,7 +6,7 @@ unknown | Property | Type | Required | Nullable | Defined by | | :------------ | :------------ | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-117-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/117/then/allOf/1/then/properties/plan") | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-118-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/118/then/allOf/1/then/properties/plan") | ## plan @@ -40,7 +40,7 @@ service plan >application< for >xsuaa< is available in data centers: * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-117-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/117/then/allOf/1/then/properties/plan") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-118-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/118/then/allOf/1/then/properties/plan") ### plan Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-117-then-allof-1.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-118-then-allof-1.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-117-then-allof-1.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-118-then-allof-1.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-117-then-allof-2-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-118-then-allof-2-if-properties-plan.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-117-then-allof-2-if-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-118-then-allof-2-if-properties-plan.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-117-then-allof-3-then-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-118-then-allof-2-if-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-117-then-allof-3-then-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-118-then-allof-2-if-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-117-then-allof-2-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-118-then-allof-2-if.md similarity index 83% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-117-then-allof-2-if.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-118-then-allof-2-if.md index 2ee6ea75..7fddd12e 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-117-then-allof-2-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-118-then-allof-2-if.md @@ -6,7 +6,7 @@ unknown | Property | Type | Required | Nullable | Defined by | | :------------ | :------------ | :------- | :------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-117-then-allof-2-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/117/then/allOf/2/if/properties/plan") | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-118-then-allof-2-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/118/then/allOf/2/if/properties/plan") | ## plan @@ -20,7 +20,7 @@ unknown * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-117-then-allof-2-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/117/then/allOf/2/if/properties/plan") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-118-then-allof-2-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/118/then/allOf/2/if/properties/plan") ### plan Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-117-then-allof-3-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-118-then-allof-2-then-properties-plan.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-117-then-allof-3-then-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-118-then-allof-2-then-properties-plan.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-12-then-allof-1-if-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-118-then-allof-2-then-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-12-then-allof-1-if-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-118-then-allof-2-then-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-117-then-allof-2-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-118-then-allof-2-then.md similarity index 89% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-117-then-allof-2-then.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-118-then-allof-2-then.md index 3aa37de0..b1f07274 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-117-then-allof-2-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-118-then-allof-2-then.md @@ -6,7 +6,7 @@ unknown | Property | Type | Required | Nullable | Defined by | | :------------ | :------------ | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-117-then-allof-2-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/117/then/allOf/2/then/properties/plan") | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-118-then-allof-2-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/118/then/allOf/2/then/properties/plan") | ## plan @@ -40,7 +40,7 @@ service plan >broker< for >xsuaa< is available in data centers: * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-117-then-allof-2-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/117/then/allOf/2/then/properties/plan") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-118-then-allof-2-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/118/then/allOf/2/then/properties/plan") ### plan Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-117-then-allof-2.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-118-then-allof-2.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-117-then-allof-2.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-118-then-allof-2.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-117-then-allof-3-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-118-then-allof-3-if-properties-plan.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-117-then-allof-3-if-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-118-then-allof-3-if-properties-plan.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-12-then-allof-1-then-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-118-then-allof-3-if-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-12-then-allof-1-then-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-118-then-allof-3-if-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-117-then-allof-3-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-118-then-allof-3-if.md similarity index 83% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-117-then-allof-3-if.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-118-then-allof-3-if.md index 8dd065a8..abfe55cf 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-117-then-allof-3-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-118-then-allof-3-if.md @@ -6,7 +6,7 @@ unknown | Property | Type | Required | Nullable | Defined by | | :------------ | :------------ | :------- | :------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-117-then-allof-3-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/117/then/allOf/3/if/properties/plan") | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-118-then-allof-3-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/118/then/allOf/3/if/properties/plan") | ## plan @@ -20,7 +20,7 @@ unknown * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-117-then-allof-3-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/117/then/allOf/3/if/properties/plan") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-118-then-allof-3-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/118/then/allOf/3/if/properties/plan") ### plan Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-12-then-allof-1-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-118-then-allof-3-then-properties-plan.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-12-then-allof-1-then-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-118-then-allof-3-then-properties-plan.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-14-then-allof-1-if-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-118-then-allof-3-then-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-14-then-allof-1-if-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-118-then-allof-3-then-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-117-then-allof-3-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-118-then-allof-3-then.md similarity index 89% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-117-then-allof-3-then.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-118-then-allof-3-then.md index 0a748325..1a436ef3 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-117-then-allof-3-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-118-then-allof-3-then.md @@ -6,7 +6,7 @@ unknown | Property | Type | Required | Nullable | Defined by | | :------------ | :------------ | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-117-then-allof-3-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/117/then/allOf/3/then/properties/plan") | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-118-then-allof-3-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/118/then/allOf/3/then/properties/plan") | ## plan @@ -40,7 +40,7 @@ service plan >space< for >xsuaa< is available in data centers: * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-117-then-allof-3-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/117/then/allOf/3/then/properties/plan") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-118-then-allof-3-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/118/then/allOf/3/then/properties/plan") ### plan Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-117-then-allof-3.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-118-then-allof-3.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-117-then-allof-3.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-118-then-allof-3.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-118-then-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-118-then-properties-name.md new file mode 100644 index 00000000..3a59e380 --- /dev/null +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-118-then-properties-name.md @@ -0,0 +1,3 @@ +## name Type + +unknown diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-118-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-118-then-properties-plan.md new file mode 100644 index 00000000..2f64335f --- /dev/null +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-118-then-properties-plan.md @@ -0,0 +1,14 @@ +## plan Type + +unknown + +## plan Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :-------------- | :---------- | +| `"apiaccess"` | | +| `"application"` | | +| `"broker"` | | +| `"space"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-14-then-allof-1-then-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-118-then-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-14-then-allof-1-then-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-118-then-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-118-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-118-then.md new file mode 100644 index 00000000..e8b7aca4 --- /dev/null +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-118-then.md @@ -0,0 +1,67 @@ +## then Type + +merged type ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-118-then.md)) + +all of + +* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-118-then-allof-0.md "check type definition") + +* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-118-then-allof-1.md "check type definition") + +* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-118-then-allof-2.md "check type definition") + +* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-118-then-allof-3.md "check type definition") + +# then Properties + +| Property | Type | Required | Nullable | Defined by | +| :------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-118-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/118/then/properties/plan") | +| [name](#name) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-118-then-properties-name.md "undefined#/properties/services/items/allOf/1/then/allOf/118/then/properties/name") | + +## plan + + + +`plan` + +* is optional + +* Type: unknown + +* cannot be null + +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-118-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/118/then/properties/plan") + +### plan Type + +unknown + +### plan Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :-------------- | :---------- | +| `"apiaccess"` | | +| `"application"` | | +| `"broker"` | | +| `"space"` | | + +## name + +SAP Authorization and Trust Management service: The Authorization and Trust Management service lets you manage user authorizations and trust to identity providers. Identity providers are the user base for applications. You can use an identity authentication tenant, an SAP on-premise system, or a custom corporate identity provider. User authorizations are managed using technical roles at the application level, which can be aggregated into business-level groups and role collections for large-scale cloud scenarios. + +`name` + +* is optional + +* Type: unknown + +* cannot be null + +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-118-then-properties-name.md "undefined#/properties/services/items/allOf/1/then/allOf/118/then/properties/name") + +### name Type + +unknown diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-118.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-118.md new file mode 100644 index 00000000..da4f8d31 --- /dev/null +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-118.md @@ -0,0 +1,3 @@ +## 118 Type + +unknown diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-12-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-12-if-properties-name.md index a999401f..d8a53a9b 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-12-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-12-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"auditlog-management" +"auditlog-api" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-12-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-12-if.md index 3bb05d01..606ec1c7 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-12-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-12-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"auditlog-management" +"auditlog-api" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-12-then-allof-0-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-12-then-allof-0-if-properties-plan.md index 0c12663e..4f94ce99 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-12-then-allof-0-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-12-then-allof-0-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"central" +"default" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-12-then-allof-0-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-12-then-allof-0-if.md index a0619985..41306540 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-12-then-allof-0-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-12-then-allof-0-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"central" +"default" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-12-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-12-then-allof-0-then.md index ef32acc1..9cb8007a 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-12-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-12-then-allof-0-then.md @@ -10,9 +10,27 @@ unknown ## plan -service plan >central< for >auditlog-management< is available in data centers: - +service plan >default< for >auditlog-api< is available in data centers: + +* {'region': 'ap10', 'name': 'Australia (Sydney)'} +* {'region': 'ap11', 'name': 'Singapore'} +* {'region': 'ap12', 'name': 'South Korea (Seoul)'} +* {'region': 'ap20', 'name': 'Australia (Sydney) Azure'} +* {'region': 'ap21', 'name': 'Singapore'} +* {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} +* {'region': 'ca10', 'name': 'Canada (Montreal)'} +* {'region': 'ch20', 'name': 'cf-ch20'} * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} +* {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} +* {'region': 'eu20', 'name': 'Europe (Netherlands)'} +* {'region': 'eu30', 'name': 'Europe (Frankfurt)'} +* {'region': 'in30', 'name': 'India (Mumbai)'} +* {'region': 'jp10', 'name': 'Japan (Tokyo)'} +* {'region': 'jp20', 'name': 'Japan (Tokyo)'} +* {'region': 'us10', 'name': 'US East (VA)'} +* {'region': 'us20', 'name': 'US West (WA)'} +* {'region': 'us21', 'name': 'US East (VA)'} +* {'region': 'us30', 'name': 'US Central (IA)'} `plan` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-12-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-12-then-properties-plan.md index c20e121e..916e7975 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-12-then-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-12-then-properties-plan.md @@ -8,5 +8,4 @@ unknown | Value | Explanation | | :---------- | :---------- | -| `"central"` | | | `"default"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-12-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-12-then.md index a894effa..cd891417 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-12-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-12-then.md @@ -6,8 +6,6 @@ all of * [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-12-then-allof-0.md "check type definition") -* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-12-then-allof-1.md "check type definition") - # then Properties | Property | Type | Required | Nullable | Defined by | @@ -39,12 +37,11 @@ unknown | Value | Explanation | | :---------- | :---------- | -| `"central"` | | | `"default"` | | ## name -SAP Audit Log Management service: SAP Audit Log Management service helps to retrieve logs and change retention. +DEPRECATED Audit Log Retrieval: DEPRECATED Retrieve the audit logs. `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-13-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-13-if-properties-name.md index 778f59b2..a999401f 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-13-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-13-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"autoscaler" +"auditlog-management" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-13-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-13-if.md index 258ab9c7..b70348cf 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-13-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-13-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"autoscaler" +"auditlog-management" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-13-then-allof-0-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-13-then-allof-0-if-properties-plan.md index 126392b1..0c12663e 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-13-then-allof-0-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-13-then-allof-0-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"standard" +"central" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-13-then-allof-0-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-13-then-allof-0-if.md index 40527143..2965625b 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-13-then-allof-0-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-13-then-allof-0-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"standard" +"central" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-13-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-13-then-allof-0-then.md index 392fd191..4b7fd866 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-13-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-13-then-allof-0-then.md @@ -10,27 +10,9 @@ unknown ## plan -service plan >standard< for >autoscaler< is available in data centers: - -* {'region': 'ap10', 'name': 'Australia (Sydney)'} -* {'region': 'ap11', 'name': 'Singapore'} -* {'region': 'ap12', 'name': 'South Korea (Seoul)'} -* {'region': 'ap20', 'name': 'Australia (Sydney) Azure'} -* {'region': 'ap21', 'name': 'Singapore'} -* {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} -* {'region': 'ca10', 'name': 'Canada (Montreal)'} -* {'region': 'ch20', 'name': 'cf-ch20'} +service plan >central< for >auditlog-management< is available in data centers: + * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} -* {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} -* {'region': 'eu20', 'name': 'Europe (Netherlands)'} -* {'region': 'eu30', 'name': 'Europe (Frankfurt)'} -* {'region': 'in30', 'name': 'India (Mumbai)'} -* {'region': 'jp10', 'name': 'Japan (Tokyo)'} -* {'region': 'jp20', 'name': 'Japan (Tokyo)'} -* {'region': 'us10', 'name': 'US East (VA)'} -* {'region': 'us20', 'name': 'US West (WA)'} -* {'region': 'us21', 'name': 'US East (VA)'} -* {'region': 'us30', 'name': 'US Central (IA)'} `plan` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-12-then-allof-1-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-13-then-allof-1-if-properties-plan.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-12-then-allof-1-if-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-13-then-allof-1-if-properties-plan.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-16-then-allof-1-if-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-13-then-allof-1-if-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-16-then-allof-1-if-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-13-then-allof-1-if-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-12-then-allof-1-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-13-then-allof-1-if.md similarity index 83% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-12-then-allof-1-if.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-13-then-allof-1-if.md index 20c6278a..8a90525d 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-12-then-allof-1-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-13-then-allof-1-if.md @@ -6,7 +6,7 @@ unknown | Property | Type | Required | Nullable | Defined by | | :------------ | :------------ | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-12-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/12/then/allOf/1/if/properties/plan") | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-13-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/13/then/allOf/1/if/properties/plan") | ## plan @@ -20,7 +20,7 @@ unknown * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-12-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/12/then/allOf/1/if/properties/plan") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-13-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/13/then/allOf/1/if/properties/plan") ### plan Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-14-then-allof-1-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-13-then-allof-1-then-properties-plan.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-14-then-allof-1-then-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-13-then-allof-1-then-properties-plan.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-16-then-allof-1-then-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-13-then-allof-1-then-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-16-then-allof-1-then-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-13-then-allof-1-then-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-12-then-allof-1-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-13-then-allof-1-then.md similarity index 89% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-12-then-allof-1-then.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-13-then-allof-1-then.md index 3d1579e3..56d02837 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-12-then-allof-1-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-13-then-allof-1-then.md @@ -6,7 +6,7 @@ unknown | Property | Type | Required | Nullable | Defined by | | :------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-12-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/12/then/allOf/1/then/properties/plan") | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-13-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/13/then/allOf/1/then/properties/plan") | ## plan @@ -40,7 +40,7 @@ service plan >default< for >auditlog-management< is available in data centers: * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-12-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/12/then/allOf/1/then/properties/plan") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-13-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/13/then/allOf/1/then/properties/plan") ### plan Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-12-then-allof-1.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-13-then-allof-1.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-12-then-allof-1.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-13-then-allof-1.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-13-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-13-then-properties-plan.md index 248cb3df..c20e121e 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-13-then-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-13-then-properties-plan.md @@ -6,6 +6,7 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :----------- | :---------- | -| `"standard"` | | +| Value | Explanation | +| :---------- | :---------- | +| `"central"` | | +| `"default"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-13-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-13-then.md index addacd8a..d223241b 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-13-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-13-then.md @@ -6,6 +6,8 @@ all of * [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-13-then-allof-0.md "check type definition") +* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-13-then-allof-1.md "check type definition") + # then Properties | Property | Type | Required | Nullable | Defined by | @@ -35,13 +37,14 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :----------- | :---------- | -| `"standard"` | | +| Value | Explanation | +| :---------- | :---------- | +| `"central"` | | +| `"default"` | | ## name -Application Autoscaler: The Application Autoscaler lets you automatically increase or decrease the number of application instances based on a policy you define. +SAP Audit Log Management service: SAP Audit Log Management service helps to retrieve logs and change retention. `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-14-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-14-if-properties-name.md index 9db92f0f..778f59b2 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-14-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-14-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"build-workzone-advanced" +"autoscaler" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-14-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-14-if.md index e006e7cd..3ef3f81a 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-14-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-14-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"build-workzone-advanced" +"autoscaler" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-14-then-allof-0-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-14-then-allof-0-if-properties-plan.md index 9a7498b5..126392b1 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-14-then-allof-0-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-14-then-allof-0-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"advanced" +"standard" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-14-then-allof-0-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-14-then-allof-0-if.md index 061e80ac..b2d67b62 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-14-then-allof-0-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-14-then-allof-0-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"advanced" +"standard" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-14-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-14-then-allof-0-then.md index a29dee02..383a4748 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-14-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-14-then-allof-0-then.md @@ -10,7 +10,7 @@ unknown ## plan -service plan >advanced< for >build-workzone-advanced< is available in data centers: +service plan >standard< for >autoscaler< is available in data centers: * {'region': 'ap10', 'name': 'Australia (Sydney)'} * {'region': 'ap11', 'name': 'Singapore'} @@ -19,6 +19,7 @@ service plan >advanced< for >build-workzone-advanced< is available in data cente * {'region': 'ap21', 'name': 'Singapore'} * {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} * {'region': 'ca10', 'name': 'Canada (Montreal)'} +* {'region': 'ch20', 'name': 'cf-ch20'} * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} * {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} * {'region': 'eu20', 'name': 'Europe (Netherlands)'} diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-14-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-14-then-properties-plan.md index 8bd34093..248cb3df 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-14-then-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-14-then-properties-plan.md @@ -8,5 +8,4 @@ unknown | Value | Explanation | | :----------- | :---------- | -| `"advanced"` | | | `"standard"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-14-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-14-then.md index 352564e5..46d924a3 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-14-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-14-then.md @@ -6,8 +6,6 @@ all of * [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-14-then-allof-0.md "check type definition") -* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-14-then-allof-1.md "check type definition") - # then Properties | Property | Type | Required | Nullable | Defined by | @@ -39,12 +37,11 @@ unknown | Value | Explanation | | :----------- | :---------- | -| `"advanced"` | | | `"standard"` | | ## name -SAP Build Work Zone, advanced edition: SAP Build Work Zone, advanced edition lets you build digital workplace solutions to increase user productivity and engagement. It centralizes access to relevant business applications, processes, information, and communication in a unified entry point that your users can access from any device. Note: SAP Work Zone was recently renamed to SAP Build Work Zone, advanced edition. +Application Autoscaler: The Application Autoscaler lets you automatically increase or decrease the number of application instances based on a policy you define. `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-15-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-15-if-properties-name.md index 402c0793..9db92f0f 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-15-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-15-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"build-workzone-standard" +"build-workzone-advanced" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-15-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-15-if.md index 8af91eb2..cfeb4f9c 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-15-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-15-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"build-workzone-standard" +"build-workzone-advanced" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-15-then-allof-0-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-15-then-allof-0-if-properties-plan.md index 126392b1..9a7498b5 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-15-then-allof-0-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-15-then-allof-0-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"standard" +"advanced" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-15-then-allof-0-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-15-then-allof-0-if.md index ee7b91a2..cfb1d3e3 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-15-then-allof-0-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-15-then-allof-0-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"standard" +"advanced" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-15-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-15-then-allof-0-then.md index 94822e34..21d9729d 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-15-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-15-then-allof-0-then.md @@ -10,7 +10,7 @@ unknown ## plan -service plan >standard< for >build-workzone-standard< is available in data centers: +service plan >advanced< for >build-workzone-advanced< is available in data centers: * {'region': 'ap10', 'name': 'Australia (Sydney)'} * {'region': 'ap11', 'name': 'Singapore'} diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-14-then-allof-1-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-15-then-allof-1-if-properties-plan.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-14-then-allof-1-if-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-15-then-allof-1-if-properties-plan.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-20-then-allof-1-if-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-15-then-allof-1-if-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-20-then-allof-1-if-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-15-then-allof-1-if-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-24-then-allof-1-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-15-then-allof-1-if.md similarity index 83% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-24-then-allof-1-if.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-15-then-allof-1-if.md index 1b5f594c..6f8a6750 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-24-then-allof-1-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-15-then-allof-1-if.md @@ -6,7 +6,7 @@ unknown | Property | Type | Required | Nullable | Defined by | | :------------ | :------------ | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-24-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/24/then/allOf/1/if/properties/plan") | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-15-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/15/then/allOf/1/if/properties/plan") | ## plan @@ -20,7 +20,7 @@ unknown * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-24-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/24/then/allOf/1/if/properties/plan") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-15-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/15/then/allOf/1/if/properties/plan") ### plan Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-16-then-allof-1-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-15-then-allof-1-then-properties-plan.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-16-then-allof-1-then-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-15-then-allof-1-then-properties-plan.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-20-then-allof-1-then-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-15-then-allof-1-then-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-20-then-allof-1-then-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-15-then-allof-1-then-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-14-then-allof-1-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-15-then-allof-1-then.md similarity index 89% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-14-then-allof-1-then.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-15-then-allof-1-then.md index 72428649..ccb809e8 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-14-then-allof-1-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-15-then-allof-1-then.md @@ -6,7 +6,7 @@ unknown | Property | Type | Required | Nullable | Defined by | | :------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-14-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/14/then/allOf/1/then/properties/plan") | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-15-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/15/then/allOf/1/then/properties/plan") | ## plan @@ -39,7 +39,7 @@ service plan >standard< for >build-workzone-advanced< is available in data cente * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-14-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/14/then/allOf/1/then/properties/plan") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-15-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/15/then/allOf/1/then/properties/plan") ### plan Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-14-then-allof-1.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-15-then-allof-1.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-14-then-allof-1.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-15-then-allof-1.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-15-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-15-then-properties-plan.md index 248cb3df..8bd34093 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-15-then-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-15-then-properties-plan.md @@ -8,4 +8,5 @@ unknown | Value | Explanation | | :----------- | :---------- | +| `"advanced"` | | | `"standard"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-15-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-15-then.md index 6c0d12fc..246209a8 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-15-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-15-then.md @@ -6,6 +6,8 @@ all of * [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-15-then-allof-0.md "check type definition") +* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-15-then-allof-1.md "check type definition") + # then Properties | Property | Type | Required | Nullable | Defined by | @@ -37,11 +39,12 @@ unknown | Value | Explanation | | :----------- | :---------- | +| `"advanced"` | | | `"standard"` | | ## name -SAP Build Work Zone, standard edition: Provides users with a central point of access to applications from different sources. Note: SAP Launchpad service was recently renamed to SAP Build Work Zone, standard edition. +SAP Build Work Zone, advanced edition: SAP Build Work Zone, advanced edition lets you build digital workplace solutions to increase user productivity and engagement. It centralizes access to relevant business applications, processes, information, and communication in a unified entry point that your users can access from any device. Note: SAP Work Zone was recently renamed to SAP Build Work Zone, advanced edition. `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-16-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-16-if-properties-name.md index 6c4d294b..402c0793 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-16-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-16-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"business-entity-recognition" +"build-workzone-standard" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-16-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-16-if.md index 030b10c0..61c93984 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-16-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-16-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"business-entity-recognition" +"build-workzone-standard" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-16-then-allof-0-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-16-then-allof-0-if-properties-plan.md index c97f5143..126392b1 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-16-then-allof-0-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-16-then-allof-0-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"free" +"standard" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-16-then-allof-0-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-16-then-allof-0-if.md index 68257311..db8860f6 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-16-then-allof-0-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-16-then-allof-0-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"free" +"standard" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-16-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-16-then-allof-0-then.md index bd36562b..3e8bca48 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-16-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-16-then-allof-0-then.md @@ -10,13 +10,26 @@ unknown ## plan -service plan >free< for >business-entity-recognition< is available in data centers: +service plan >standard< for >build-workzone-standard< is available in data centers: * {'region': 'ap10', 'name': 'Australia (Sydney)'} +* {'region': 'ap11', 'name': 'Singapore'} +* {'region': 'ap12', 'name': 'South Korea (Seoul)'} +* {'region': 'ap20', 'name': 'Australia (Sydney) Azure'} +* {'region': 'ap21', 'name': 'Singapore'} +* {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} +* {'region': 'ca10', 'name': 'Canada (Montreal)'} * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} * {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} +* {'region': 'eu20', 'name': 'Europe (Netherlands)'} +* {'region': 'eu30', 'name': 'Europe (Frankfurt)'} +* {'region': 'in30', 'name': 'India (Mumbai)'} * {'region': 'jp10', 'name': 'Japan (Tokyo)'} +* {'region': 'jp20', 'name': 'Japan (Tokyo)'} * {'region': 'us10', 'name': 'US East (VA)'} +* {'region': 'us20', 'name': 'US West (WA)'} +* {'region': 'us21', 'name': 'US East (VA)'} +* {'region': 'us30', 'name': 'US Central (IA)'} `plan` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-16-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-16-then-properties-plan.md index 49c8bb8c..248cb3df 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-16-then-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-16-then-properties-plan.md @@ -8,5 +8,4 @@ unknown | Value | Explanation | | :----------- | :---------- | -| `"free"` | | | `"standard"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-16-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-16-then.md index 86db0b93..cd37726d 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-16-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-16-then.md @@ -6,8 +6,6 @@ all of * [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-16-then-allof-0.md "check type definition") -* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-16-then-allof-1.md "check type definition") - # then Properties | Property | Type | Required | Nullable | Defined by | @@ -39,12 +37,11 @@ unknown | Value | Explanation | | :----------- | :---------- | -| `"free"` | | | `"standard"` | | ## name -Business Entity Recognition: Business Entity Recognition helps you to detect and highlight any given type of named entity in unstructured text into pre-defined categories. You can use Business Entity Recognition, for example, to automatically extract the context from incoming emails with invoice inquiries, automating recurring tasks of answering to status and payment of invoices. +SAP Build Work Zone, standard edition: Provides users with a central point of access to applications from different sources. Note: SAP Launchpad service was recently renamed to SAP Build Work Zone, standard edition. `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-17-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-17-if-properties-name.md index 1cde2593..6c4d294b 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-17-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-17-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"business-rules" +"business-entity-recognition" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-17-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-17-if.md index d776c5f7..7910801f 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-17-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-17-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"business-rules" +"business-entity-recognition" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-17-then-allof-0-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-17-then-allof-0-if-properties-plan.md index 3f0e8bf2..c97f5143 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-17-then-allof-0-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-17-then-allof-0-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"basic" +"free" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-17-then-allof-0-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-17-then-allof-0-if.md index 415f4cee..e9d1dd28 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-17-then-allof-0-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-17-then-allof-0-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"basic" +"free" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-17-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-17-then-allof-0-then.md index 007801ec..734e9359 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-17-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-17-then-allof-0-then.md @@ -10,25 +10,13 @@ unknown ## plan -service plan >basic< for >business-rules< is available in data centers: +service plan >free< for >business-entity-recognition< is available in data centers: * {'region': 'ap10', 'name': 'Australia (Sydney)'} -* {'region': 'ap11', 'name': 'Singapore'} -* {'region': 'ap12', 'name': 'South Korea (Seoul)'} -* {'region': 'ap20', 'name': 'Australia (Sydney) Azure'} -* {'region': 'ap21', 'name': 'Singapore'} -* {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} -* {'region': 'ca10', 'name': 'Canada (Montreal)'} * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} * {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} -* {'region': 'eu20', 'name': 'Europe (Netherlands)'} -* {'region': 'eu30', 'name': 'Europe (Frankfurt)'} * {'region': 'jp10', 'name': 'Japan (Tokyo)'} -* {'region': 'jp20', 'name': 'Japan (Tokyo)'} * {'region': 'us10', 'name': 'US East (VA)'} -* {'region': 'us20', 'name': 'US West (WA)'} -* {'region': 'us21', 'name': 'US East (VA)'} -* {'region': 'us30', 'name': 'US Central (IA)'} `plan` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-17-then-allof-1-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-17-then-allof-1-then.md index 488900cc..28815372 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-17-then-allof-1-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-17-then-allof-1-then.md @@ -10,19 +10,13 @@ unknown ## plan -service plan >standard< for >business-rules< is available in data centers: +service plan >standard< for >business-entity-recognition< is available in data centers: * {'region': 'ap10', 'name': 'Australia (Sydney)'} -* {'region': 'ap11', 'name': 'Singapore'} -* {'region': 'ap21', 'name': 'Singapore'} -* {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} -* {'region': 'eu20', 'name': 'Europe (Netherlands)'} +* {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} * {'region': 'jp10', 'name': 'Japan (Tokyo)'} -* {'region': 'jp20', 'name': 'Japan (Tokyo)'} * {'region': 'us10', 'name': 'US East (VA)'} -* {'region': 'us20', 'name': 'US West (WA)'} -* {'region': 'us21', 'name': 'US East (VA)'} `plan` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-17-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-17-then-properties-plan.md index 72086d70..49c8bb8c 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-17-then-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-17-then-properties-plan.md @@ -8,5 +8,5 @@ unknown | Value | Explanation | | :----------- | :---------- | -| `"basic"` | | +| `"free"` | | | `"standard"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-17-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-17-then.md index 4ef1bbbc..376134b0 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-17-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-17-then.md @@ -39,12 +39,12 @@ unknown | Value | Explanation | | :----------- | :---------- | -| `"basic"` | | +| `"free"` | | | `"standard"` | | ## name -SAP Business Rules Management: The business rules capability within the SAP Workflow Management service translates business-decision logic into natural language that is configurable directly by line-of-business key users or knowledge experts without IT or developer intervention. It provides web-based tools to solution architects and developers, enabling them to model, author, and simulate business rules independent of the backend system. +Business Entity Recognition: Business Entity Recognition helps you to detect and highlight any given type of named entity in unstructured text into pre-defined categories. You can use Business Entity Recognition, for example, to automatically extract the context from incoming emails with invoice inquiries, automating recurring tasks of answering to status and payment of invoices. `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-18-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-18-if-properties-name.md index 3a7c68a9..1cde2593 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-18-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-18-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"cias" +"business-rules" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-18-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-18-if.md index 64113839..f86fa601 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-18-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-18-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"cias" +"business-rules" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-18-then-allof-0-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-18-then-allof-0-if-properties-plan.md index dc37fb9c..3f0e8bf2 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-18-then-allof-0-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-18-then-allof-0-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"oauth2" +"basic" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-18-then-allof-0-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-18-then-allof-0-if.md index ec2f4968..8b39bf37 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-18-then-allof-0-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-18-then-allof-0-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"oauth2" +"basic" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-18-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-18-then-allof-0-then.md index d62af6a6..bbf209ef 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-18-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-18-then-allof-0-then.md @@ -10,14 +10,25 @@ unknown ## plan -service plan >oauth2< for >cias< is available in data centers: +service plan >basic< for >business-rules< is available in data centers: * {'region': 'ap10', 'name': 'Australia (Sydney)'} +* {'region': 'ap11', 'name': 'Singapore'} +* {'region': 'ap12', 'name': 'South Korea (Seoul)'} +* {'region': 'ap20', 'name': 'Australia (Sydney) Azure'} +* {'region': 'ap21', 'name': 'Singapore'} +* {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} +* {'region': 'ca10', 'name': 'Canada (Montreal)'} * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} * {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} * {'region': 'eu20', 'name': 'Europe (Netherlands)'} +* {'region': 'eu30', 'name': 'Europe (Frankfurt)'} * {'region': 'jp10', 'name': 'Japan (Tokyo)'} +* {'region': 'jp20', 'name': 'Japan (Tokyo)'} * {'region': 'us10', 'name': 'US East (VA)'} +* {'region': 'us20', 'name': 'US West (WA)'} +* {'region': 'us21', 'name': 'US East (VA)'} +* {'region': 'us30', 'name': 'US Central (IA)'} `plan` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-16-then-allof-1-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-18-then-allof-1-if-properties-plan.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-16-then-allof-1-if-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-18-then-allof-1-if-properties-plan.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-21-then-allof-2-if-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-18-then-allof-1-if-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-21-then-allof-2-if-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-18-then-allof-1-if-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-16-then-allof-1-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-18-then-allof-1-if.md similarity index 83% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-16-then-allof-1-if.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-18-then-allof-1-if.md index f7706591..7c9d236a 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-16-then-allof-1-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-18-then-allof-1-if.md @@ -6,7 +6,7 @@ unknown | Property | Type | Required | Nullable | Defined by | | :------------ | :------------ | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-16-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/16/then/allOf/1/if/properties/plan") | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-18-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/18/then/allOf/1/if/properties/plan") | ## plan @@ -20,7 +20,7 @@ unknown * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-16-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/16/then/allOf/1/if/properties/plan") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-18-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/18/then/allOf/1/if/properties/plan") ### plan Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-20-then-allof-1-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-18-then-allof-1-then-properties-plan.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-20-then-allof-1-then-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-18-then-allof-1-then-properties-plan.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-21-then-allof-2-then-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-18-then-allof-1-then-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-21-then-allof-2-then-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-18-then-allof-1-then-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-5-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-18-then-allof-1-then.md similarity index 71% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-5-then.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-18-then-allof-1-then.md index 93d33578..b8337d49 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-5-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-18-then-allof-1-then.md @@ -6,20 +6,17 @@ unknown | Property | Type | Required | Nullable | Defined by | | :------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-5-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/5/then/properties/plan") | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-18-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/18/then/allOf/1/then/properties/plan") | ## plan -service plan >hana-free< for >hana-cloud< is available in data centers: +service plan >standard< for >business-rules< is available in data centers: * {'region': 'ap10', 'name': 'Australia (Sydney)'} * {'region': 'ap11', 'name': 'Singapore'} -* {'region': 'ap12', 'name': 'South Korea (Seoul)'} -* {'region': 'ap20', 'name': 'Australia (Sydney) Azure'} * {'region': 'ap21', 'name': 'Singapore'} * {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} -* {'region': 'ca10', 'name': 'Canada (Montreal)'} -* {'region': 'ch20', 'name': 'cf-ch20'} +* {'region': 'eu10', 'name': 'Europe (Frankfurt)'} * {'region': 'eu20', 'name': 'Europe (Netherlands)'} * {'region': 'jp10', 'name': 'Japan (Tokyo)'} * {'region': 'jp20', 'name': 'Japan (Tokyo)'} @@ -35,7 +32,7 @@ service plan >hana-free< for >hana-cloud< is available in data centers: * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-5-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/5/then/properties/plan") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-18-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/18/then/allOf/1/then/properties/plan") ### plan Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-16-then-allof-1.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-18-then-allof-1.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-16-then-allof-1.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-18-then-allof-1.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-18-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-18-then-properties-plan.md index a283feb4..72086d70 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-18-then-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-18-then-properties-plan.md @@ -6,6 +6,7 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :--------- | :---------- | -| `"oauth2"` | | +| Value | Explanation | +| :----------- | :---------- | +| `"basic"` | | +| `"standard"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-18-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-18-then.md index 53606dd3..3c5bd603 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-18-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-18-then.md @@ -6,6 +6,8 @@ all of * [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-18-then-allof-0.md "check type definition") +* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-18-then-allof-1.md "check type definition") + # then Properties | Property | Type | Required | Nullable | Defined by | @@ -35,13 +37,14 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :--------- | :---------- | -| `"oauth2"` | | +| Value | Explanation | +| :----------- | :---------- | +| `"basic"` | | +| `"standard"` | | ## name -Cloud Integration Automation: Cloud Integration Automation service provides you a guided workflow to integrate SAP cloud solutions to On-Premise and other SAP Cloud solutions. The guided workflow contains instructions for manual and automated tasks to enable a simpler and faster integration configuration setup. +SAP Business Rules Management: The business rules capability within the SAP Workflow Management service translates business-decision logic into natural language that is configurable directly by line-of-business key users or knowledge experts without IT or developer intervention. It provides web-based tools to solution architects and developers, enabling them to model, author, and simulate business rules independent of the backend system. `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-19-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-19-if-properties-name.md index ef968ee8..3a7c68a9 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-19-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-19-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"cicd-service" +"cias" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-19-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-19-if.md index c1bdf548..df39bc82 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-19-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-19-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"cicd-service" +"cias" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-19-then-allof-0-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-19-then-allof-0-if-properties-plan.md index 4f94ce99..dc37fb9c 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-19-then-allof-0-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-19-then-allof-0-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"default" +"oauth2" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-19-then-allof-0-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-19-then-allof-0-if.md index 299ca1a4..3cedccff 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-19-then-allof-0-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-19-then-allof-0-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"default" +"oauth2" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-19-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-19-then-allof-0-then.md index 8cb935d8..52d83f86 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-19-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-19-then-allof-0-then.md @@ -10,13 +10,14 @@ unknown ## plan -service plan >default< for >cicd-service< is available in data centers: +service plan >oauth2< for >cias< is available in data centers: +* {'region': 'ap10', 'name': 'Australia (Sydney)'} * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} * {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} +* {'region': 'eu20', 'name': 'Europe (Netherlands)'} * {'region': 'jp10', 'name': 'Japan (Tokyo)'} * {'region': 'us10', 'name': 'US East (VA)'} -* {'region': 'us20', 'name': 'US West (WA)'} `plan` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-19-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-19-then-properties-plan.md index 916e7975..a283feb4 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-19-then-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-19-then-properties-plan.md @@ -6,6 +6,6 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :---------- | :---------- | -| `"default"` | | +| Value | Explanation | +| :--------- | :---------- | +| `"oauth2"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-19-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-19-then.md index a923372b..51095f30 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-19-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-19-then.md @@ -35,13 +35,13 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :---------- | :---------- | -| `"default"` | | +| Value | Explanation | +| :--------- | :---------- | +| `"oauth2"` | | ## name -SAP Continuous Integration and Delivery: SAP Continuous Integration and Delivery lets you configure and run predefined continuous integration and delivery (CI/CD) pipelines that automatically test, build, and deploy your code changes to speed up your development and delivery cycles. +Cloud Integration Automation: Cloud Integration Automation service provides you a guided workflow to integrate SAP cloud solutions to On-Premise and other SAP Cloud solutions. The guided workflow contains instructions for manual and automated tasks to enable a simpler and faster integration configuration setup. `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-20-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-20-if-properties-name.md index 352862c3..ef968ee8 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-20-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-20-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"cis" +"cicd-service" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-20-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-20-if.md index 6b819bbe..88d421d9 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-20-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-20-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"cis" +"cicd-service" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-20-then-allof-0-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-20-then-allof-0-if-properties-plan.md index 0c12663e..4f94ce99 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-20-then-allof-0-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-20-then-allof-0-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"central" +"default" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-20-then-allof-0-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-20-then-allof-0-if.md index 9f2feed8..583537b3 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-20-then-allof-0-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-20-then-allof-0-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"central" +"default" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-20-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-20-then-allof-0-then.md index baa6c13c..7619e60c 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-20-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-20-then-allof-0-then.md @@ -4,34 +4,19 @@ unknown # then Properties -| Property | Type | Required | Nullable | Defined by | -| :------------------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-20-then-allof-0-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/20/then/allOf/0/then/properties/plan") | -| [parameters](#parameters) | `object` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-20-then-allof-0-then-properties-parameters.md "undefined#/properties/services/items/allOf/1/then/allOf/20/then/allOf/0/then/properties/parameters") | +| Property | Type | Required | Nullable | Defined by | +| :------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-20-then-allof-0-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/20/then/allOf/0/then/properties/plan") | ## plan -service plan >central< for >cis< is available in data centers: +service plan >default< for >cicd-service< is available in data centers: -* {'region': 'ap10', 'name': 'Australia (Sydney)'} -* {'region': 'ap11', 'name': 'Singapore'} -* {'region': 'ap12', 'name': 'South Korea (Seoul)'} -* {'region': 'ap20', 'name': 'Australia (Sydney) Azure'} -* {'region': 'ap21', 'name': 'Singapore'} -* {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} -* {'region': 'ca10', 'name': 'Canada (Montreal)'} -* {'region': 'ch20', 'name': 'cf-ch20'} * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} * {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} -* {'region': 'eu20', 'name': 'Europe (Netherlands)'} -* {'region': 'eu30', 'name': 'Europe (Frankfurt)'} -* {'region': 'in30', 'name': 'India (Mumbai)'} * {'region': 'jp10', 'name': 'Japan (Tokyo)'} -* {'region': 'jp20', 'name': 'Japan (Tokyo)'} * {'region': 'us10', 'name': 'US East (VA)'} * {'region': 'us20', 'name': 'US West (WA)'} -* {'region': 'us21', 'name': 'US East (VA)'} -* {'region': 'us30', 'name': 'US Central (IA)'} `plan` @@ -46,21 +31,3 @@ service plan >central< for >cis< is available in data centers: ### plan Type unknown - -## parameters - - - -`parameters` - -* is required - -* Type: `object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-20-then-allof-0-then-properties-parameters.md)) - -* cannot be null - -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-20-then-allof-0-then-properties-parameters.md "undefined#/properties/services/items/allOf/1/then/allOf/20/then/allOf/0/then/properties/parameters") - -### parameters Type - -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-20-then-allof-0-then-properties-parameters.md)) diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-20-then-allof-1-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-20-then-allof-1-then.md deleted file mode 100644 index 56dd1de9..00000000 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-20-then-allof-1-then.md +++ /dev/null @@ -1,66 +0,0 @@ -## then Type - -unknown - -# then Properties - -| Property | Type | Required | Nullable | Defined by | -| :------------------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-20-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/20/then/allOf/1/then/properties/plan") | -| [parameters](#parameters) | `object` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-20-then-allof-1-then-properties-parameters.md "undefined#/properties/services/items/allOf/1/then/allOf/20/then/allOf/1/then/properties/parameters") | - -## plan - -service plan >local< for >cis< is available in data centers: - -* {'region': 'ap10', 'name': 'Australia (Sydney)'} -* {'region': 'ap11', 'name': 'Singapore'} -* {'region': 'ap12', 'name': 'South Korea (Seoul)'} -* {'region': 'ap20', 'name': 'Australia (Sydney) Azure'} -* {'region': 'ap21', 'name': 'Singapore'} -* {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} -* {'region': 'ca10', 'name': 'Canada (Montreal)'} -* {'region': 'ch20', 'name': 'cf-ch20'} -* {'region': 'eu10', 'name': 'Europe (Frankfurt)'} -* {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} -* {'region': 'eu20', 'name': 'Europe (Netherlands)'} -* {'region': 'eu30', 'name': 'Europe (Frankfurt)'} -* {'region': 'in30', 'name': 'India (Mumbai)'} -* {'region': 'jp10', 'name': 'Japan (Tokyo)'} -* {'region': 'jp20', 'name': 'Japan (Tokyo)'} -* {'region': 'us10', 'name': 'US East (VA)'} -* {'region': 'us20', 'name': 'US West (WA)'} -* {'region': 'us21', 'name': 'US East (VA)'} -* {'region': 'us30', 'name': 'US Central (IA)'} - -`plan` - -* is optional - -* Type: unknown - -* cannot be null - -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-20-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/20/then/allOf/1/then/properties/plan") - -### plan Type - -unknown - -## parameters - - - -`parameters` - -* is required - -* Type: `object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-20-then-allof-1-then-properties-parameters.md)) - -* cannot be null - -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-20-then-allof-1-then-properties-parameters.md "undefined#/properties/services/items/allOf/1/then/allOf/20/then/allOf/1/then/properties/parameters") - -### parameters Type - -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-20-then-allof-1-then-properties-parameters.md)) diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-20-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-20-then-properties-plan.md index 35934508..916e7975 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-20-then-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-20-then-properties-plan.md @@ -8,5 +8,4 @@ unknown | Value | Explanation | | :---------- | :---------- | -| `"central"` | | -| `"local"` | | +| `"default"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-20-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-20-then.md index 2b045e14..a27e15ae 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-20-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-20-then.md @@ -6,8 +6,6 @@ all of * [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-20-then-allof-0.md "check type definition") -* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-20-then-allof-1.md "check type definition") - # then Properties | Property | Type | Required | Nullable | Defined by | @@ -39,12 +37,11 @@ unknown | Value | Explanation | | :---------- | :---------- | -| `"central"` | | -| `"local"` | | +| `"default"` | | ## name -SAP Cloud Management service for SAP BTP: Manage the control plane, account model, and product resources in SAP BTP using supported API interfaces provided by the SAP Cloud Management service for SAP BTP. +SAP Continuous Integration and Delivery: SAP Continuous Integration and Delivery lets you configure and run predefined continuous integration and delivery (CI/CD) pipelines that automatically test, build, and deploy your code changes to speed up your development and delivery cycles. `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-21-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-21-if-properties-name.md index d596adda..352862c3 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-21-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-21-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"COMPUTE_UNIT" +"cis" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-21-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-21-if.md index 0e626ab9..4f797cd7 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-21-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-21-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"COMPUTE_UNIT" +"cis" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-21-then-allof-0-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-21-then-allof-0-if-properties-plan.md index f98546f1..0c12663e 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-21-then-allof-0-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-21-then-allof-0-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"PREMIUM" +"central" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-21-then-allof-0-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-21-then-allof-0-if.md index 07af68f6..4e18867c 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-21-then-allof-0-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-21-then-allof-0-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"PREMIUM" +"central" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-20-then-allof-0-then-properties-parameters-properties-authorization-type-_enumdisplayname.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-21-then-allof-0-then-properties-parameters-properties-authorization-type-_enumdisplayname.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-20-then-allof-0-then-properties-parameters-properties-authorization-type-_enumdisplayname.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-21-then-allof-0-then-properties-parameters-properties-authorization-type-_enumdisplayname.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-20-then-allof-0-then-properties-parameters-properties-authorization-type.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-21-then-allof-0-then-properties-parameters-properties-authorization-type.md similarity index 87% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-20-then-allof-0-then-properties-parameters-properties-authorization-type.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-21-then-allof-0-then-properties-parameters-properties-authorization-type.md index 312767b3..e666b31b 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-20-then-allof-0-then-properties-parameters-properties-authorization-type.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-21-then-allof-0-then-properties-parameters-properties-authorization-type.md @@ -1,6 +1,6 @@ ## grantType Type -`string` ([Authorization Type](btpsa-usecase-properties-services-items-allof-1-then-allof-20-then-allof-0-then-properties-parameters-properties-authorization-type.md)) +`string` ([Authorization Type](btpsa-usecase-properties-services-items-allof-1-then-allof-21-then-allof-0-then-properties-parameters-properties-authorization-type.md)) ## grantType Constraints diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-20-then-allof-0-then-properties-parameters.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-21-then-allof-0-then-properties-parameters.md similarity index 85% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-20-then-allof-0-then-properties-parameters.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-21-then-allof-0-then-properties-parameters.md index 104fd6fa..f3852377 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-20-then-allof-0-then-properties-parameters.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-21-then-allof-0-then-properties-parameters.md @@ -1,12 +1,12 @@ ## parameters Type -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-20-then-allof-0-then-properties-parameters.md)) +`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-21-then-allof-0-then-properties-parameters.md)) # parameters Properties | Property | Type | Required | Nullable | Defined by | | :---------------------- | :------- | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [grantType](#granttype) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-20-then-allof-0-then-properties-parameters-properties-authorization-type.md "undefined#/properties/services/items/allOf/1/then/allOf/20/then/allOf/0/then/properties/parameters/properties/grantType") | +| [grantType](#granttype) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-21-then-allof-0-then-properties-parameters-properties-authorization-type.md "undefined#/properties/services/items/allOf/1/then/allOf/21/then/allOf/0/then/properties/parameters/properties/grantType") | | Additional Properties | Any | Optional | can be null | | ## grantType @@ -17,15 +17,15 @@ Use the Password grant type for Cloud Foundry and Kubernetes, or Client Credenti * is optional -* Type: `string` ([Authorization Type](btpsa-usecase-properties-services-items-allof-1-then-allof-20-then-allof-0-then-properties-parameters-properties-authorization-type.md)) +* Type: `string` ([Authorization Type](btpsa-usecase-properties-services-items-allof-1-then-allof-21-then-allof-0-then-properties-parameters-properties-authorization-type.md)) * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-20-then-allof-0-then-properties-parameters-properties-authorization-type.md "undefined#/properties/services/items/allOf/1/then/allOf/20/then/allOf/0/then/properties/parameters/properties/grantType") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-21-then-allof-0-then-properties-parameters-properties-authorization-type.md "undefined#/properties/services/items/allOf/1/then/allOf/21/then/allOf/0/then/properties/parameters/properties/grantType") ### grantType Type -`string` ([Authorization Type](btpsa-usecase-properties-services-items-allof-1-then-allof-20-then-allof-0-then-properties-parameters-properties-authorization-type.md)) +`string` ([Authorization Type](btpsa-usecase-properties-services-items-allof-1-then-allof-21-then-allof-0-then-properties-parameters-properties-authorization-type.md)) ### grantType Constraints diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-21-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-21-then-allof-0-then.md index 8cf52ef1..d84c08c3 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-21-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-21-then-allof-0-then.md @@ -4,28 +4,34 @@ unknown # then Properties -| Property | Type | Required | Nullable | Defined by | -| :------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-21-then-allof-0-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/21/then/allOf/0/then/properties/plan") | +| Property | Type | Required | Nullable | Defined by | +| :------------------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-21-then-allof-0-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/21/then/allOf/0/then/properties/plan") | +| [parameters](#parameters) | `object` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-21-then-allof-0-then-properties-parameters.md "undefined#/properties/services/items/allOf/1/then/allOf/21/then/allOf/0/then/properties/parameters") | ## plan -service plan >PREMIUM< for >COMPUTE\_UNIT< is available in data centers: - -* {'region': 'ae1', 'name': 'UAE (Dubai)'} -* {'region': 'ap1', 'name': 'Australia (Sydney)'} -* {'region': 'br1', 'name': 'Brazil (Sao Paulo)'} -* {'region': 'ca1', 'name': 'Canada (Toronto)'} -* {'region': 'cn1', 'name': 'China (Shanghai)'} -* {'region': 'eu1', 'name': 'Europe (Rot)'} -* {'region': 'eu2', 'name': 'Europe (Frankfurt)'} -* {'region': 'eu3', 'name': 'Europe (Amsterdam)'} -* {'region': 'jp1', 'name': 'Japan (Tokyo)'} -* {'region': 'sa1', 'name': 'KSA (Riyadh)'} -* {'region': 'us1', 'name': 'US East (Ashburn)'} -* {'region': 'us2', 'name': 'US West (Chandler)'} -* {'region': 'us3', 'name': 'US East (Sterling)'} -* {'region': 'us4', 'name': 'US West (Colorado Springs)'} +service plan >central< for >cis< is available in data centers: + +* {'region': 'ap10', 'name': 'Australia (Sydney)'} +* {'region': 'ap11', 'name': 'Singapore'} +* {'region': 'ap12', 'name': 'South Korea (Seoul)'} +* {'region': 'ap20', 'name': 'Australia (Sydney) Azure'} +* {'region': 'ap21', 'name': 'Singapore'} +* {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} +* {'region': 'ca10', 'name': 'Canada (Montreal)'} +* {'region': 'ch20', 'name': 'cf-ch20'} +* {'region': 'eu10', 'name': 'Europe (Frankfurt)'} +* {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} +* {'region': 'eu20', 'name': 'Europe (Netherlands)'} +* {'region': 'eu30', 'name': 'Europe (Frankfurt)'} +* {'region': 'in30', 'name': 'India (Mumbai)'} +* {'region': 'jp10', 'name': 'Japan (Tokyo)'} +* {'region': 'jp20', 'name': 'Japan (Tokyo)'} +* {'region': 'us10', 'name': 'US East (VA)'} +* {'region': 'us20', 'name': 'US West (WA)'} +* {'region': 'us21', 'name': 'US East (VA)'} +* {'region': 'us30', 'name': 'US Central (IA)'} `plan` @@ -40,3 +46,21 @@ service plan >PREMIUM< for >COMPUTE\_UNIT< is available in data centers: ### plan Type unknown + +## parameters + + + +`parameters` + +* is required + +* Type: `object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-21-then-allof-0-then-properties-parameters.md)) + +* cannot be null + +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-21-then-allof-0-then-properties-parameters.md "undefined#/properties/services/items/allOf/1/then/allOf/21/then/allOf/0/then/properties/parameters") + +### parameters Type + +`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-21-then-allof-0-then-properties-parameters.md)) diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-21-then-allof-1-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-21-then-allof-1-if-properties-plan.md index 9ede06c2..72b03500 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-21-then-allof-1-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-21-then-allof-1-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"PREMIUM_PLUS" +"local" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-21-then-allof-1-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-21-then-allof-1-if.md index 218f8620..346f93c1 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-21-then-allof-1-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-21-then-allof-1-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"PREMIUM_PLUS" +"local" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-20-then-allof-1-then-properties-parameters-properties-authorization-type-_enumdisplayname.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-21-then-allof-1-then-properties-parameters-properties-authorization-type-_enumdisplayname.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-20-then-allof-1-then-properties-parameters-properties-authorization-type-_enumdisplayname.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-21-then-allof-1-then-properties-parameters-properties-authorization-type-_enumdisplayname.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-20-then-allof-1-then-properties-parameters-properties-authorization-type.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-21-then-allof-1-then-properties-parameters-properties-authorization-type.md similarity index 87% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-20-then-allof-1-then-properties-parameters-properties-authorization-type.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-21-then-allof-1-then-properties-parameters-properties-authorization-type.md index 5590485d..a596ba75 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-20-then-allof-1-then-properties-parameters-properties-authorization-type.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-21-then-allof-1-then-properties-parameters-properties-authorization-type.md @@ -1,6 +1,6 @@ ## grantType Type -`string` ([Authorization Type](btpsa-usecase-properties-services-items-allof-1-then-allof-20-then-allof-1-then-properties-parameters-properties-authorization-type.md)) +`string` ([Authorization Type](btpsa-usecase-properties-services-items-allof-1-then-allof-21-then-allof-1-then-properties-parameters-properties-authorization-type.md)) ## grantType Constraints diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-20-then-allof-1-then-properties-parameters.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-21-then-allof-1-then-properties-parameters.md similarity index 85% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-20-then-allof-1-then-properties-parameters.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-21-then-allof-1-then-properties-parameters.md index 13691823..c9f0cc0b 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-20-then-allof-1-then-properties-parameters.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-21-then-allof-1-then-properties-parameters.md @@ -1,12 +1,12 @@ ## parameters Type -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-20-then-allof-1-then-properties-parameters.md)) +`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-21-then-allof-1-then-properties-parameters.md)) # parameters Properties | Property | Type | Required | Nullable | Defined by | | :---------------------- | :------- | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [grantType](#granttype) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-20-then-allof-1-then-properties-parameters-properties-authorization-type.md "undefined#/properties/services/items/allOf/1/then/allOf/20/then/allOf/1/then/properties/parameters/properties/grantType") | +| [grantType](#granttype) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-21-then-allof-1-then-properties-parameters-properties-authorization-type.md "undefined#/properties/services/items/allOf/1/then/allOf/21/then/allOf/1/then/properties/parameters/properties/grantType") | | Additional Properties | Any | Optional | can be null | | ## grantType @@ -17,15 +17,15 @@ Use the Password grant type for Cloud Foundry and Kubernetes, or Client Credenti * is optional -* Type: `string` ([Authorization Type](btpsa-usecase-properties-services-items-allof-1-then-allof-20-then-allof-1-then-properties-parameters-properties-authorization-type.md)) +* Type: `string` ([Authorization Type](btpsa-usecase-properties-services-items-allof-1-then-allof-21-then-allof-1-then-properties-parameters-properties-authorization-type.md)) * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-20-then-allof-1-then-properties-parameters-properties-authorization-type.md "undefined#/properties/services/items/allOf/1/then/allOf/20/then/allOf/1/then/properties/parameters/properties/grantType") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-21-then-allof-1-then-properties-parameters-properties-authorization-type.md "undefined#/properties/services/items/allOf/1/then/allOf/21/then/allOf/1/then/properties/parameters/properties/grantType") ### grantType Type -`string` ([Authorization Type](btpsa-usecase-properties-services-items-allof-1-then-allof-20-then-allof-1-then-properties-parameters-properties-authorization-type.md)) +`string` ([Authorization Type](btpsa-usecase-properties-services-items-allof-1-then-allof-21-then-allof-1-then-properties-parameters-properties-authorization-type.md)) ### grantType Constraints diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-21-then-allof-1-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-21-then-allof-1-then.md index 7f4ed66a..9458de9d 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-21-then-allof-1-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-21-then-allof-1-then.md @@ -4,28 +4,34 @@ unknown # then Properties -| Property | Type | Required | Nullable | Defined by | -| :------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-21-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/21/then/allOf/1/then/properties/plan") | +| Property | Type | Required | Nullable | Defined by | +| :------------------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-21-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/21/then/allOf/1/then/properties/plan") | +| [parameters](#parameters) | `object` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-21-then-allof-1-then-properties-parameters.md "undefined#/properties/services/items/allOf/1/then/allOf/21/then/allOf/1/then/properties/parameters") | ## plan -service plan >PREMIUM\_PLUS< for >COMPUTE\_UNIT< is available in data centers: - -* {'region': 'ae1', 'name': 'UAE (Dubai)'} -* {'region': 'ap1', 'name': 'Australia (Sydney)'} -* {'region': 'br1', 'name': 'Brazil (Sao Paulo)'} -* {'region': 'ca1', 'name': 'Canada (Toronto)'} -* {'region': 'cn1', 'name': 'China (Shanghai)'} -* {'region': 'eu1', 'name': 'Europe (Rot)'} -* {'region': 'eu2', 'name': 'Europe (Frankfurt)'} -* {'region': 'eu3', 'name': 'Europe (Amsterdam)'} -* {'region': 'jp1', 'name': 'Japan (Tokyo)'} -* {'region': 'sa1', 'name': 'KSA (Riyadh)'} -* {'region': 'us1', 'name': 'US East (Ashburn)'} -* {'region': 'us2', 'name': 'US West (Chandler)'} -* {'region': 'us3', 'name': 'US East (Sterling)'} -* {'region': 'us4', 'name': 'US West (Colorado Springs)'} +service plan >local< for >cis< is available in data centers: + +* {'region': 'ap10', 'name': 'Australia (Sydney)'} +* {'region': 'ap11', 'name': 'Singapore'} +* {'region': 'ap12', 'name': 'South Korea (Seoul)'} +* {'region': 'ap20', 'name': 'Australia (Sydney) Azure'} +* {'region': 'ap21', 'name': 'Singapore'} +* {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} +* {'region': 'ca10', 'name': 'Canada (Montreal)'} +* {'region': 'ch20', 'name': 'cf-ch20'} +* {'region': 'eu10', 'name': 'Europe (Frankfurt)'} +* {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} +* {'region': 'eu20', 'name': 'Europe (Netherlands)'} +* {'region': 'eu30', 'name': 'Europe (Frankfurt)'} +* {'region': 'in30', 'name': 'India (Mumbai)'} +* {'region': 'jp10', 'name': 'Japan (Tokyo)'} +* {'region': 'jp20', 'name': 'Japan (Tokyo)'} +* {'region': 'us10', 'name': 'US East (VA)'} +* {'region': 'us20', 'name': 'US West (WA)'} +* {'region': 'us21', 'name': 'US East (VA)'} +* {'region': 'us30', 'name': 'US Central (IA)'} `plan` @@ -40,3 +46,21 @@ service plan >PREMIUM\_PLUS< for >COMPUTE\_UNIT< is available in data centers: ### plan Type unknown + +## parameters + + + +`parameters` + +* is required + +* Type: `object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-21-then-allof-1-then-properties-parameters.md)) + +* cannot be null + +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-21-then-allof-1-then-properties-parameters.md "undefined#/properties/services/items/allOf/1/then/allOf/21/then/allOf/1/then/properties/parameters") + +### parameters Type + +`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-21-then-allof-1-then-properties-parameters.md)) diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-21-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-21-then-properties-plan.md index 8c7d807a..35934508 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-21-then-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-21-then-properties-plan.md @@ -6,8 +6,7 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :--------------- | :---------- | -| `"PREMIUM"` | | -| `"PREMIUM_PLUS"` | | -| `"PRO"` | | +| Value | Explanation | +| :---------- | :---------- | +| `"central"` | | +| `"local"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-21-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-21-then.md index 6a143d0f..825092ff 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-21-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-21-then.md @@ -8,8 +8,6 @@ all of * [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-21-then-allof-1.md "check type definition") -* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-21-then-allof-2.md "check type definition") - # then Properties | Property | Type | Required | Nullable | Defined by | @@ -39,15 +37,14 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :--------------- | :---------- | -| `"PREMIUM"` | | -| `"PREMIUM_PLUS"` | | -| `"PRO"` | | +| Value | Explanation | +| :---------- | :---------- | +| `"central"` | | +| `"local"` | | ## name -SAP BTP, Java server: Java Quota +SAP Cloud Management service for SAP BTP: Manage the control plane, account model, and product resources in SAP BTP using supported API interfaces provided by the SAP Cloud Management service for SAP BTP. `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-22-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-22-if-properties-name.md index a3a4de1a..d596adda 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-22-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-22-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"connectivity" +"COMPUTE_UNIT" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-22-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-22-if.md index 35e93a2a..018fcd2f 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-22-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-22-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"connectivity" +"COMPUTE_UNIT" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-22-then-allof-0-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-22-then-allof-0-if-properties-plan.md index fdc599ee..f98546f1 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-22-then-allof-0-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-22-then-allof-0-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"connectivity_proxy" +"PREMIUM" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-22-then-allof-0-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-22-then-allof-0-if.md index d26c54db..41ddd922 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-22-then-allof-0-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-22-then-allof-0-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"connectivity_proxy" +"PREMIUM" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-22-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-22-then-allof-0-then.md index fcc3e8a9..f7c5a1c1 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-22-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-22-then-allof-0-then.md @@ -10,27 +10,22 @@ unknown ## plan -service plan >connectivity\_proxy< for >connectivity< is available in data centers: - -* {'region': 'ap10', 'name': 'Australia (Sydney)'} -* {'region': 'ap11', 'name': 'Singapore'} -* {'region': 'ap12', 'name': 'South Korea (Seoul)'} -* {'region': 'ap20', 'name': 'Australia (Sydney) Azure'} -* {'region': 'ap21', 'name': 'Singapore'} -* {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} -* {'region': 'ca10', 'name': 'Canada (Montreal)'} -* {'region': 'ch20', 'name': 'cf-ch20'} -* {'region': 'eu10', 'name': 'Europe (Frankfurt)'} -* {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} -* {'region': 'eu20', 'name': 'Europe (Netherlands)'} -* {'region': 'eu30', 'name': 'Europe (Frankfurt)'} -* {'region': 'in30', 'name': 'India (Mumbai)'} -* {'region': 'jp10', 'name': 'Japan (Tokyo)'} -* {'region': 'jp20', 'name': 'Japan (Tokyo)'} -* {'region': 'us10', 'name': 'US East (VA)'} -* {'region': 'us20', 'name': 'US West (WA)'} -* {'region': 'us21', 'name': 'US East (VA)'} -* {'region': 'us30', 'name': 'US Central (IA)'} +service plan >PREMIUM< for >COMPUTE\_UNIT< is available in data centers: + +* {'region': 'ae1', 'name': 'UAE (Dubai)'} +* {'region': 'ap1', 'name': 'Australia (Sydney)'} +* {'region': 'br1', 'name': 'Brazil (Sao Paulo)'} +* {'region': 'ca1', 'name': 'Canada (Toronto)'} +* {'region': 'cn1', 'name': 'China (Shanghai)'} +* {'region': 'eu1', 'name': 'Europe (Rot)'} +* {'region': 'eu2', 'name': 'Europe (Frankfurt)'} +* {'region': 'eu3', 'name': 'Europe (Amsterdam)'} +* {'region': 'jp1', 'name': 'Japan (Tokyo)'} +* {'region': 'sa1', 'name': 'KSA (Riyadh)'} +* {'region': 'us1', 'name': 'US East (Ashburn)'} +* {'region': 'us2', 'name': 'US West (Chandler)'} +* {'region': 'us3', 'name': 'US East (Sterling)'} +* {'region': 'us4', 'name': 'US West (Colorado Springs)'} `plan` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-22-then-allof-1-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-22-then-allof-1-if-properties-plan.md index f74c2390..9ede06c2 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-22-then-allof-1-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-22-then-allof-1-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"lite" +"PREMIUM_PLUS" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-22-then-allof-1-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-22-then-allof-1-if.md index 24ac3df7..df7ebfb8 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-22-then-allof-1-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-22-then-allof-1-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"lite" +"PREMIUM_PLUS" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-22-then-allof-1-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-22-then-allof-1-then.md index e6244a9e..a10537cb 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-22-then-allof-1-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-22-then-allof-1-then.md @@ -10,27 +10,22 @@ unknown ## plan -service plan >lite< for >connectivity< is available in data centers: - -* {'region': 'ap10', 'name': 'Australia (Sydney)'} -* {'region': 'ap11', 'name': 'Singapore'} -* {'region': 'ap12', 'name': 'South Korea (Seoul)'} -* {'region': 'ap20', 'name': 'Australia (Sydney) Azure'} -* {'region': 'ap21', 'name': 'Singapore'} -* {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} -* {'region': 'ca10', 'name': 'Canada (Montreal)'} -* {'region': 'ch20', 'name': 'cf-ch20'} -* {'region': 'eu10', 'name': 'Europe (Frankfurt)'} -* {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} -* {'region': 'eu20', 'name': 'Europe (Netherlands)'} -* {'region': 'eu30', 'name': 'Europe (Frankfurt)'} -* {'region': 'in30', 'name': 'India (Mumbai)'} -* {'region': 'jp10', 'name': 'Japan (Tokyo)'} -* {'region': 'jp20', 'name': 'Japan (Tokyo)'} -* {'region': 'us10', 'name': 'US East (VA)'} -* {'region': 'us20', 'name': 'US West (WA)'} -* {'region': 'us21', 'name': 'US East (VA)'} -* {'region': 'us30', 'name': 'US Central (IA)'} +service plan >PREMIUM\_PLUS< for >COMPUTE\_UNIT< is available in data centers: + +* {'region': 'ae1', 'name': 'UAE (Dubai)'} +* {'region': 'ap1', 'name': 'Australia (Sydney)'} +* {'region': 'br1', 'name': 'Brazil (Sao Paulo)'} +* {'region': 'ca1', 'name': 'Canada (Toronto)'} +* {'region': 'cn1', 'name': 'China (Shanghai)'} +* {'region': 'eu1', 'name': 'Europe (Rot)'} +* {'region': 'eu2', 'name': 'Europe (Frankfurt)'} +* {'region': 'eu3', 'name': 'Europe (Amsterdam)'} +* {'region': 'jp1', 'name': 'Japan (Tokyo)'} +* {'region': 'sa1', 'name': 'KSA (Riyadh)'} +* {'region': 'us1', 'name': 'US East (Ashburn)'} +* {'region': 'us2', 'name': 'US West (Chandler)'} +* {'region': 'us3', 'name': 'US East (Sterling)'} +* {'region': 'us4', 'name': 'US West (Colorado Springs)'} `plan` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-21-then-allof-2-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-22-then-allof-2-if-properties-plan.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-21-then-allof-2-if-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-22-then-allof-2-if-properties-plan.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-24-then-allof-1-if-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-22-then-allof-2-if-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-24-then-allof-1-if-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-22-then-allof-2-if-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-21-then-allof-2-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-22-then-allof-2-if.md similarity index 83% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-21-then-allof-2-if.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-22-then-allof-2-if.md index 4bd054a9..688428b1 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-21-then-allof-2-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-22-then-allof-2-if.md @@ -6,7 +6,7 @@ unknown | Property | Type | Required | Nullable | Defined by | | :------------ | :------------ | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-21-then-allof-2-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/21/then/allOf/2/if/properties/plan") | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-22-then-allof-2-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/22/then/allOf/2/if/properties/plan") | ## plan @@ -20,7 +20,7 @@ unknown * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-21-then-allof-2-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/21/then/allOf/2/if/properties/plan") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-22-then-allof-2-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/22/then/allOf/2/if/properties/plan") ### plan Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-21-then-allof-2-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-22-then-allof-2-then-properties-plan.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-21-then-allof-2-then-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-22-then-allof-2-then-properties-plan.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-24-then-allof-1-then-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-22-then-allof-2-then-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-24-then-allof-1-then-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-22-then-allof-2-then-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-21-then-allof-2-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-22-then-allof-2-then.md similarity index 88% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-21-then-allof-2-then.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-22-then-allof-2-then.md index 353c99e1..504e9264 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-21-then-allof-2-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-22-then-allof-2-then.md @@ -6,7 +6,7 @@ unknown | Property | Type | Required | Nullable | Defined by | | :------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-21-then-allof-2-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/21/then/allOf/2/then/properties/plan") | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-22-then-allof-2-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/22/then/allOf/2/then/properties/plan") | ## plan @@ -35,7 +35,7 @@ service plan >PRO< for >COMPUTE\_UNIT< is available in data centers: * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-21-then-allof-2-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/21/then/allOf/2/then/properties/plan") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-22-then-allof-2-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/22/then/allOf/2/then/properties/plan") ### plan Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-21-then-allof-2.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-22-then-allof-2.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-21-then-allof-2.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-22-then-allof-2.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-22-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-22-then-properties-plan.md index b4e763ad..8c7d807a 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-22-then-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-22-then-properties-plan.md @@ -6,7 +6,8 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :--------------------- | :---------- | -| `"connectivity_proxy"` | | -| `"lite"` | | +| Value | Explanation | +| :--------------- | :---------- | +| `"PREMIUM"` | | +| `"PREMIUM_PLUS"` | | +| `"PRO"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-22-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-22-then.md index ee296e0d..b1b80016 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-22-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-22-then.md @@ -8,6 +8,8 @@ all of * [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-22-then-allof-1.md "check type definition") +* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-22-then-allof-2.md "check type definition") + # then Properties | Property | Type | Required | Nullable | Defined by | @@ -37,14 +39,15 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :--------------------- | :---------- | -| `"connectivity_proxy"` | | -| `"lite"` | | +| Value | Explanation | +| :--------------- | :---------- | +| `"PREMIUM"` | | +| `"PREMIUM_PLUS"` | | +| `"PRO"` | | ## name -SAP Connectivity service: SAP BTP Connectivity service allows you to establish secure and reliable connectivity between your cloud applications and on-premise systems running in isolated networks. +SAP BTP, Java server: Java Quota `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-23-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-23-if-properties-name.md index 268bdf6d..a3a4de1a 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-23-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-23-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"connectivity-central" +"connectivity" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-23-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-23-if.md index 894c10c7..afd89ce0 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-23-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-23-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"connectivity-central" +"connectivity" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-23-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-23-then-allof-0-then.md index f1f9190e..3064780b 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-23-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-23-then-allof-0-then.md @@ -10,11 +10,27 @@ unknown ## plan -service plan >connectivity\_proxy< for >connectivity-central< is available in data centers: - +service plan >connectivity\_proxy< for >connectivity< is available in data centers: + +* {'region': 'ap10', 'name': 'Australia (Sydney)'} +* {'region': 'ap11', 'name': 'Singapore'} +* {'region': 'ap12', 'name': 'South Korea (Seoul)'} +* {'region': 'ap20', 'name': 'Australia (Sydney) Azure'} +* {'region': 'ap21', 'name': 'Singapore'} +* {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} +* {'region': 'ca10', 'name': 'Canada (Montreal)'} +* {'region': 'ch20', 'name': 'cf-ch20'} * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} +* {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} * {'region': 'eu20', 'name': 'Europe (Netherlands)'} +* {'region': 'eu30', 'name': 'Europe (Frankfurt)'} +* {'region': 'in30', 'name': 'India (Mumbai)'} +* {'region': 'jp10', 'name': 'Japan (Tokyo)'} +* {'region': 'jp20', 'name': 'Japan (Tokyo)'} * {'region': 'us10', 'name': 'US East (VA)'} +* {'region': 'us20', 'name': 'US West (WA)'} +* {'region': 'us21', 'name': 'US East (VA)'} +* {'region': 'us30', 'name': 'US Central (IA)'} `plan` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-30-then-allof-1-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-23-then-allof-1-if-properties-plan.md similarity index 94% rename from docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-30-then-allof-1-if-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-23-then-allof-1-if-properties-plan.md index 57a1f571..f74c2390 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-30-then-allof-1-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-23-then-allof-1-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"mrtr" +"lite" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-26-then-allof-1-if-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-23-then-allof-1-if-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-26-then-allof-1-if-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-23-then-allof-1-if-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-26-then-allof-1-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-23-then-allof-1-if.md similarity index 82% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-26-then-allof-1-if.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-23-then-allof-1-if.md index 699585c0..44868e3a 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-26-then-allof-1-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-23-then-allof-1-if.md @@ -6,7 +6,7 @@ unknown | Property | Type | Required | Nullable | Defined by | | :------------ | :------------ | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-26-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/26/then/allOf/1/if/properties/plan") | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-23-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/23/then/allOf/1/if/properties/plan") | ## plan @@ -20,7 +20,7 @@ unknown * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-26-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/26/then/allOf/1/if/properties/plan") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-23-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/23/then/allOf/1/if/properties/plan") ### plan Type @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"proxy" +"lite" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-24-then-allof-1-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-23-then-allof-1-then-properties-plan.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-24-then-allof-1-then-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-23-then-allof-1-then-properties-plan.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-26-then-allof-1-then-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-23-then-allof-1-then-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-26-then-allof-1-then-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-23-then-allof-1-then-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-83-then-allof-1-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-23-then-allof-1-then.md similarity index 87% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-83-then-allof-1-then.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-23-then-allof-1-then.md index 772728eb..5d3781c2 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-83-then-allof-1-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-23-then-allof-1-then.md @@ -6,11 +6,11 @@ unknown | Property | Type | Required | Nullable | Defined by | | :------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-83-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/83/then/allOf/1/then/properties/plan") | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-23-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/23/then/allOf/1/then/properties/plan") | ## plan -service plan >medium< for >postgresql< is available in data centers: +service plan >lite< for >connectivity< is available in data centers: * {'region': 'ap10', 'name': 'Australia (Sydney)'} * {'region': 'ap11', 'name': 'Singapore'} @@ -40,7 +40,7 @@ service plan >medium< for >postgresql< is available in data centers: * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-83-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/83/then/allOf/1/then/properties/plan") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-23-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/23/then/allOf/1/then/properties/plan") ### plan Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-20-then-allof-1.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-23-then-allof-1.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-20-then-allof-1.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-23-then-allof-1.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-23-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-23-then-properties-plan.md index 7df42267..b4e763ad 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-23-then-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-23-then-properties-plan.md @@ -9,3 +9,4 @@ unknown | Value | Explanation | | :--------------------- | :---------- | | `"connectivity_proxy"` | | +| `"lite"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-23-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-23-then.md index d692ab4f..7cda7644 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-23-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-23-then.md @@ -6,6 +6,8 @@ all of * [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-23-then-allof-0.md "check type definition") +* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-23-then-allof-1.md "check type definition") + # then Properties | Property | Type | Required | Nullable | Defined by | @@ -38,10 +40,11 @@ unknown | Value | Explanation | | :--------------------- | :---------- | | `"connectivity_proxy"` | | +| `"lite"` | | ## name -Connectivity (for scale-out build-out): Pair Connectivity Proxy with SAP CP Connectivity service +SAP Connectivity service: SAP BTP Connectivity service allows you to establish secure and reliable connectivity between your cloud applications and on-premise systems running in isolated networks. `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-24-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-24-if-properties-name.md index 7353f2af..268bdf6d 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-24-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-24-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"content-agent" +"connectivity-central" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-24-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-24-if.md index 300ea2ca..f46b55af 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-24-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-24-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"content-agent" +"connectivity-central" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-24-then-allof-0-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-24-then-allof-0-if-properties-plan.md index 9ae791c7..fdc599ee 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-24-then-allof-0-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-24-then-allof-0-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"application" +"connectivity_proxy" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-24-then-allof-0-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-24-then-allof-0-if.md index da93f926..0119578f 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-24-then-allof-0-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-24-then-allof-0-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"application" +"connectivity_proxy" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-24-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-24-then-allof-0-then.md index 38e3f9d0..b2502be3 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-24-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-24-then-allof-0-then.md @@ -4,34 +4,17 @@ unknown # then Properties -| Property | Type | Required | Nullable | Defined by | -| :------------------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-24-then-allof-0-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/24/then/allOf/0/then/properties/plan") | -| [parameters](#parameters) | `object` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-24-then-allof-0-then-properties-parameters.md "undefined#/properties/services/items/allOf/1/then/allOf/24/then/allOf/0/then/properties/parameters") | +| Property | Type | Required | Nullable | Defined by | +| :------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-24-then-allof-0-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/24/then/allOf/0/then/properties/plan") | ## plan -service plan >application< for >content-agent< is available in data centers: +service plan >connectivity\_proxy< for >connectivity-central< is available in data centers: -* {'region': 'ap10', 'name': 'Australia (Sydney)'} -* {'region': 'ap11', 'name': 'Singapore'} -* {'region': 'ap12', 'name': 'South Korea (Seoul)'} -* {'region': 'ap20', 'name': 'Australia (Sydney) Azure'} -* {'region': 'ap21', 'name': 'Singapore'} -* {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} -* {'region': 'ca10', 'name': 'Canada (Montreal)'} -* {'region': 'ch20', 'name': 'cf-ch20'} * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} -* {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} * {'region': 'eu20', 'name': 'Europe (Netherlands)'} -* {'region': 'eu30', 'name': 'Europe (Frankfurt)'} -* {'region': 'in30', 'name': 'India (Mumbai)'} -* {'region': 'jp10', 'name': 'Japan (Tokyo)'} -* {'region': 'jp20', 'name': 'Japan (Tokyo)'} * {'region': 'us10', 'name': 'US East (VA)'} -* {'region': 'us20', 'name': 'US West (WA)'} -* {'region': 'us21', 'name': 'US East (VA)'} -* {'region': 'us30', 'name': 'US Central (IA)'} `plan` @@ -46,21 +29,3 @@ service plan >application< for >content-agent< is available in data centers: ### plan Type unknown - -## parameters - - - -`parameters` - -* is required - -* Type: `object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-24-then-allof-0-then-properties-parameters.md)) - -* cannot be null - -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-24-then-allof-0-then-properties-parameters.md "undefined#/properties/services/items/allOf/1/then/allOf/24/then/allOf/0/then/properties/parameters") - -### parameters Type - -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-24-then-allof-0-then-properties-parameters.md)) diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-24-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-24-then-properties-plan.md index 2a192f55..7df42267 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-24-then-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-24-then-properties-plan.md @@ -6,7 +6,6 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :-------------- | :---------- | -| `"application"` | | -| `"standard"` | | +| Value | Explanation | +| :--------------------- | :---------- | +| `"connectivity_proxy"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-24-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-24-then.md index be289718..0db19dba 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-24-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-24-then.md @@ -6,8 +6,6 @@ all of * [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-24-then-allof-0.md "check type definition") -* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-24-then-allof-1.md "check type definition") - # then Properties | Property | Type | Required | Nullable | Defined by | @@ -37,14 +35,13 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :-------------- | :---------- | -| `"application"` | | -| `"standard"` | | +| Value | Explanation | +| :--------------------- | :---------- | +| `"connectivity_proxy"` | | ## name -SAP Content Agent service: SAP Content Agent service is a tool for SAP BTP applications offering generic content management operations such as view, export and import content with inter-dependencies and integration with SAP Cloud Transport Management service. It offers a view to track all activities along with logs, status and other information. +Connectivity (for scale-out build-out): Pair Connectivity Proxy with SAP CP Connectivity service `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-25-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-25-if-properties-name.md index 9d86e8ca..7353f2af 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-25-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-25-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"conversational-ai" +"content-agent" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-25-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-25-if.md index 60a7ee6b..159b9796 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-25-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-25-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"conversational-ai" +"content-agent" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-25-then-allof-0-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-25-then-allof-0-if-properties-plan.md index 126392b1..9ae791c7 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-25-then-allof-0-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-25-then-allof-0-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"standard" +"application" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-25-then-allof-0-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-25-then-allof-0-if.md index 783e1126..f0c4b1a6 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-25-then-allof-0-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-25-then-allof-0-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"standard" +"application" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-24-then-allof-0-then-properties-parameters-properties-roles-items.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-25-then-allof-0-then-properties-parameters-properties-roles-items.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-24-then-allof-0-then-properties-parameters-properties-roles-items.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-25-then-allof-0-then-properties-parameters-properties-roles-items.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-24-then-allof-0-then-properties-parameters-properties-roles.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-25-then-allof-0-then-properties-parameters-properties-roles.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-24-then-allof-0-then-properties-parameters-properties-roles.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-25-then-allof-0-then-properties-parameters-properties-roles.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-24-then-allof-0-then-properties-parameters.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-25-then-allof-0-then-properties-parameters.md similarity index 81% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-24-then-allof-0-then-properties-parameters.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-25-then-allof-0-then-properties-parameters.md index 76ceda55..c0325ff4 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-24-then-allof-0-then-properties-parameters.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-25-then-allof-0-then-properties-parameters.md @@ -1,12 +1,12 @@ ## parameters Type -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-24-then-allof-0-then-properties-parameters.md)) +`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-25-then-allof-0-then-properties-parameters.md)) # parameters Properties | Property | Type | Required | Nullable | Defined by | | :-------------- | :------ | :------- | :------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [roles](#roles) | `array` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-24-then-allof-0-then-properties-parameters-properties-roles.md "undefined#/properties/services/items/allOf/1/then/allOf/24/then/allOf/0/then/properties/parameters/properties/roles") | +| [roles](#roles) | `array` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-25-then-allof-0-then-properties-parameters-properties-roles.md "undefined#/properties/services/items/allOf/1/then/allOf/25/then/allOf/0/then/properties/parameters/properties/roles") | ## roles @@ -20,7 +20,7 @@ List of Roles for Current Instance * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-24-then-allof-0-then-properties-parameters-properties-roles.md "undefined#/properties/services/items/allOf/1/then/allOf/24/then/allOf/0/then/properties/parameters/properties/roles") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-25-then-allof-0-then-properties-parameters-properties-roles.md "undefined#/properties/services/items/allOf/1/then/allOf/25/then/allOf/0/then/properties/parameters/properties/roles") ### roles Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-25-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-25-then-allof-0-then.md index 0f895cdf..d0c65d65 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-25-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-25-then-allof-0-then.md @@ -4,15 +4,34 @@ unknown # then Properties -| Property | Type | Required | Nullable | Defined by | -| :------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-25-then-allof-0-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/25/then/allOf/0/then/properties/plan") | +| Property | Type | Required | Nullable | Defined by | +| :------------------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-25-then-allof-0-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/25/then/allOf/0/then/properties/plan") | +| [parameters](#parameters) | `object` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-25-then-allof-0-then-properties-parameters.md "undefined#/properties/services/items/allOf/1/then/allOf/25/then/allOf/0/then/properties/parameters") | ## plan -service plan >standard< for >conversational-ai< is available in data centers: +service plan >application< for >content-agent< is available in data centers: +* {'region': 'ap10', 'name': 'Australia (Sydney)'} +* {'region': 'ap11', 'name': 'Singapore'} +* {'region': 'ap12', 'name': 'South Korea (Seoul)'} +* {'region': 'ap20', 'name': 'Australia (Sydney) Azure'} +* {'region': 'ap21', 'name': 'Singapore'} +* {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} +* {'region': 'ca10', 'name': 'Canada (Montreal)'} +* {'region': 'ch20', 'name': 'cf-ch20'} * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} +* {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} +* {'region': 'eu20', 'name': 'Europe (Netherlands)'} +* {'region': 'eu30', 'name': 'Europe (Frankfurt)'} +* {'region': 'in30', 'name': 'India (Mumbai)'} +* {'region': 'jp10', 'name': 'Japan (Tokyo)'} +* {'region': 'jp20', 'name': 'Japan (Tokyo)'} +* {'region': 'us10', 'name': 'US East (VA)'} +* {'region': 'us20', 'name': 'US West (WA)'} +* {'region': 'us21', 'name': 'US East (VA)'} +* {'region': 'us30', 'name': 'US Central (IA)'} `plan` @@ -27,3 +46,21 @@ service plan >standard< for >conversational-ai< is available in data centers: ### plan Type unknown + +## parameters + + + +`parameters` + +* is required + +* Type: `object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-25-then-allof-0-then-properties-parameters.md)) + +* cannot be null + +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-25-then-allof-0-then-properties-parameters.md "undefined#/properties/services/items/allOf/1/then/allOf/25/then/allOf/0/then/properties/parameters") + +### parameters Type + +`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-25-then-allof-0-then-properties-parameters.md)) diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-24-then-allof-1-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-25-then-allof-1-if-properties-plan.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-24-then-allof-1-if-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-25-then-allof-1-if-properties-plan.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-26-then-allof-2-if-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-25-then-allof-1-if-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-26-then-allof-2-if-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-25-then-allof-1-if-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-14-then-allof-1-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-25-then-allof-1-if.md similarity index 83% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-14-then-allof-1-if.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-25-then-allof-1-if.md index 8aad9bae..47f84ef1 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-14-then-allof-1-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-25-then-allof-1-if.md @@ -6,7 +6,7 @@ unknown | Property | Type | Required | Nullable | Defined by | | :------------ | :------------ | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-14-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/14/then/allOf/1/if/properties/plan") | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-25-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/25/then/allOf/1/if/properties/plan") | ## plan @@ -20,7 +20,7 @@ unknown * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-14-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/14/then/allOf/1/if/properties/plan") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-25-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/25/then/allOf/1/if/properties/plan") ### plan Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-24-then-allof-1-then-properties-parameters-properties-roles-items.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-25-then-allof-1-then-properties-parameters-properties-roles-items.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-24-then-allof-1-then-properties-parameters-properties-roles-items.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-25-then-allof-1-then-properties-parameters-properties-roles-items.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-24-then-allof-1-then-properties-parameters-properties-roles.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-25-then-allof-1-then-properties-parameters-properties-roles.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-24-then-allof-1-then-properties-parameters-properties-roles.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-25-then-allof-1-then-properties-parameters-properties-roles.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-24-then-allof-1-then-properties-parameters.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-25-then-allof-1-then-properties-parameters.md similarity index 82% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-24-then-allof-1-then-properties-parameters.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-25-then-allof-1-then-properties-parameters.md index 27ab40c2..efd2bf01 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-24-then-allof-1-then-properties-parameters.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-25-then-allof-1-then-properties-parameters.md @@ -1,12 +1,12 @@ ## parameters Type -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-24-then-allof-1-then-properties-parameters.md)) +`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-25-then-allof-1-then-properties-parameters.md)) # parameters Properties | Property | Type | Required | Nullable | Defined by | | :-------------- | :------ | :------- | :------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [roles](#roles) | `array` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-24-then-allof-1-then-properties-parameters-properties-roles.md "undefined#/properties/services/items/allOf/1/then/allOf/24/then/allOf/1/then/properties/parameters/properties/roles") | +| [roles](#roles) | `array` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-25-then-allof-1-then-properties-parameters-properties-roles.md "undefined#/properties/services/items/allOf/1/then/allOf/25/then/allOf/1/then/properties/parameters/properties/roles") | ## roles @@ -20,7 +20,7 @@ List of Roles for Current Instance * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-24-then-allof-1-then-properties-parameters-properties-roles.md "undefined#/properties/services/items/allOf/1/then/allOf/24/then/allOf/1/then/properties/parameters/properties/roles") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-25-then-allof-1-then-properties-parameters-properties-roles.md "undefined#/properties/services/items/allOf/1/then/allOf/25/then/allOf/1/then/properties/parameters/properties/roles") ### roles Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-26-then-allof-1-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-25-then-allof-1-then-properties-plan.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-26-then-allof-1-then-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-25-then-allof-1-then-properties-plan.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-26-then-allof-2-then-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-25-then-allof-1-then-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-26-then-allof-2-then-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-25-then-allof-1-then-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-24-then-allof-1-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-25-then-allof-1-then.md similarity index 81% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-24-then-allof-1-then.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-25-then-allof-1-then.md index edf32fee..ac523271 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-24-then-allof-1-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-25-then-allof-1-then.md @@ -6,8 +6,8 @@ unknown | Property | Type | Required | Nullable | Defined by | | :------------------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-24-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/24/then/allOf/1/then/properties/plan") | -| [parameters](#parameters) | `object` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-24-then-allof-1-then-properties-parameters.md "undefined#/properties/services/items/allOf/1/then/allOf/24/then/allOf/1/then/properties/parameters") | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-25-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/25/then/allOf/1/then/properties/plan") | +| [parameters](#parameters) | `object` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-25-then-allof-1-then-properties-parameters.md "undefined#/properties/services/items/allOf/1/then/allOf/25/then/allOf/1/then/properties/parameters") | ## plan @@ -41,7 +41,7 @@ service plan >standard< for >content-agent< is available in data centers: * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-24-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/24/then/allOf/1/then/properties/plan") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-25-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/25/then/allOf/1/then/properties/plan") ### plan Type @@ -55,12 +55,12 @@ unknown * is required -* Type: `object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-24-then-allof-1-then-properties-parameters.md)) +* Type: `object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-25-then-allof-1-then-properties-parameters.md)) * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-24-then-allof-1-then-properties-parameters.md "undefined#/properties/services/items/allOf/1/then/allOf/24/then/allOf/1/then/properties/parameters") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-25-then-allof-1-then-properties-parameters.md "undefined#/properties/services/items/allOf/1/then/allOf/25/then/allOf/1/then/properties/parameters") ### parameters Type -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-24-then-allof-1-then-properties-parameters.md)) +`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-25-then-allof-1-then-properties-parameters.md)) diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-24-then-allof-1.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-25-then-allof-1.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-24-then-allof-1.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-25-then-allof-1.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-25-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-25-then-properties-plan.md index 248cb3df..2a192f55 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-25-then-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-25-then-properties-plan.md @@ -6,6 +6,7 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :----------- | :---------- | -| `"standard"` | | +| Value | Explanation | +| :-------------- | :---------- | +| `"application"` | | +| `"standard"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-25-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-25-then.md index 202fd13e..7594aadd 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-25-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-25-then.md @@ -6,6 +6,8 @@ all of * [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-25-then-allof-0.md "check type definition") +* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-25-then-allof-1.md "check type definition") + # then Properties | Property | Type | Required | Nullable | Defined by | @@ -35,13 +37,14 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :----------- | :---------- | -| `"standard"` | | +| Value | Explanation | +| :-------------- | :---------- | +| `"application"` | | +| `"standard"` | | ## name -SAP Conversational AI: SAP Conversational AI is a collaborative end-to-end platform for creating chatbots. Along with conversational natural language processing (NLP) and dialog management features supported with detailed API documentation, SAP Conversational AI makes it easy to connect your bots to different messaging channels. +SAP Content Agent service: SAP Content Agent service is a tool for SAP BTP applications offering generic content management operations such as view, export and import content with inter-dependencies and integration with SAP Cloud Transport Management service. It offers a view to track all activities along with logs, status and other information. `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-26-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-26-if-properties-name.md index 5a7993f5..9d86e8ca 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-26-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-26-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"credstore" +"conversational-ai" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-26-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-26-if.md index ed58f44d..a6fbf8f5 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-26-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-26-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"credstore" +"conversational-ai" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-26-then-allof-0-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-26-then-allof-0-if-properties-plan.md index c97f5143..126392b1 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-26-then-allof-0-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-26-then-allof-0-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"free" +"standard" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-26-then-allof-0-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-26-then-allof-0-if.md index f10ff0a1..3586a96e 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-26-then-allof-0-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-26-then-allof-0-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"free" +"standard" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-26-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-26-then-allof-0-then.md index 2285ec2b..3f6f644e 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-26-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-26-then-allof-0-then.md @@ -10,27 +10,9 @@ unknown ## plan -service plan >free< for >credstore< is available in data centers: - -* {'region': 'ap10', 'name': 'Australia (Sydney)'} -* {'region': 'ap11', 'name': 'Singapore'} -* {'region': 'ap12', 'name': 'South Korea (Seoul)'} -* {'region': 'ap20', 'name': 'Australia (Sydney) Azure'} -* {'region': 'ap21', 'name': 'Singapore'} -* {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} -* {'region': 'ca10', 'name': 'Canada (Montreal)'} -* {'region': 'ch20', 'name': 'cf-ch20'} +service plan >standard< for >conversational-ai< is available in data centers: + * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} -* {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} -* {'region': 'eu20', 'name': 'Europe (Netherlands)'} -* {'region': 'eu30', 'name': 'Europe (Frankfurt)'} -* {'region': 'in30', 'name': 'India (Mumbai)'} -* {'region': 'jp10', 'name': 'Japan (Tokyo)'} -* {'region': 'jp20', 'name': 'Japan (Tokyo)'} -* {'region': 'us10', 'name': 'US East (VA)'} -* {'region': 'us20', 'name': 'US West (WA)'} -* {'region': 'us21', 'name': 'US East (VA)'} -* {'region': 'us30', 'name': 'US Central (IA)'} `plan` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-26-then-allof-1-then-properties-parameters.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-26-then-allof-1-then-properties-parameters.md deleted file mode 100644 index 3284c6ff..00000000 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-26-then-allof-1-then-properties-parameters.md +++ /dev/null @@ -1,27 +0,0 @@ -## parameters Type - -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-26-then-allof-1-then-properties-parameters.md)) - -# parameters Properties - -| Property | Type | Required | Nullable | Defined by | -| :---------------- | :------- | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [origin](#origin) | `object` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-26-then-allof-1-then-properties-parameters-properties-origin.md "undefined#/properties/services/items/allOf/1/then/allOf/26/then/allOf/1/then/properties/parameters/properties/origin") | - -## origin - - - -`origin` - -* is required - -* Type: `object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-26-then-allof-1-then-properties-parameters-properties-origin.md)) - -* cannot be null - -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-26-then-allof-1-then-properties-parameters-properties-origin.md "undefined#/properties/services/items/allOf/1/then/allOf/26/then/allOf/1/then/properties/parameters/properties/origin") - -### origin Type - -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-26-then-allof-1-then-properties-parameters-properties-origin.md)) diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-26-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-26-then-properties-plan.md index 585b3e64..248cb3df 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-26-then-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-26-then-properties-plan.md @@ -8,6 +8,4 @@ unknown | Value | Explanation | | :----------- | :---------- | -| `"free"` | | -| `"proxy"` | | | `"standard"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-26-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-26-then.md index e237062c..fb3a9625 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-26-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-26-then.md @@ -6,10 +6,6 @@ all of * [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-26-then-allof-0.md "check type definition") -* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-26-then-allof-1.md "check type definition") - -* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-26-then-allof-2.md "check type definition") - # then Properties | Property | Type | Required | Nullable | Defined by | @@ -41,13 +37,11 @@ unknown | Value | Explanation | | :----------- | :---------- | -| `"free"` | | -| `"proxy"` | | | `"standard"` | | ## name -SAP Credential Store: The Credential Store provides a secure repository for passwords and keys to applications that are running on SAP Business Technology Platform. It enables the applications to retrieve credentials and use them for authentication to external services, or to perform cryptographic operations and TLS communication. +SAP Conversational AI: SAP Conversational AI is a collaborative end-to-end platform for creating chatbots. Along with conversational natural language processing (NLP) and dialog management features supported with detailed API documentation, SAP Conversational AI makes it easy to connect your bots to different messaging channels. `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-27-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-27-if-properties-name.md index 377d2e3d..5a7993f5 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-27-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-27-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"data-analytics-osb" +"credstore" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-27-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-27-if.md index 60c7288b..48511319 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-27-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-27-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"data-analytics-osb" +"credstore" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-27-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-27-then-allof-0-then.md index fa13dab2..41705615 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-27-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-27-then-allof-0-then.md @@ -4,26 +4,33 @@ unknown # then Properties -| Property | Type | Required | Nullable | Defined by | -| :------------------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-27-then-allof-0-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/27/then/allOf/0/then/properties/plan") | -| [parameters](#parameters) | `object` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-27-then-allof-0-then-properties-parameters.md "undefined#/properties/services/items/allOf/1/then/allOf/27/then/allOf/0/then/properties/parameters") | +| Property | Type | Required | Nullable | Defined by | +| :------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-27-then-allof-0-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/27/then/allOf/0/then/properties/plan") | ## plan -service plan >free< for >data-analytics-osb< is available in data centers: +service plan >free< for >credstore< is available in data centers: * {'region': 'ap10', 'name': 'Australia (Sydney)'} * {'region': 'ap11', 'name': 'Singapore'} * {'region': 'ap12', 'name': 'South Korea (Seoul)'} +* {'region': 'ap20', 'name': 'Australia (Sydney) Azure'} +* {'region': 'ap21', 'name': 'Singapore'} * {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} * {'region': 'ca10', 'name': 'Canada (Montreal)'} +* {'region': 'ch20', 'name': 'cf-ch20'} * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} * {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} * {'region': 'eu20', 'name': 'Europe (Netherlands)'} +* {'region': 'eu30', 'name': 'Europe (Frankfurt)'} +* {'region': 'in30', 'name': 'India (Mumbai)'} * {'region': 'jp10', 'name': 'Japan (Tokyo)'} +* {'region': 'jp20', 'name': 'Japan (Tokyo)'} * {'region': 'us10', 'name': 'US East (VA)'} * {'region': 'us20', 'name': 'US West (WA)'} +* {'region': 'us21', 'name': 'US East (VA)'} +* {'region': 'us30', 'name': 'US Central (IA)'} `plan` @@ -38,21 +45,3 @@ service plan >free< for >data-analytics-osb< is available in data centers: ### plan Type unknown - -## parameters - - - -`parameters` - -* is required - -* Type: `object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-27-then-allof-0-then-properties-parameters.md)) - -* cannot be null - -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-27-then-allof-0-then-properties-parameters.md "undefined#/properties/services/items/allOf/1/then/allOf/27/then/allOf/0/then/properties/parameters") - -### parameters Type - -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-27-then-allof-0-then-properties-parameters.md)) diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-27-then-allof-1-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-27-then-allof-1-if-properties-plan.md index 126392b1..6b7ff7e5 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-27-then-allof-1-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-27-then-allof-1-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"standard" +"proxy" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-27-then-allof-1-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-27-then-allof-1-if.md index c3af5594..df345716 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-27-then-allof-1-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-27-then-allof-1-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"standard" +"proxy" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-26-then-allof-1-then-properties-parameters-properties-origin-properties-region-technical-key-landscape.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-27-then-allof-1-then-properties-parameters-properties-origin-properties-region-technical-key-landscape.md similarity index 72% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-26-then-allof-1-then-properties-parameters-properties-origin-properties-region-technical-key-landscape.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-27-then-allof-1-then-properties-parameters-properties-origin-properties-region-technical-key-landscape.md index 4a8ab358..5608be29 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-26-then-allof-1-then-properties-parameters-properties-origin-properties-region-technical-key-landscape.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-27-then-allof-1-then-properties-parameters-properties-origin-properties-region-technical-key-landscape.md @@ -1,3 +1,3 @@ ## landscape Type -`string` ([Region Technical Key (Landscape)](btpsa-usecase-properties-services-items-allof-1-then-allof-26-then-allof-1-then-properties-parameters-properties-origin-properties-region-technical-key-landscape.md)) +`string` ([Region Technical Key (Landscape)](btpsa-usecase-properties-services-items-allof-1-then-allof-27-then-allof-1-then-properties-parameters-properties-origin-properties-region-technical-key-landscape.md)) diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-26-then-allof-1-then-properties-parameters-properties-origin-properties-service-guid.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-27-then-allof-1-then-properties-parameters-properties-origin-properties-service-guid.md similarity index 78% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-26-then-allof-1-then-properties-parameters-properties-origin-properties-service-guid.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-27-then-allof-1-then-properties-parameters-properties-origin-properties-service-guid.md index 73393119..6116d622 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-26-then-allof-1-then-properties-parameters-properties-origin-properties-service-guid.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-27-then-allof-1-then-properties-parameters-properties-origin-properties-service-guid.md @@ -1,6 +1,6 @@ ## serviceGuid Type -`string` ([Service GUID](btpsa-usecase-properties-services-items-allof-1-then-allof-26-then-allof-1-then-properties-parameters-properties-origin-properties-service-guid.md)) +`string` ([Service GUID](btpsa-usecase-properties-services-items-allof-1-then-allof-27-then-allof-1-then-properties-parameters-properties-origin-properties-service-guid.md)) ## serviceGuid Constraints diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-26-then-allof-1-then-properties-parameters-properties-origin.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-27-then-allof-1-then-properties-parameters-properties-origin.md similarity index 78% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-26-then-allof-1-then-properties-parameters-properties-origin.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-27-then-allof-1-then-properties-parameters-properties-origin.md index 1423c796..47d22894 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-26-then-allof-1-then-properties-parameters-properties-origin.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-27-then-allof-1-then-properties-parameters-properties-origin.md @@ -1,13 +1,13 @@ ## origin Type -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-26-then-allof-1-then-properties-parameters-properties-origin.md)) +`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-27-then-allof-1-then-properties-parameters-properties-origin.md)) # origin Properties | Property | Type | Required | Nullable | Defined by | | :-------------------------- | :------- | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [landscape](#landscape) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-26-then-allof-1-then-properties-parameters-properties-origin-properties-region-technical-key-landscape.md "undefined#/properties/services/items/allOf/1/then/allOf/26/then/allOf/1/then/properties/parameters/properties/origin/properties/landscape") | -| [serviceGuid](#serviceguid) | `string` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-26-then-allof-1-then-properties-parameters-properties-origin-properties-service-guid.md "undefined#/properties/services/items/allOf/1/then/allOf/26/then/allOf/1/then/properties/parameters/properties/origin/properties/serviceGuid") | +| [landscape](#landscape) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-27-then-allof-1-then-properties-parameters-properties-origin-properties-region-technical-key-landscape.md "undefined#/properties/services/items/allOf/1/then/allOf/27/then/allOf/1/then/properties/parameters/properties/origin/properties/landscape") | +| [serviceGuid](#serviceguid) | `string` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-27-then-allof-1-then-properties-parameters-properties-origin-properties-service-guid.md "undefined#/properties/services/items/allOf/1/then/allOf/27/then/allOf/1/then/properties/parameters/properties/origin/properties/serviceGuid") | ## landscape @@ -17,15 +17,15 @@ Technical key of the region (landscape) where the original service instance is l * is optional -* Type: `string` ([Region Technical Key (Landscape)](btpsa-usecase-properties-services-items-allof-1-then-allof-26-then-allof-1-then-properties-parameters-properties-origin-properties-region-technical-key-landscape.md)) +* Type: `string` ([Region Technical Key (Landscape)](btpsa-usecase-properties-services-items-allof-1-then-allof-27-then-allof-1-then-properties-parameters-properties-origin-properties-region-technical-key-landscape.md)) * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-26-then-allof-1-then-properties-parameters-properties-origin-properties-region-technical-key-landscape.md "undefined#/properties/services/items/allOf/1/then/allOf/26/then/allOf/1/then/properties/parameters/properties/origin/properties/landscape") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-27-then-allof-1-then-properties-parameters-properties-origin-properties-region-technical-key-landscape.md "undefined#/properties/services/items/allOf/1/then/allOf/27/then/allOf/1/then/properties/parameters/properties/origin/properties/landscape") ### landscape Type -`string` ([Region Technical Key (Landscape)](btpsa-usecase-properties-services-items-allof-1-then-allof-26-then-allof-1-then-properties-parameters-properties-origin-properties-region-technical-key-landscape.md)) +`string` ([Region Technical Key (Landscape)](btpsa-usecase-properties-services-items-allof-1-then-allof-27-then-allof-1-then-properties-parameters-properties-origin-properties-region-technical-key-landscape.md)) ## serviceGuid @@ -35,15 +35,15 @@ GUID of the original service instance * is required -* Type: `string` ([Service GUID](btpsa-usecase-properties-services-items-allof-1-then-allof-26-then-allof-1-then-properties-parameters-properties-origin-properties-service-guid.md)) +* Type: `string` ([Service GUID](btpsa-usecase-properties-services-items-allof-1-then-allof-27-then-allof-1-then-properties-parameters-properties-origin-properties-service-guid.md)) * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-26-then-allof-1-then-properties-parameters-properties-origin-properties-service-guid.md "undefined#/properties/services/items/allOf/1/then/allOf/26/then/allOf/1/then/properties/parameters/properties/origin/properties/serviceGuid") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-27-then-allof-1-then-properties-parameters-properties-origin-properties-service-guid.md "undefined#/properties/services/items/allOf/1/then/allOf/27/then/allOf/1/then/properties/parameters/properties/origin/properties/serviceGuid") ### serviceGuid Type -`string` ([Service GUID](btpsa-usecase-properties-services-items-allof-1-then-allof-26-then-allof-1-then-properties-parameters-properties-origin-properties-service-guid.md)) +`string` ([Service GUID](btpsa-usecase-properties-services-items-allof-1-then-allof-27-then-allof-1-then-properties-parameters-properties-origin-properties-service-guid.md)) ### serviceGuid Constraints diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-27-then-allof-1-then-properties-parameters.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-27-then-allof-1-then-properties-parameters.md index 4ec6a7ee..b3015461 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-27-then-allof-1-then-properties-parameters.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-27-then-allof-1-then-properties-parameters.md @@ -4,76 +4,24 @@ # parameters Properties -| Property | Type | Required | Nullable | Defined by | -| :------------------------- | :------- | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| [email](#email) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-27-then-allof-1-then-properties-parameters-properties-email.md "undefined#/properties/services/items/allOf/1/then/allOf/27/then/allOf/1/then/properties/parameters/properties/email") | -| [first\_name](#first_name) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-27-then-allof-1-then-properties-parameters-properties-first_name.md "undefined#/properties/services/items/allOf/1/then/allOf/27/then/allOf/1/then/properties/parameters/properties/first_name") | -| [last\_name](#last_name) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-27-then-allof-1-then-properties-parameters-properties-last_name.md "undefined#/properties/services/items/allOf/1/then/allOf/27/then/allOf/1/then/properties/parameters/properties/last_name") | +| Property | Type | Required | Nullable | Defined by | +| :---------------- | :------- | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [origin](#origin) | `object` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-27-then-allof-1-then-properties-parameters-properties-origin.md "undefined#/properties/services/items/allOf/1/then/allOf/27/then/allOf/1/then/properties/parameters/properties/origin") | -## email +## origin -email of the user -`email` -* is optional +`origin` -* Type: `string` +* is required -* cannot be null - -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-27-then-allof-1-then-properties-parameters-properties-email.md "undefined#/properties/services/items/allOf/1/then/allOf/27/then/allOf/1/then/properties/parameters/properties/email") - -### email Type - -`string` - -### email Constraints - -**minimum length**: the minimum number of characters for this string is: `1` - -**email**: the string must be an email address, according to [RFC 5322, section 3.4.1](https://tools.ietf.org/html/rfc5322 "check the specification") - -## first\_name - -first name of the user - -`first_name` - -* is optional - -* Type: `string` - -* cannot be null - -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-27-then-allof-1-then-properties-parameters-properties-first_name.md "undefined#/properties/services/items/allOf/1/then/allOf/27/then/allOf/1/then/properties/parameters/properties/first_name") - -### first\_name Type - -`string` - -### first\_name Constraints - -**minimum length**: the minimum number of characters for this string is: `1` - -## last\_name - -last name of the user - -`last_name` - -* is optional - -* Type: `string` +* Type: `object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-27-then-allof-1-then-properties-parameters-properties-origin.md)) * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-27-then-allof-1-then-properties-parameters-properties-last_name.md "undefined#/properties/services/items/allOf/1/then/allOf/27/then/allOf/1/then/properties/parameters/properties/last_name") - -### last\_name Type - -`string` +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-27-then-allof-1-then-properties-parameters-properties-origin.md "undefined#/properties/services/items/allOf/1/then/allOf/27/then/allOf/1/then/properties/parameters/properties/origin") -### last\_name Constraints +### origin Type -**minimum length**: the minimum number of characters for this string is: `1` +`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-27-then-allof-1-then-properties-parameters-properties-origin.md)) diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-27-then-allof-1-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-27-then-allof-1-then.md index b7b73ce8..b6b05c4b 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-27-then-allof-1-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-27-then-allof-1-then.md @@ -11,19 +11,27 @@ unknown ## plan -service plan >standard< for >data-analytics-osb< is available in data centers: +service plan >proxy< for >credstore< is available in data centers: * {'region': 'ap10', 'name': 'Australia (Sydney)'} * {'region': 'ap11', 'name': 'Singapore'} * {'region': 'ap12', 'name': 'South Korea (Seoul)'} +* {'region': 'ap20', 'name': 'Australia (Sydney) Azure'} +* {'region': 'ap21', 'name': 'Singapore'} * {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} * {'region': 'ca10', 'name': 'Canada (Montreal)'} +* {'region': 'ch20', 'name': 'cf-ch20'} * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} * {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} * {'region': 'eu20', 'name': 'Europe (Netherlands)'} +* {'region': 'eu30', 'name': 'Europe (Frankfurt)'} +* {'region': 'in30', 'name': 'India (Mumbai)'} * {'region': 'jp10', 'name': 'Japan (Tokyo)'} +* {'region': 'jp20', 'name': 'Japan (Tokyo)'} * {'region': 'us10', 'name': 'US East (VA)'} * {'region': 'us20', 'name': 'US West (WA)'} +* {'region': 'us21', 'name': 'US East (VA)'} +* {'region': 'us30', 'name': 'US Central (IA)'} `plan` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-26-then-allof-2-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-27-then-allof-2-if-properties-plan.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-26-then-allof-2-if-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-27-then-allof-2-if-properties-plan.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-2-if-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-27-then-allof-2-if-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-2-if-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-27-then-allof-2-if-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-2-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-27-then-allof-2-if.md similarity index 83% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-2-if.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-27-then-allof-2-if.md index ff11b4ff..ffc3d1dc 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-2-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-27-then-allof-2-if.md @@ -6,7 +6,7 @@ unknown | Property | Type | Required | Nullable | Defined by | | :------------ | :------------ | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-2-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/92/then/allOf/2/if/properties/plan") | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-27-then-allof-2-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/27/then/allOf/2/if/properties/plan") | ## plan @@ -20,7 +20,7 @@ unknown * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-2-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/92/then/allOf/2/if/properties/plan") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-27-then-allof-2-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/27/then/allOf/2/if/properties/plan") ### plan Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-26-then-allof-2-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-27-then-allof-2-then-properties-plan.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-26-then-allof-2-then-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-27-then-allof-2-then-properties-plan.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-2-then-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-27-then-allof-2-then-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-2-then-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-27-then-allof-2-then-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-26-then-allof-2-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-27-then-allof-2-then.md similarity index 89% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-26-then-allof-2-then.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-27-then-allof-2-then.md index 87f6dc81..85e24f14 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-26-then-allof-2-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-27-then-allof-2-then.md @@ -6,7 +6,7 @@ unknown | Property | Type | Required | Nullable | Defined by | | :------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-26-then-allof-2-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/26/then/allOf/2/then/properties/plan") | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-27-then-allof-2-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/27/then/allOf/2/then/properties/plan") | ## plan @@ -40,7 +40,7 @@ service plan >standard< for >credstore< is available in data centers: * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-26-then-allof-2-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/26/then/allOf/2/then/properties/plan") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-27-then-allof-2-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/27/then/allOf/2/then/properties/plan") ### plan Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-26-then-allof-2.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-27-then-allof-2.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-26-then-allof-2.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-27-then-allof-2.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-27-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-27-then-properties-plan.md index 49c8bb8c..585b3e64 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-27-then-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-27-then-properties-plan.md @@ -9,4 +9,5 @@ unknown | Value | Explanation | | :----------- | :---------- | | `"free"` | | +| `"proxy"` | | | `"standard"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-27-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-27-then.md index 99e1891c..ba7bb4a8 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-27-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-27-then.md @@ -8,6 +8,8 @@ all of * [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-27-then-allof-1.md "check type definition") +* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-27-then-allof-2.md "check type definition") + # then Properties | Property | Type | Required | Nullable | Defined by | @@ -40,11 +42,12 @@ unknown | Value | Explanation | | :----------- | :---------- | | `"free"` | | +| `"proxy"` | | | `"standard"` | | ## name -SAP Datasphere: SAP Datasphere provides a single, fully-managed cloud environment to allow your organization to acquire, combine, prepare, and model data for consumption in analytics clients. +SAP Credential Store: The Credential Store provides a secure repository for passwords and keys to applications that are running on SAP Business Technology Platform. It enables the applications to retrieve credentials and use them for authentication to external services, or to perform cryptographic operations and TLS communication. `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-28-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-28-if-properties-name.md index 8084e5a9..377d2e3d 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-28-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-28-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"data-attribute-recommendation" +"data-analytics-osb" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-28-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-28-if.md index d8d9149d..578a4647 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-28-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-28-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"data-attribute-recommendation" +"data-analytics-osb" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-27-then-allof-0-then-properties-parameters-properties-email.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-28-then-allof-0-then-properties-parameters-properties-email.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-27-then-allof-0-then-properties-parameters-properties-email.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-28-then-allof-0-then-properties-parameters-properties-email.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-27-then-allof-0-then-properties-parameters-properties-first_name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-28-then-allof-0-then-properties-parameters-properties-first_name.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-27-then-allof-0-then-properties-parameters-properties-first_name.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-28-then-allof-0-then-properties-parameters-properties-first_name.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-27-then-allof-0-then-properties-parameters-properties-last_name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-28-then-allof-0-then-properties-parameters-properties-last_name.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-27-then-allof-0-then-properties-parameters-properties-last_name.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-28-then-allof-0-then-properties-parameters-properties-last_name.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-27-then-allof-0-then-properties-parameters.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-28-then-allof-0-then-properties-parameters.md similarity index 78% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-27-then-allof-0-then-properties-parameters.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-28-then-allof-0-then-properties-parameters.md index 37d9d08c..39c2a892 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-27-then-allof-0-then-properties-parameters.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-28-then-allof-0-then-properties-parameters.md @@ -1,14 +1,14 @@ ## parameters Type -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-27-then-allof-0-then-properties-parameters.md)) +`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-28-then-allof-0-then-properties-parameters.md)) # parameters Properties | Property | Type | Required | Nullable | Defined by | | :------------------------- | :------- | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| [email](#email) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-27-then-allof-0-then-properties-parameters-properties-email.md "undefined#/properties/services/items/allOf/1/then/allOf/27/then/allOf/0/then/properties/parameters/properties/email") | -| [first\_name](#first_name) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-27-then-allof-0-then-properties-parameters-properties-first_name.md "undefined#/properties/services/items/allOf/1/then/allOf/27/then/allOf/0/then/properties/parameters/properties/first_name") | -| [last\_name](#last_name) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-27-then-allof-0-then-properties-parameters-properties-last_name.md "undefined#/properties/services/items/allOf/1/then/allOf/27/then/allOf/0/then/properties/parameters/properties/last_name") | +| [email](#email) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-28-then-allof-0-then-properties-parameters-properties-email.md "undefined#/properties/services/items/allOf/1/then/allOf/28/then/allOf/0/then/properties/parameters/properties/email") | +| [first\_name](#first_name) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-28-then-allof-0-then-properties-parameters-properties-first_name.md "undefined#/properties/services/items/allOf/1/then/allOf/28/then/allOf/0/then/properties/parameters/properties/first_name") | +| [last\_name](#last_name) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-28-then-allof-0-then-properties-parameters-properties-last_name.md "undefined#/properties/services/items/allOf/1/then/allOf/28/then/allOf/0/then/properties/parameters/properties/last_name") | ## email @@ -22,7 +22,7 @@ email of the user * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-27-then-allof-0-then-properties-parameters-properties-email.md "undefined#/properties/services/items/allOf/1/then/allOf/27/then/allOf/0/then/properties/parameters/properties/email") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-28-then-allof-0-then-properties-parameters-properties-email.md "undefined#/properties/services/items/allOf/1/then/allOf/28/then/allOf/0/then/properties/parameters/properties/email") ### email Type @@ -46,7 +46,7 @@ first name of the user * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-27-then-allof-0-then-properties-parameters-properties-first_name.md "undefined#/properties/services/items/allOf/1/then/allOf/27/then/allOf/0/then/properties/parameters/properties/first_name") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-28-then-allof-0-then-properties-parameters-properties-first_name.md "undefined#/properties/services/items/allOf/1/then/allOf/28/then/allOf/0/then/properties/parameters/properties/first_name") ### first\_name Type @@ -68,7 +68,7 @@ last name of the user * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-27-then-allof-0-then-properties-parameters-properties-last_name.md "undefined#/properties/services/items/allOf/1/then/allOf/27/then/allOf/0/then/properties/parameters/properties/last_name") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-28-then-allof-0-then-properties-parameters-properties-last_name.md "undefined#/properties/services/items/allOf/1/then/allOf/28/then/allOf/0/then/properties/parameters/properties/last_name") ### last\_name Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-28-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-28-then-allof-0-then.md index 896cec2d..01dd977d 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-28-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-28-then-allof-0-then.md @@ -4,17 +4,27 @@ unknown # then Properties -| Property | Type | Required | Nullable | Defined by | -| :------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-28-then-allof-0-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/28/then/allOf/0/then/properties/plan") | +| Property | Type | Required | Nullable | Defined by | +| :------------------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-28-then-allof-0-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/28/then/allOf/0/then/properties/plan") | +| [parameters](#parameters) | `object` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-28-then-allof-0-then-properties-parameters.md "undefined#/properties/services/items/allOf/1/then/allOf/28/then/allOf/0/then/properties/parameters") | ## plan -service plan >free< for >data-attribute-recommendation< is available in data centers: +service plan >free< for >data-analytics-osb< is available in data centers: +* {'region': 'ap10', 'name': 'Australia (Sydney)'} +* {'region': 'ap11', 'name': 'Singapore'} +* {'region': 'ap12', 'name': 'South Korea (Seoul)'} +* {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} +* {'region': 'ca10', 'name': 'Canada (Montreal)'} * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} * {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} +* {'region': 'eu20', 'name': 'Europe (Netherlands)'} +* {'region': 'jp10', 'name': 'Japan (Tokyo)'} * {'region': 'us10', 'name': 'US East (VA)'} +* {'region': 'us20', 'name': 'US West (WA)'} +* {'region': 'us30', 'name': 'US Central (IA)'} `plan` @@ -29,3 +39,21 @@ service plan >free< for >data-attribute-recommendation< is available in data cen ### plan Type unknown + +## parameters + + + +`parameters` + +* is required + +* Type: `object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-28-then-allof-0-then-properties-parameters.md)) + +* cannot be null + +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-28-then-allof-0-then-properties-parameters.md "undefined#/properties/services/items/allOf/1/then/allOf/28/then/allOf/0/then/properties/parameters") + +### parameters Type + +`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-28-then-allof-0-then-properties-parameters.md)) diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-27-then-allof-1-then-properties-parameters-properties-email.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-28-then-allof-1-then-properties-parameters-properties-email.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-27-then-allof-1-then-properties-parameters-properties-email.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-28-then-allof-1-then-properties-parameters-properties-email.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-27-then-allof-1-then-properties-parameters-properties-first_name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-28-then-allof-1-then-properties-parameters-properties-first_name.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-27-then-allof-1-then-properties-parameters-properties-first_name.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-28-then-allof-1-then-properties-parameters-properties-first_name.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-27-then-allof-1-then-properties-parameters-properties-last_name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-28-then-allof-1-then-properties-parameters-properties-last_name.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-27-then-allof-1-then-properties-parameters-properties-last_name.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-28-then-allof-1-then-properties-parameters-properties-last_name.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-28-then-allof-1-then-properties-parameters.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-28-then-allof-1-then-properties-parameters.md new file mode 100644 index 00000000..82de66ed --- /dev/null +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-28-then-allof-1-then-properties-parameters.md @@ -0,0 +1,79 @@ +## parameters Type + +`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-28-then-allof-1-then-properties-parameters.md)) + +# parameters Properties + +| Property | Type | Required | Nullable | Defined by | +| :------------------------- | :------- | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| [email](#email) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-28-then-allof-1-then-properties-parameters-properties-email.md "undefined#/properties/services/items/allOf/1/then/allOf/28/then/allOf/1/then/properties/parameters/properties/email") | +| [first\_name](#first_name) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-28-then-allof-1-then-properties-parameters-properties-first_name.md "undefined#/properties/services/items/allOf/1/then/allOf/28/then/allOf/1/then/properties/parameters/properties/first_name") | +| [last\_name](#last_name) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-28-then-allof-1-then-properties-parameters-properties-last_name.md "undefined#/properties/services/items/allOf/1/then/allOf/28/then/allOf/1/then/properties/parameters/properties/last_name") | + +## email + +email of the user + +`email` + +* is optional + +* Type: `string` + +* cannot be null + +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-28-then-allof-1-then-properties-parameters-properties-email.md "undefined#/properties/services/items/allOf/1/then/allOf/28/then/allOf/1/then/properties/parameters/properties/email") + +### email Type + +`string` + +### email Constraints + +**minimum length**: the minimum number of characters for this string is: `1` + +**email**: the string must be an email address, according to [RFC 5322, section 3.4.1](https://tools.ietf.org/html/rfc5322 "check the specification") + +## first\_name + +first name of the user + +`first_name` + +* is optional + +* Type: `string` + +* cannot be null + +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-28-then-allof-1-then-properties-parameters-properties-first_name.md "undefined#/properties/services/items/allOf/1/then/allOf/28/then/allOf/1/then/properties/parameters/properties/first_name") + +### first\_name Type + +`string` + +### first\_name Constraints + +**minimum length**: the minimum number of characters for this string is: `1` + +## last\_name + +last name of the user + +`last_name` + +* is optional + +* Type: `string` + +* cannot be null + +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-28-then-allof-1-then-properties-parameters-properties-last_name.md "undefined#/properties/services/items/allOf/1/then/allOf/28/then/allOf/1/then/properties/parameters/properties/last_name") + +### last\_name Type + +`string` + +### last\_name Constraints + +**minimum length**: the minimum number of characters for this string is: `1` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-28-then-allof-1-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-28-then-allof-1-then.md index 9267ec73..12005fa0 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-28-then-allof-1-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-28-then-allof-1-then.md @@ -4,17 +4,27 @@ unknown # then Properties -| Property | Type | Required | Nullable | Defined by | -| :------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-28-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/28/then/allOf/1/then/properties/plan") | +| Property | Type | Required | Nullable | Defined by | +| :------------------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-28-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/28/then/allOf/1/then/properties/plan") | +| [parameters](#parameters) | `object` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-28-then-allof-1-then-properties-parameters.md "undefined#/properties/services/items/allOf/1/then/allOf/28/then/allOf/1/then/properties/parameters") | ## plan -service plan >standard< for >data-attribute-recommendation< is available in data centers: +service plan >standard< for >data-analytics-osb< is available in data centers: +* {'region': 'ap10', 'name': 'Australia (Sydney)'} +* {'region': 'ap11', 'name': 'Singapore'} +* {'region': 'ap12', 'name': 'South Korea (Seoul)'} +* {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} +* {'region': 'ca10', 'name': 'Canada (Montreal)'} * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} * {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} +* {'region': 'eu20', 'name': 'Europe (Netherlands)'} +* {'region': 'jp10', 'name': 'Japan (Tokyo)'} * {'region': 'us10', 'name': 'US East (VA)'} +* {'region': 'us20', 'name': 'US West (WA)'} +* {'region': 'us30', 'name': 'US Central (IA)'} `plan` @@ -29,3 +39,21 @@ service plan >standard< for >data-attribute-recommendation< is available in data ### plan Type unknown + +## parameters + + + +`parameters` + +* is required + +* Type: `object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-28-then-allof-1-then-properties-parameters.md)) + +* cannot be null + +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-28-then-allof-1-then-properties-parameters.md "undefined#/properties/services/items/allOf/1/then/allOf/28/then/allOf/1/then/properties/parameters") + +### parameters Type + +`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-28-then-allof-1-then-properties-parameters.md)) diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-28-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-28-then.md index 0f7fb93a..b5f755ba 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-28-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-28-then.md @@ -44,7 +44,7 @@ unknown ## name -Data Attribute Recommendation: Data Attribute Recommendation uses free text, numbers and categories as input to classify entities such as products, stores and users into multiple classes and also to predict the value of missing numerical attributes in your data records. You can use Data Attribute Recommendation, for example, to classify incoming product information and predict the price of commodities based on their description. +SAP Datasphere: SAP Datasphere provides a single, fully-managed cloud environment to allow your organization to acquire, combine, prepare, and model data for consumption in analytics clients. `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-29-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-29-if-properties-name.md index ff65f57f..8084e5a9 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-29-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-29-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"data-intelligence" +"data-attribute-recommendation" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-29-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-29-if.md index 2785d345..f78ffcd7 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-29-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-29-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"data-intelligence" +"data-attribute-recommendation" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-0-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-0-if-properties-plan.md index 5be1861c..c97f5143 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-0-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-0-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"dedicated" +"free" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-0-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-0-if.md index 7ea0d1dc..946e4c0d 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-0-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-0-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"dedicated" +"free" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-0-then.md index 90b52651..6bc9e6d1 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-0-then.md @@ -4,22 +4,17 @@ unknown # then Properties -| Property | Type | Required | Nullable | Defined by | -| :------------------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-0-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/29/then/allOf/0/then/properties/plan") | -| [parameters](#parameters) | `object` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-0-then-properties-parameters.md "undefined#/properties/services/items/allOf/1/then/allOf/29/then/allOf/0/then/properties/parameters") | +| Property | Type | Required | Nullable | Defined by | +| :------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-0-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/29/then/allOf/0/then/properties/plan") | ## plan -service plan >dedicated< for >data-intelligence< is available in data centers: +service plan >free< for >data-attribute-recommendation< is available in data centers: -* {'region': 'ap10', 'name': 'Australia (Sydney)'} -* {'region': 'ap11', 'name': 'Singapore'} * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} -* {'region': 'eu20', 'name': 'Europe (Netherlands)'} -* {'region': 'jp10', 'name': 'Japan (Tokyo)'} +* {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} * {'region': 'us10', 'name': 'US East (VA)'} -* {'region': 'us20', 'name': 'US West (WA)'} `plan` @@ -34,21 +29,3 @@ service plan >dedicated< for >data-intelligence< is available in data centers: ### plan Type unknown - -## parameters - - - -`parameters` - -* is required - -* Type: `object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-0-then-properties-parameters.md)) - -* cannot be null - -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-0-then-properties-parameters.md "undefined#/properties/services/items/allOf/1/then/allOf/29/then/allOf/0/then/properties/parameters") - -### parameters Type - -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-0-then-properties-parameters.md)) diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-1-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-1-if-properties-plan.md index 4c5f5a2a..126392b1 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-1-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-1-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"enterprise" +"standard" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-1-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-1-if.md index df17f7c9..8443a611 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-1-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-1-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"enterprise" +"standard" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-1-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-1-then.md index 2c0109dc..1b029bca 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-1-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-1-then.md @@ -4,22 +4,17 @@ unknown # then Properties -| Property | Type | Required | Nullable | Defined by | -| :------------------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/29/then/allOf/1/then/properties/plan") | -| [parameters](#parameters) | `object` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-1-then-properties-parameters.md "undefined#/properties/services/items/allOf/1/then/allOf/29/then/allOf/1/then/properties/parameters") | +| Property | Type | Required | Nullable | Defined by | +| :------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/29/then/allOf/1/then/properties/plan") | ## plan -service plan >enterprise< for >data-intelligence< is available in data centers: +service plan >standard< for >data-attribute-recommendation< is available in data centers: -* {'region': 'ap10', 'name': 'Australia (Sydney)'} -* {'region': 'ap11', 'name': 'Singapore'} * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} -* {'region': 'eu20', 'name': 'Europe (Netherlands)'} -* {'region': 'jp10', 'name': 'Japan (Tokyo)'} +* {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} * {'region': 'us10', 'name': 'US East (VA)'} -* {'region': 'us20', 'name': 'US West (WA)'} `plan` @@ -34,21 +29,3 @@ service plan >enterprise< for >data-intelligence< is available in data centers: ### plan Type unknown - -## parameters - - - -`parameters` - -* is required - -* Type: `object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-1-then-properties-parameters.md)) - -* cannot be null - -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-1-then-properties-parameters.md "undefined#/properties/services/items/allOf/1/then/allOf/29/then/allOf/1/then/properties/parameters") - -### parameters Type - -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-1-then-properties-parameters.md)) diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-properties-plan.md index 44cca94e..49c8bb8c 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-properties-plan.md @@ -6,8 +6,7 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :------------- | :---------- | -| `"dedicated"` | | -| `"enterprise"` | | -| `"tenant"` | | +| Value | Explanation | +| :----------- | :---------- | +| `"free"` | | +| `"standard"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-29-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-29-then.md index 519017dc..7c68f8c9 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-29-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-29-then.md @@ -8,8 +8,6 @@ all of * [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-1.md "check type definition") -* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-2.md "check type definition") - # then Properties | Property | Type | Required | Nullable | Defined by | @@ -39,15 +37,14 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :------------- | :---------- | -| `"dedicated"` | | -| `"enterprise"` | | -| `"tenant"` | | +| Value | Explanation | +| :----------- | :---------- | +| `"free"` | | +| `"standard"` | | ## name -SAP Data Intelligence Cloud: SAP Data Intelligence allows data scientists and IT teams to collaboratively design, deploy, and manage machine-learning models with built-in tools for data governance, management, and transparency. It delivers intelligent and trustworthy insights to the right users, with the right context, and at the right time, while processing data across your distributed landscape. In addition, it connects data silos and increases visibility into global assets by processing data with a multicloud approach that is agnostic from the technology infrastructure provider, containerized, and based on open-source technologies. +Data Attribute Recommendation: Data Attribute Recommendation uses free text, numbers and categories as input to classify entities such as products, stores and users into multiple classes and also to predict the value of missing numerical attributes in your data records. You can use Data Attribute Recommendation, for example, to classify incoming product information and predict the price of commodities based on their description. `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-30-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-30-if-properties-name.md index cfa543d5..ff65f57f 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-30-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-30-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"data-privacy-integration-service" +"data-intelligence" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-30-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-30-if.md index 85425366..d5ef8d32 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-30-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-30-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"data-privacy-integration-service" +"data-intelligence" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-0-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-0-if-properties-plan.md index 9ae791c7..5be1861c 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-0-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-0-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"application" +"dedicated" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-0-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-0-if.md index 5cfbc674..ff8bac0d 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-0-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-0-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"application" +"dedicated" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-0-then-properties-parameters-properties-adminpassword.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-0-then-properties-parameters-properties-adminpassword.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-0-then-properties-parameters-properties-adminpassword.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-0-then-properties-parameters-properties-adminpassword.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-0-then-properties-parameters-properties-adminusername.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-0-then-properties-parameters-properties-adminusername.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-0-then-properties-parameters-properties-adminusername.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-0-then-properties-parameters-properties-adminusername.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-0-then-properties-parameters-properties-hibernationschedules.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-0-then-properties-parameters-properties-hibernationschedules.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-0-then-properties-parameters-properties-hibernationschedules.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-0-then-properties-parameters-properties-hibernationschedules.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-0-then-properties-parameters-properties-maxnodes.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-0-then-properties-parameters-properties-maxnodes.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-0-then-properties-parameters-properties-maxnodes.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-0-then-properties-parameters-properties-maxnodes.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-0-then-properties-parameters-properties-minnodes.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-0-then-properties-parameters-properties-minnodes.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-0-then-properties-parameters-properties-minnodes.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-0-then-properties-parameters-properties-minnodes.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-0-then-properties-parameters-properties-vpccidr.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-0-then-properties-parameters-properties-vpccidr.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-0-then-properties-parameters-properties-vpccidr.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-0-then-properties-parameters-properties-vpccidr.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-0-then-properties-parameters.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-0-then-properties-parameters.md similarity index 73% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-0-then-properties-parameters.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-0-then-properties-parameters.md index 9caa9a4c..f10ad613 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-0-then-properties-parameters.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-0-then-properties-parameters.md @@ -1,17 +1,17 @@ ## parameters Type -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-0-then-properties-parameters.md)) +`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-0-then-properties-parameters.md)) # parameters Properties | Property | Type | Required | Nullable | Defined by | | :-------------------------------------------- | :------- | :------- | :------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [adminPassword](#adminpassword) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-0-then-properties-parameters-properties-adminpassword.md "undefined#/properties/services/items/allOf/1/then/allOf/29/then/allOf/0/then/properties/parameters/properties/adminPassword") | -| [adminUsername](#adminusername) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-0-then-properties-parameters-properties-adminusername.md "undefined#/properties/services/items/allOf/1/then/allOf/29/then/allOf/0/then/properties/parameters/properties/adminUsername") | -| [hibernationSchedules](#hibernationschedules) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-0-then-properties-parameters-properties-hibernationschedules.md "undefined#/properties/services/items/allOf/1/then/allOf/29/then/allOf/0/then/properties/parameters/properties/hibernationSchedules") | -| [maxNodes](#maxnodes) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-0-then-properties-parameters-properties-maxnodes.md "undefined#/properties/services/items/allOf/1/then/allOf/29/then/allOf/0/then/properties/parameters/properties/maxNodes") | -| [minNodes](#minnodes) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-0-then-properties-parameters-properties-minnodes.md "undefined#/properties/services/items/allOf/1/then/allOf/29/then/allOf/0/then/properties/parameters/properties/minNodes") | -| [vpcCIDR](#vpccidr) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-0-then-properties-parameters-properties-vpccidr.md "undefined#/properties/services/items/allOf/1/then/allOf/29/then/allOf/0/then/properties/parameters/properties/vpcCIDR") | +| [adminPassword](#adminpassword) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-0-then-properties-parameters-properties-adminpassword.md "undefined#/properties/services/items/allOf/1/then/allOf/30/then/allOf/0/then/properties/parameters/properties/adminPassword") | +| [adminUsername](#adminusername) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-0-then-properties-parameters-properties-adminusername.md "undefined#/properties/services/items/allOf/1/then/allOf/30/then/allOf/0/then/properties/parameters/properties/adminUsername") | +| [hibernationSchedules](#hibernationschedules) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-0-then-properties-parameters-properties-hibernationschedules.md "undefined#/properties/services/items/allOf/1/then/allOf/30/then/allOf/0/then/properties/parameters/properties/hibernationSchedules") | +| [maxNodes](#maxnodes) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-0-then-properties-parameters-properties-maxnodes.md "undefined#/properties/services/items/allOf/1/then/allOf/30/then/allOf/0/then/properties/parameters/properties/maxNodes") | +| [minNodes](#minnodes) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-0-then-properties-parameters-properties-minnodes.md "undefined#/properties/services/items/allOf/1/then/allOf/30/then/allOf/0/then/properties/parameters/properties/minNodes") | +| [vpcCIDR](#vpccidr) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-0-then-properties-parameters-properties-vpccidr.md "undefined#/properties/services/items/allOf/1/then/allOf/30/then/allOf/0/then/properties/parameters/properties/vpcCIDR") | ## adminPassword @@ -25,7 +25,7 @@ Admin password of the new cluster * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-0-then-properties-parameters-properties-adminpassword.md "undefined#/properties/services/items/allOf/1/then/allOf/29/then/allOf/0/then/properties/parameters/properties/adminPassword") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-0-then-properties-parameters-properties-adminpassword.md "undefined#/properties/services/items/allOf/1/then/allOf/30/then/allOf/0/then/properties/parameters/properties/adminPassword") ### adminPassword Type @@ -43,7 +43,7 @@ Admin username of the new cluster * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-0-then-properties-parameters-properties-adminusername.md "undefined#/properties/services/items/allOf/1/then/allOf/29/then/allOf/0/then/properties/parameters/properties/adminUsername") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-0-then-properties-parameters-properties-adminusername.md "undefined#/properties/services/items/allOf/1/then/allOf/30/then/allOf/0/then/properties/parameters/properties/adminUsername") ### adminUsername Type @@ -61,7 +61,7 @@ schedules for hibernation start and wake up * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-0-then-properties-parameters-properties-hibernationschedules.md "undefined#/properties/services/items/allOf/1/then/allOf/29/then/allOf/0/then/properties/parameters/properties/hibernationSchedules") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-0-then-properties-parameters-properties-hibernationschedules.md "undefined#/properties/services/items/allOf/1/then/allOf/30/then/allOf/0/then/properties/parameters/properties/hibernationSchedules") ### hibernationSchedules Type @@ -79,7 +79,7 @@ The maximum number of nodes * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-0-then-properties-parameters-properties-maxnodes.md "undefined#/properties/services/items/allOf/1/then/allOf/29/then/allOf/0/then/properties/parameters/properties/maxNodes") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-0-then-properties-parameters-properties-maxnodes.md "undefined#/properties/services/items/allOf/1/then/allOf/30/then/allOf/0/then/properties/parameters/properties/maxNodes") ### maxNodes Type @@ -97,7 +97,7 @@ The minimum number of nodes * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-0-then-properties-parameters-properties-minnodes.md "undefined#/properties/services/items/allOf/1/then/allOf/29/then/allOf/0/then/properties/parameters/properties/minNodes") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-0-then-properties-parameters-properties-minnodes.md "undefined#/properties/services/items/allOf/1/then/allOf/30/then/allOf/0/then/properties/parameters/properties/minNodes") ### minNodes Type @@ -115,7 +115,7 @@ VPC cidr of the new cluster, defaults to 10.0.0.0/16 if not specified * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-0-then-properties-parameters-properties-vpccidr.md "undefined#/properties/services/items/allOf/1/then/allOf/29/then/allOf/0/then/properties/parameters/properties/vpcCIDR") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-0-then-properties-parameters-properties-vpccidr.md "undefined#/properties/services/items/allOf/1/then/allOf/30/then/allOf/0/then/properties/parameters/properties/vpcCIDR") ### vpcCIDR Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-0-then.md index 02d06a96..c61457f6 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-0-then.md @@ -4,24 +4,22 @@ unknown # then Properties -| Property | Type | Required | Nullable | Defined by | -| :------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-0-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/30/then/allOf/0/then/properties/plan") | +| Property | Type | Required | Nullable | Defined by | +| :------------------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-0-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/30/then/allOf/0/then/properties/plan") | +| [parameters](#parameters) | `object` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-0-then-properties-parameters.md "undefined#/properties/services/items/allOf/1/then/allOf/30/then/allOf/0/then/properties/parameters") | ## plan -service plan >application< for >data-privacy-integration-service< is available in data centers: +service plan >dedicated< for >data-intelligence< is available in data centers: * {'region': 'ap10', 'name': 'Australia (Sydney)'} * {'region': 'ap11', 'name': 'Singapore'} -* {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} -* {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} * {'region': 'eu20', 'name': 'Europe (Netherlands)'} +* {'region': 'jp10', 'name': 'Japan (Tokyo)'} * {'region': 'us10', 'name': 'US East (VA)'} * {'region': 'us20', 'name': 'US West (WA)'} -* {'region': 'us21', 'name': 'US East (VA)'} -* {'region': 'us30', 'name': 'US Central (IA)'} `plan` @@ -36,3 +34,21 @@ service plan >application< for >data-privacy-integration-service< is available i ### plan Type unknown + +## parameters + + + +`parameters` + +* is required + +* Type: `object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-0-then-properties-parameters.md)) + +* cannot be null + +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-0-then-properties-parameters.md "undefined#/properties/services/items/allOf/1/then/allOf/30/then/allOf/0/then/properties/parameters") + +### parameters Type + +`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-0-then-properties-parameters.md)) diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-1-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-1-if-properties-plan.md index c97f5143..4c5f5a2a 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-1-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-1-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"free" +"enterprise" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-1-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-1-if.md index d42a4161..c8bc778e 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-1-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-1-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"free" +"enterprise" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-1-then-properties-parameters-properties-adminpassword.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-1-then-properties-parameters-properties-adminpassword.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-1-then-properties-parameters-properties-adminpassword.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-1-then-properties-parameters-properties-adminpassword.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-1-then-properties-parameters-properties-adminusername.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-1-then-properties-parameters-properties-adminusername.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-1-then-properties-parameters-properties-adminusername.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-1-then-properties-parameters-properties-adminusername.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-1-then-properties-parameters-properties-hibernationschedules.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-1-then-properties-parameters-properties-hibernationschedules.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-1-then-properties-parameters-properties-hibernationschedules.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-1-then-properties-parameters-properties-hibernationschedules.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-1-then-properties-parameters-properties-maxnodes.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-1-then-properties-parameters-properties-maxnodes.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-1-then-properties-parameters-properties-maxnodes.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-1-then-properties-parameters-properties-maxnodes.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-1-then-properties-parameters-properties-minnodes.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-1-then-properties-parameters-properties-minnodes.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-1-then-properties-parameters-properties-minnodes.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-1-then-properties-parameters-properties-minnodes.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-1-then-properties-parameters-properties-vpccidr.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-1-then-properties-parameters-properties-vpccidr.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-1-then-properties-parameters-properties-vpccidr.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-1-then-properties-parameters-properties-vpccidr.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-1-then-properties-parameters.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-1-then-properties-parameters.md similarity index 73% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-1-then-properties-parameters.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-1-then-properties-parameters.md index 60b480b9..b8c8ba9c 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-1-then-properties-parameters.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-1-then-properties-parameters.md @@ -1,17 +1,17 @@ ## parameters Type -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-1-then-properties-parameters.md)) +`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-1-then-properties-parameters.md)) # parameters Properties | Property | Type | Required | Nullable | Defined by | | :-------------------------------------------- | :------- | :------- | :------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [adminPassword](#adminpassword) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-1-then-properties-parameters-properties-adminpassword.md "undefined#/properties/services/items/allOf/1/then/allOf/29/then/allOf/1/then/properties/parameters/properties/adminPassword") | -| [adminUsername](#adminusername) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-1-then-properties-parameters-properties-adminusername.md "undefined#/properties/services/items/allOf/1/then/allOf/29/then/allOf/1/then/properties/parameters/properties/adminUsername") | -| [hibernationSchedules](#hibernationschedules) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-1-then-properties-parameters-properties-hibernationschedules.md "undefined#/properties/services/items/allOf/1/then/allOf/29/then/allOf/1/then/properties/parameters/properties/hibernationSchedules") | -| [maxNodes](#maxnodes) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-1-then-properties-parameters-properties-maxnodes.md "undefined#/properties/services/items/allOf/1/then/allOf/29/then/allOf/1/then/properties/parameters/properties/maxNodes") | -| [minNodes](#minnodes) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-1-then-properties-parameters-properties-minnodes.md "undefined#/properties/services/items/allOf/1/then/allOf/29/then/allOf/1/then/properties/parameters/properties/minNodes") | -| [vpcCIDR](#vpccidr) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-1-then-properties-parameters-properties-vpccidr.md "undefined#/properties/services/items/allOf/1/then/allOf/29/then/allOf/1/then/properties/parameters/properties/vpcCIDR") | +| [adminPassword](#adminpassword) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-1-then-properties-parameters-properties-adminpassword.md "undefined#/properties/services/items/allOf/1/then/allOf/30/then/allOf/1/then/properties/parameters/properties/adminPassword") | +| [adminUsername](#adminusername) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-1-then-properties-parameters-properties-adminusername.md "undefined#/properties/services/items/allOf/1/then/allOf/30/then/allOf/1/then/properties/parameters/properties/adminUsername") | +| [hibernationSchedules](#hibernationschedules) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-1-then-properties-parameters-properties-hibernationschedules.md "undefined#/properties/services/items/allOf/1/then/allOf/30/then/allOf/1/then/properties/parameters/properties/hibernationSchedules") | +| [maxNodes](#maxnodes) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-1-then-properties-parameters-properties-maxnodes.md "undefined#/properties/services/items/allOf/1/then/allOf/30/then/allOf/1/then/properties/parameters/properties/maxNodes") | +| [minNodes](#minnodes) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-1-then-properties-parameters-properties-minnodes.md "undefined#/properties/services/items/allOf/1/then/allOf/30/then/allOf/1/then/properties/parameters/properties/minNodes") | +| [vpcCIDR](#vpccidr) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-1-then-properties-parameters-properties-vpccidr.md "undefined#/properties/services/items/allOf/1/then/allOf/30/then/allOf/1/then/properties/parameters/properties/vpcCIDR") | ## adminPassword @@ -25,7 +25,7 @@ Admin password of the new cluster * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-1-then-properties-parameters-properties-adminpassword.md "undefined#/properties/services/items/allOf/1/then/allOf/29/then/allOf/1/then/properties/parameters/properties/adminPassword") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-1-then-properties-parameters-properties-adminpassword.md "undefined#/properties/services/items/allOf/1/then/allOf/30/then/allOf/1/then/properties/parameters/properties/adminPassword") ### adminPassword Type @@ -43,7 +43,7 @@ Admin username of the new cluster * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-1-then-properties-parameters-properties-adminusername.md "undefined#/properties/services/items/allOf/1/then/allOf/29/then/allOf/1/then/properties/parameters/properties/adminUsername") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-1-then-properties-parameters-properties-adminusername.md "undefined#/properties/services/items/allOf/1/then/allOf/30/then/allOf/1/then/properties/parameters/properties/adminUsername") ### adminUsername Type @@ -61,7 +61,7 @@ schedules for hibernation start and wake up * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-1-then-properties-parameters-properties-hibernationschedules.md "undefined#/properties/services/items/allOf/1/then/allOf/29/then/allOf/1/then/properties/parameters/properties/hibernationSchedules") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-1-then-properties-parameters-properties-hibernationschedules.md "undefined#/properties/services/items/allOf/1/then/allOf/30/then/allOf/1/then/properties/parameters/properties/hibernationSchedules") ### hibernationSchedules Type @@ -79,7 +79,7 @@ The maximum number of nodes * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-1-then-properties-parameters-properties-maxnodes.md "undefined#/properties/services/items/allOf/1/then/allOf/29/then/allOf/1/then/properties/parameters/properties/maxNodes") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-1-then-properties-parameters-properties-maxnodes.md "undefined#/properties/services/items/allOf/1/then/allOf/30/then/allOf/1/then/properties/parameters/properties/maxNodes") ### maxNodes Type @@ -97,7 +97,7 @@ The minimum number of nodes * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-1-then-properties-parameters-properties-minnodes.md "undefined#/properties/services/items/allOf/1/then/allOf/29/then/allOf/1/then/properties/parameters/properties/minNodes") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-1-then-properties-parameters-properties-minnodes.md "undefined#/properties/services/items/allOf/1/then/allOf/30/then/allOf/1/then/properties/parameters/properties/minNodes") ### minNodes Type @@ -115,7 +115,7 @@ VPC cidr of the new cluster, defaults to 10.0.0.0/16 if not specified * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-1-then-properties-parameters-properties-vpccidr.md "undefined#/properties/services/items/allOf/1/then/allOf/29/then/allOf/1/then/properties/parameters/properties/vpcCIDR") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-1-then-properties-parameters-properties-vpccidr.md "undefined#/properties/services/items/allOf/1/then/allOf/30/then/allOf/1/then/properties/parameters/properties/vpcCIDR") ### vpcCIDR Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-1-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-1-then.md index ba0d5eb8..3236a39b 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-1-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-1-then.md @@ -4,24 +4,22 @@ unknown # then Properties -| Property | Type | Required | Nullable | Defined by | -| :------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/30/then/allOf/1/then/properties/plan") | +| Property | Type | Required | Nullable | Defined by | +| :------------------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/30/then/allOf/1/then/properties/plan") | +| [parameters](#parameters) | `object` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-1-then-properties-parameters.md "undefined#/properties/services/items/allOf/1/then/allOf/30/then/allOf/1/then/properties/parameters") | ## plan -service plan >free< for >data-privacy-integration-service< is available in data centers: +service plan >enterprise< for >data-intelligence< is available in data centers: * {'region': 'ap10', 'name': 'Australia (Sydney)'} * {'region': 'ap11', 'name': 'Singapore'} -* {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} -* {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} * {'region': 'eu20', 'name': 'Europe (Netherlands)'} +* {'region': 'jp10', 'name': 'Japan (Tokyo)'} * {'region': 'us10', 'name': 'US East (VA)'} * {'region': 'us20', 'name': 'US West (WA)'} -* {'region': 'us21', 'name': 'US East (VA)'} -* {'region': 'us30', 'name': 'US Central (IA)'} `plan` @@ -36,3 +34,21 @@ service plan >free< for >data-privacy-integration-service< is available in data ### plan Type unknown + +## parameters + + + +`parameters` + +* is required + +* Type: `object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-1-then-properties-parameters.md)) + +* cannot be null + +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-1-then-properties-parameters.md "undefined#/properties/services/items/allOf/1/then/allOf/30/then/allOf/1/then/properties/parameters") + +### parameters Type + +`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-1-then-properties-parameters.md)) diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-2-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-2-if-properties-plan.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-2-if-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-2-if-properties-plan.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-34-then-allof-1-if-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-2-if-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-34-then-allof-1-if-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-2-if-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-2-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-2-if.md similarity index 83% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-2-if.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-2-if.md index 02979aa7..c246ca40 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-2-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-2-if.md @@ -6,7 +6,7 @@ unknown | Property | Type | Required | Nullable | Defined by | | :------------ | :------------ | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-2-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/29/then/allOf/2/if/properties/plan") | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-2-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/30/then/allOf/2/if/properties/plan") | ## plan @@ -20,7 +20,7 @@ unknown * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-2-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/29/then/allOf/2/if/properties/plan") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-2-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/30/then/allOf/2/if/properties/plan") ### plan Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-2-then-properties-parameters-properties-adminpassword.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-2-then-properties-parameters-properties-adminpassword.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-2-then-properties-parameters-properties-adminpassword.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-2-then-properties-parameters-properties-adminpassword.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-2-then-properties-parameters-properties-adminusername.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-2-then-properties-parameters-properties-adminusername.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-2-then-properties-parameters-properties-adminusername.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-2-then-properties-parameters-properties-adminusername.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-2-then-properties-parameters-properties-clustername.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-2-then-properties-parameters-properties-clustername.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-2-then-properties-parameters-properties-clustername.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-2-then-properties-parameters-properties-clustername.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-2-then-properties-parameters-properties-resourcequotas-items-properties-limit.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-2-then-properties-parameters-properties-resourcequotas-items-properties-limit.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-2-then-properties-parameters-properties-resourcequotas-items-properties-limit.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-2-then-properties-parameters-properties-resourcequotas-items-properties-limit.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-2-then-properties-parameters-properties-resourcequotas-items-properties-resource.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-2-then-properties-parameters-properties-resourcequotas-items-properties-resource.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-2-then-properties-parameters-properties-resourcequotas-items-properties-resource.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-2-then-properties-parameters-properties-resourcequotas-items-properties-resource.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-2-then-properties-parameters-properties-resourcequotas-items-properties-target.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-2-then-properties-parameters-properties-resourcequotas-items-properties-target.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-2-then-properties-parameters-properties-resourcequotas-items-properties-target.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-2-then-properties-parameters-properties-resourcequotas-items-properties-target.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-2-then-properties-parameters-properties-resourcequotas-items.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-2-then-properties-parameters-properties-resourcequotas-items.md similarity index 77% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-2-then-properties-parameters-properties-resourcequotas-items.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-2-then-properties-parameters-properties-resourcequotas-items.md index b804ed1e..b2b7c8c4 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-2-then-properties-parameters-properties-resourcequotas-items.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-2-then-properties-parameters-properties-resourcequotas-items.md @@ -1,14 +1,14 @@ ## items Type -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-2-then-properties-parameters-properties-resourcequotas-items.md)) +`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-2-then-properties-parameters-properties-resourcequotas-items.md)) # items Properties | Property | Type | Required | Nullable | Defined by | | :-------------------- | :------- | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| [limit](#limit) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-2-then-properties-parameters-properties-resourcequotas-items-properties-limit.md "undefined#/properties/services/items/allOf/1/then/allOf/29/then/allOf/2/then/properties/parameters/properties/resourceQuotas/items/properties/limit") | -| [resource](#resource) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-2-then-properties-parameters-properties-resourcequotas-items-properties-resource.md "undefined#/properties/services/items/allOf/1/then/allOf/29/then/allOf/2/then/properties/parameters/properties/resourceQuotas/items/properties/resource") | -| [target](#target) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-2-then-properties-parameters-properties-resourcequotas-items-properties-target.md "undefined#/properties/services/items/allOf/1/then/allOf/29/then/allOf/2/then/properties/parameters/properties/resourceQuotas/items/properties/target") | +| [limit](#limit) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-2-then-properties-parameters-properties-resourcequotas-items-properties-limit.md "undefined#/properties/services/items/allOf/1/then/allOf/30/then/allOf/2/then/properties/parameters/properties/resourceQuotas/items/properties/limit") | +| [resource](#resource) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-2-then-properties-parameters-properties-resourcequotas-items-properties-resource.md "undefined#/properties/services/items/allOf/1/then/allOf/30/then/allOf/2/then/properties/parameters/properties/resourceQuotas/items/properties/resource") | +| [target](#target) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-2-then-properties-parameters-properties-resourcequotas-items-properties-target.md "undefined#/properties/services/items/allOf/1/then/allOf/30/then/allOf/2/then/properties/parameters/properties/resourceQuotas/items/properties/target") | ## limit @@ -22,7 +22,7 @@ * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-2-then-properties-parameters-properties-resourcequotas-items-properties-limit.md "undefined#/properties/services/items/allOf/1/then/allOf/29/then/allOf/2/then/properties/parameters/properties/resourceQuotas/items/properties/limit") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-2-then-properties-parameters-properties-resourcequotas-items-properties-limit.md "undefined#/properties/services/items/allOf/1/then/allOf/30/then/allOf/2/then/properties/parameters/properties/resourceQuotas/items/properties/limit") ### limit Type @@ -40,7 +40,7 @@ * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-2-then-properties-parameters-properties-resourcequotas-items-properties-resource.md "undefined#/properties/services/items/allOf/1/then/allOf/29/then/allOf/2/then/properties/parameters/properties/resourceQuotas/items/properties/resource") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-2-then-properties-parameters-properties-resourcequotas-items-properties-resource.md "undefined#/properties/services/items/allOf/1/then/allOf/30/then/allOf/2/then/properties/parameters/properties/resourceQuotas/items/properties/resource") ### resource Type @@ -58,7 +58,7 @@ * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-2-then-properties-parameters-properties-resourcequotas-items-properties-target.md "undefined#/properties/services/items/allOf/1/then/allOf/29/then/allOf/2/then/properties/parameters/properties/resourceQuotas/items/properties/target") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-2-then-properties-parameters-properties-resourcequotas-items-properties-target.md "undefined#/properties/services/items/allOf/1/then/allOf/30/then/allOf/2/then/properties/parameters/properties/resourceQuotas/items/properties/target") ### target Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-2-then-properties-parameters-properties-resourcequotas.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-2-then-properties-parameters-properties-resourcequotas.md similarity index 65% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-2-then-properties-parameters-properties-resourcequotas.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-2-then-properties-parameters-properties-resourcequotas.md index 50941dbe..9704d83c 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-2-then-properties-parameters-properties-resourcequotas.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-2-then-properties-parameters-properties-resourcequotas.md @@ -1,3 +1,3 @@ ## resourceQuotas Type -`object[]` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-2-then-properties-parameters-properties-resourcequotas-items.md)) +`object[]` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-2-then-properties-parameters-properties-resourcequotas-items.md)) diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-2-then-properties-parameters-properties-tenantname.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-2-then-properties-parameters-properties-tenantname.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-2-then-properties-parameters-properties-tenantname.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-2-then-properties-parameters-properties-tenantname.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-2-then-properties-parameters.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-2-then-properties-parameters.md similarity index 73% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-2-then-properties-parameters.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-2-then-properties-parameters.md index c57d1feb..53c8a12f 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-2-then-properties-parameters.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-2-then-properties-parameters.md @@ -1,16 +1,16 @@ ## parameters Type -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-2-then-properties-parameters.md)) +`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-2-then-properties-parameters.md)) # parameters Properties | Property | Type | Required | Nullable | Defined by | | :-------------------------------- | :------- | :------- | :------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [adminPassword](#adminpassword) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-2-then-properties-parameters-properties-adminpassword.md "undefined#/properties/services/items/allOf/1/then/allOf/29/then/allOf/2/then/properties/parameters/properties/adminPassword") | -| [adminUsername](#adminusername) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-2-then-properties-parameters-properties-adminusername.md "undefined#/properties/services/items/allOf/1/then/allOf/29/then/allOf/2/then/properties/parameters/properties/adminUsername") | -| [clusterName](#clustername) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-2-then-properties-parameters-properties-clustername.md "undefined#/properties/services/items/allOf/1/then/allOf/29/then/allOf/2/then/properties/parameters/properties/clusterName") | -| [resourceQuotas](#resourcequotas) | `array` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-2-then-properties-parameters-properties-resourcequotas.md "undefined#/properties/services/items/allOf/1/then/allOf/29/then/allOf/2/then/properties/parameters/properties/resourceQuotas") | -| [tenantName](#tenantname) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-2-then-properties-parameters-properties-tenantname.md "undefined#/properties/services/items/allOf/1/then/allOf/29/then/allOf/2/then/properties/parameters/properties/tenantName") | +| [adminPassword](#adminpassword) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-2-then-properties-parameters-properties-adminpassword.md "undefined#/properties/services/items/allOf/1/then/allOf/30/then/allOf/2/then/properties/parameters/properties/adminPassword") | +| [adminUsername](#adminusername) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-2-then-properties-parameters-properties-adminusername.md "undefined#/properties/services/items/allOf/1/then/allOf/30/then/allOf/2/then/properties/parameters/properties/adminUsername") | +| [clusterName](#clustername) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-2-then-properties-parameters-properties-clustername.md "undefined#/properties/services/items/allOf/1/then/allOf/30/then/allOf/2/then/properties/parameters/properties/clusterName") | +| [resourceQuotas](#resourcequotas) | `array` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-2-then-properties-parameters-properties-resourcequotas.md "undefined#/properties/services/items/allOf/1/then/allOf/30/then/allOf/2/then/properties/parameters/properties/resourceQuotas") | +| [tenantName](#tenantname) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-2-then-properties-parameters-properties-tenantname.md "undefined#/properties/services/items/allOf/1/then/allOf/30/then/allOf/2/then/properties/parameters/properties/tenantName") | ## adminPassword @@ -24,7 +24,7 @@ Admin password of the new tenant * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-2-then-properties-parameters-properties-adminpassword.md "undefined#/properties/services/items/allOf/1/then/allOf/29/then/allOf/2/then/properties/parameters/properties/adminPassword") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-2-then-properties-parameters-properties-adminpassword.md "undefined#/properties/services/items/allOf/1/then/allOf/30/then/allOf/2/then/properties/parameters/properties/adminPassword") ### adminPassword Type @@ -42,7 +42,7 @@ Admin username of the new tenant * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-2-then-properties-parameters-properties-adminusername.md "undefined#/properties/services/items/allOf/1/then/allOf/29/then/allOf/2/then/properties/parameters/properties/adminUsername") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-2-then-properties-parameters-properties-adminusername.md "undefined#/properties/services/items/allOf/1/then/allOf/30/then/allOf/2/then/properties/parameters/properties/adminUsername") ### adminUsername Type @@ -60,7 +60,7 @@ Name of the existing cluster where the new tenant will be created * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-2-then-properties-parameters-properties-clustername.md "undefined#/properties/services/items/allOf/1/then/allOf/29/then/allOf/2/then/properties/parameters/properties/clusterName") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-2-then-properties-parameters-properties-clustername.md "undefined#/properties/services/items/allOf/1/then/allOf/30/then/allOf/2/then/properties/parameters/properties/clusterName") ### clusterName Type @@ -74,15 +74,15 @@ resource quotas for the new tenant * is optional -* Type: `object[]` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-2-then-properties-parameters-properties-resourcequotas-items.md)) +* Type: `object[]` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-2-then-properties-parameters-properties-resourcequotas-items.md)) * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-2-then-properties-parameters-properties-resourcequotas.md "undefined#/properties/services/items/allOf/1/then/allOf/29/then/allOf/2/then/properties/parameters/properties/resourceQuotas") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-2-then-properties-parameters-properties-resourcequotas.md "undefined#/properties/services/items/allOf/1/then/allOf/30/then/allOf/2/then/properties/parameters/properties/resourceQuotas") ### resourceQuotas Type -`object[]` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-2-then-properties-parameters-properties-resourcequotas-items.md)) +`object[]` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-2-then-properties-parameters-properties-resourcequotas-items.md)) ## tenantName @@ -96,7 +96,7 @@ Name of the new tenant * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-2-then-properties-parameters-properties-tenantname.md "undefined#/properties/services/items/allOf/1/then/allOf/29/then/allOf/2/then/properties/parameters/properties/tenantName") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-2-then-properties-parameters-properties-tenantname.md "undefined#/properties/services/items/allOf/1/then/allOf/30/then/allOf/2/then/properties/parameters/properties/tenantName") ### tenantName Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-2-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-2-then-properties-plan.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-2-then-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-2-then-properties-plan.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-34-then-allof-1-then-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-2-then-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-34-then-allof-1-then-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-2-then-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-2-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-2-then.md similarity index 76% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-2-then.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-2-then.md index 8effb8ff..8217537f 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-2-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-2-then.md @@ -6,8 +6,8 @@ unknown | Property | Type | Required | Nullable | Defined by | | :------------------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-2-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/29/then/allOf/2/then/properties/plan") | -| [parameters](#parameters) | `object` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-2-then-properties-parameters.md "undefined#/properties/services/items/allOf/1/then/allOf/29/then/allOf/2/then/properties/parameters") | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-2-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/30/then/allOf/2/then/properties/plan") | +| [parameters](#parameters) | `object` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-2-then-properties-parameters.md "undefined#/properties/services/items/allOf/1/then/allOf/30/then/allOf/2/then/properties/parameters") | ## plan @@ -29,7 +29,7 @@ service plan >tenant< for >data-intelligence< is available in data centers: * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-2-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/29/then/allOf/2/then/properties/plan") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-2-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/30/then/allOf/2/then/properties/plan") ### plan Type @@ -43,12 +43,12 @@ unknown * is required -* Type: `object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-2-then-properties-parameters.md)) +* Type: `object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-2-then-properties-parameters.md)) * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-2-then-properties-parameters.md "undefined#/properties/services/items/allOf/1/then/allOf/29/then/allOf/2/then/properties/parameters") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-2-then-properties-parameters.md "undefined#/properties/services/items/allOf/1/then/allOf/30/then/allOf/2/then/properties/parameters") ### parameters Type -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-2-then-properties-parameters.md)) +`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-2-then-properties-parameters.md)) diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-2.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-2.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-29-then-allof-2.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-2.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-properties-plan.md index d3bb47c6..44cca94e 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-properties-plan.md @@ -6,7 +6,8 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :-------------- | :---------- | -| `"application"` | | -| `"free"` | | +| Value | Explanation | +| :------------- | :---------- | +| `"dedicated"` | | +| `"enterprise"` | | +| `"tenant"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-30-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-30-then.md index 7a187937..d13d86b9 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-30-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-30-then.md @@ -8,6 +8,8 @@ all of * [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-1.md "check type definition") +* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-30-then-allof-2.md "check type definition") + # then Properties | Property | Type | Required | Nullable | Defined by | @@ -37,14 +39,15 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :-------------- | :---------- | -| `"application"` | | -| `"free"` | | +| Value | Explanation | +| :------------- | :---------- | +| `"dedicated"` | | +| `"enterprise"` | | +| `"tenant"` | | ## name -SAP Data Privacy Integration: SAP Data Privacy Integration service supports applications realize their data privacy functions i.e Business Purpose Management ( Ensure Data is processed in a compliant manner based on valid Business Purpose ), Data Deletion and Retrieval of personal data. Applications that are part of an end to end business process can integrate with DPI to provide a centralized management of data privacy. +SAP Data Intelligence Cloud: SAP Data Intelligence allows data scientists and IT teams to collaboratively design, deploy, and manage machine-learning models with built-in tools for data governance, management, and transparency. It delivers intelligent and trustworthy insights to the right users, with the right context, and at the right time, while processing data across your distributed landscape. In addition, it connects data silos and increases visibility into global assets by processing data with a multicloud approach that is agnostic from the technology infrastructure provider, containerized, and based on open-source technologies. `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-31-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-31-if-properties-name.md index ca2672d5..cfa543d5 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-31-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-31-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"dataenrichment-business-partner" +"data-privacy-integration-service" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-31-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-31-if.md index ffb5a908..2ac668cf 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-31-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-31-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"dataenrichment-business-partner" +"data-privacy-integration-service" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-31-then-allof-0-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-31-then-allof-0-if-properties-plan.md index 4f94ce99..9ae791c7 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-31-then-allof-0-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-31-then-allof-0-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"default" +"application" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-31-then-allof-0-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-31-then-allof-0-if.md index 68b7f3f0..d474a275 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-31-then-allof-0-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-31-then-allof-0-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"default" +"application" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-31-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-31-then-allof-0-then.md index 0d1bd052..849d3da9 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-31-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-31-then-allof-0-then.md @@ -10,11 +10,18 @@ unknown ## plan -service plan >default< for >dataenrichment-business-partner< is available in data centers: +service plan >application< for >data-privacy-integration-service< is available in data centers: +* {'region': 'ap10', 'name': 'Australia (Sydney)'} * {'region': 'ap11', 'name': 'Singapore'} +* {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} +* {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} +* {'region': 'eu20', 'name': 'Europe (Netherlands)'} * {'region': 'us10', 'name': 'US East (VA)'} +* {'region': 'us20', 'name': 'US West (WA)'} +* {'region': 'us21', 'name': 'US East (VA)'} +* {'region': 'us30', 'name': 'US Central (IA)'} `plan` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-58-then-allof-1-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-31-then-allof-1-if-properties-plan.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-58-then-allof-1-if-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-31-then-allof-1-if-properties-plan.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-1-if-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-31-then-allof-1-if-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-1-if-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-31-then-allof-1-if-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-58-then-allof-1-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-31-then-allof-1-if.md similarity index 83% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-58-then-allof-1-if.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-31-then-allof-1-if.md index 91207836..97a92b12 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-58-then-allof-1-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-31-then-allof-1-if.md @@ -6,7 +6,7 @@ unknown | Property | Type | Required | Nullable | Defined by | | :------------ | :------------ | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-58-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/58/then/allOf/1/if/properties/plan") | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-31-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/31/then/allOf/1/if/properties/plan") | ## plan @@ -20,7 +20,7 @@ unknown * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-58-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/58/then/allOf/1/if/properties/plan") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-31-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/31/then/allOf/1/if/properties/plan") ### plan Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-34-then-allof-1-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-31-then-allof-1-then-properties-plan.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-34-then-allof-1-then-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-31-then-allof-1-then-properties-plan.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-1-then-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-31-then-allof-1-then-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-1-then-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-31-then-allof-1-then-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-31-then-allof-1-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-31-then-allof-1-then.md new file mode 100644 index 00000000..164bfc71 --- /dev/null +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-31-then-allof-1-then.md @@ -0,0 +1,38 @@ +## then Type + +unknown + +# then Properties + +| Property | Type | Required | Nullable | Defined by | +| :------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-31-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/31/then/allOf/1/then/properties/plan") | + +## plan + +service plan >free< for >data-privacy-integration-service< is available in data centers: + +* {'region': 'ap10', 'name': 'Australia (Sydney)'} +* {'region': 'ap11', 'name': 'Singapore'} +* {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} +* {'region': 'eu10', 'name': 'Europe (Frankfurt)'} +* {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} +* {'region': 'eu20', 'name': 'Europe (Netherlands)'} +* {'region': 'us10', 'name': 'US East (VA)'} +* {'region': 'us20', 'name': 'US West (WA)'} +* {'region': 'us21', 'name': 'US East (VA)'} +* {'region': 'us30', 'name': 'US Central (IA)'} + +`plan` + +* is optional + +* Type: unknown + +* cannot be null + +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-31-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/31/then/allOf/1/then/properties/plan") + +### plan Type + +unknown diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-26-then-allof-1.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-31-then-allof-1.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-26-then-allof-1.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-31-then-allof-1.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-31-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-31-then-properties-plan.md index 916e7975..d3bb47c6 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-31-then-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-31-then-properties-plan.md @@ -6,6 +6,7 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :---------- | :---------- | -| `"default"` | | +| Value | Explanation | +| :-------------- | :---------- | +| `"application"` | | +| `"free"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-31-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-31-then.md index d576110f..a5c6c534 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-31-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-31-then.md @@ -6,6 +6,8 @@ all of * [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-31-then-allof-0.md "check type definition") +* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-31-then-allof-1.md "check type definition") + # then Properties | Property | Type | Required | Nullable | Defined by | @@ -35,13 +37,14 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :---------- | :---------- | -| `"default"` | | +| Value | Explanation | +| :-------------- | :---------- | +| `"application"` | | +| `"free"` | | ## name -Data Enrichment: Industrializes the use of third-party data for enterprise applications, and makes it economical to find, procure and consume relevant datasets in timely fashion. Offers pre-built integrations with SAP S/4HANA Cloud and on-premise, and SAP Master Data Governance. Centrally links data from external data providers such as Dun & Bradstreet and CDQ into SAP enterprise applications, reducing overall TCO for data brokerage needs. Data Enrichment will be a one stop shop for multiple data augmentation needs. +SAP Data Privacy Integration: SAP Data Privacy Integration service supports applications realize their data privacy functions i.e Business Purpose Management ( Ensure Data is processed in a compliant manner based on valid Business Purpose ), Data Deletion and Retrieval of personal data. Applications that are part of an end to end business process can integrate with DPI to provide a centralized management of data privacy. `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-32-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-32-if-properties-name.md index be6949ba..ca2672d5 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-32-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-32-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"dateandtime" +"dataenrichment-business-partner" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-32-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-32-if.md index 6dc33f98..a569a064 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-32-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-32-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"dateandtime" +"dataenrichment-business-partner" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-32-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-32-then-allof-0-then.md index 154adcf3..cb947916 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-32-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-32-then-allof-0-then.md @@ -10,8 +10,9 @@ unknown ## plan -service plan >default< for >dateandtime< is available in data centers: +service plan >default< for >dataenrichment-business-partner< is available in data centers: +* {'region': 'ap11', 'name': 'Singapore'} * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} * {'region': 'us10', 'name': 'US East (VA)'} diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-32-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-32-then.md index ce693762..5b115c0d 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-32-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-32-then.md @@ -41,7 +41,7 @@ unknown ## name -Date and Time: Get default date format for a given country, timezone details and time difference between two provided time values. +Data Enrichment: Industrializes the use of third-party data for enterprise applications, and makes it economical to find, procure and consume relevant datasets in timely fashion. Offers pre-built integrations with SAP S/4HANA Cloud and on-premise, and SAP Master Data Governance. Centrally links data from external data providers such as Dun & Bradstreet and CDQ into SAP enterprise applications, reducing overall TCO for data brokerage needs. Data Enrichment will be a one stop shop for multiple data augmentation needs. `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-33-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-33-if-properties-name.md index e9bd2ecb..be6949ba 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-33-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-33-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"destination" +"dateandtime" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-33-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-33-if.md index 0da13dc9..86e4051c 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-33-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-33-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"destination" +"dateandtime" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-33-then-allof-0-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-33-then-allof-0-if-properties-plan.md index f74c2390..4f94ce99 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-33-then-allof-0-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-33-then-allof-0-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"lite" +"default" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-33-then-allof-0-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-33-then-allof-0-if.md index 19e9af5b..c47e2c72 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-33-then-allof-0-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-33-then-allof-0-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"lite" +"default" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-33-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-33-then-allof-0-then.md index 7492def3..d0fe7abd 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-33-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-33-then-allof-0-then.md @@ -10,27 +10,10 @@ unknown ## plan -service plan >lite< for >destination< is available in data centers: - -* {'region': 'ap10', 'name': 'Australia (Sydney)'} -* {'region': 'ap11', 'name': 'Singapore'} -* {'region': 'ap12', 'name': 'South Korea (Seoul)'} -* {'region': 'ap20', 'name': 'Australia (Sydney) Azure'} -* {'region': 'ap21', 'name': 'Singapore'} -* {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} -* {'region': 'ca10', 'name': 'Canada (Montreal)'} -* {'region': 'ch20', 'name': 'cf-ch20'} +service plan >default< for >dateandtime< is available in data centers: + * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} -* {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} -* {'region': 'eu20', 'name': 'Europe (Netherlands)'} -* {'region': 'eu30', 'name': 'Europe (Frankfurt)'} -* {'region': 'in30', 'name': 'India (Mumbai)'} -* {'region': 'jp10', 'name': 'Japan (Tokyo)'} -* {'region': 'jp20', 'name': 'Japan (Tokyo)'} * {'region': 'us10', 'name': 'US East (VA)'} -* {'region': 'us20', 'name': 'US West (WA)'} -* {'region': 'us21', 'name': 'US East (VA)'} -* {'region': 'us30', 'name': 'US Central (IA)'} `plan` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-33-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-33-then-properties-plan.md index 3cac1ec6..916e7975 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-33-then-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-33-then-properties-plan.md @@ -6,6 +6,6 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :------- | :---------- | -| `"lite"` | | +| Value | Explanation | +| :---------- | :---------- | +| `"default"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-33-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-33-then.md index 2877577e..bf794419 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-33-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-33-then.md @@ -35,13 +35,13 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :------- | :---------- | -| `"lite"` | | +| Value | Explanation | +| :---------- | :---------- | +| `"default"` | | ## name -SAP Destination service: The Destination service lets you retrieve the backend destination details you need to configure applications in the Cloud Foundry environment. +Date and Time: Get default date format for a given country, timezone details and time difference between two provided time values. `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-34-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-34-if-properties-name.md index 66b297ed..e9bd2ecb 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-34-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-34-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"document-classification" +"destination" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-34-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-34-if.md index 1e12fcb5..8467bc28 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-34-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-34-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"document-classification" +"destination" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-34-then-allof-0-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-34-then-allof-0-if-properties-plan.md index 9264f7d4..f74c2390 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-34-then-allof-0-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-34-then-allof-0-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"blocks_of_100" +"lite" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-34-then-allof-0-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-34-then-allof-0-if.md index c030793b..14cca7be 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-34-then-allof-0-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-34-then-allof-0-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"blocks_of_100" +"lite" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-34-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-34-then-allof-0-then.md index 1080391d..7ce5a8ad 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-34-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-34-then-allof-0-then.md @@ -10,9 +10,27 @@ unknown ## plan -service plan >blocks\_of\_100< for >document-classification< is available in data centers: - +service plan >lite< for >destination< is available in data centers: + +* {'region': 'ap10', 'name': 'Australia (Sydney)'} +* {'region': 'ap11', 'name': 'Singapore'} +* {'region': 'ap12', 'name': 'South Korea (Seoul)'} +* {'region': 'ap20', 'name': 'Australia (Sydney) Azure'} +* {'region': 'ap21', 'name': 'Singapore'} +* {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} +* {'region': 'ca10', 'name': 'Canada (Montreal)'} +* {'region': 'ch20', 'name': 'cf-ch20'} * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} +* {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} +* {'region': 'eu20', 'name': 'Europe (Netherlands)'} +* {'region': 'eu30', 'name': 'Europe (Frankfurt)'} +* {'region': 'in30', 'name': 'India (Mumbai)'} +* {'region': 'jp10', 'name': 'Japan (Tokyo)'} +* {'region': 'jp20', 'name': 'Japan (Tokyo)'} +* {'region': 'us10', 'name': 'US East (VA)'} +* {'region': 'us20', 'name': 'US West (WA)'} +* {'region': 'us21', 'name': 'US East (VA)'} +* {'region': 'us30', 'name': 'US Central (IA)'} `plan` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-34-then-allof-1-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-34-then-allof-1-if.md deleted file mode 100644 index 59424198..00000000 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-34-then-allof-1-if.md +++ /dev/null @@ -1,35 +0,0 @@ -## if Type - -unknown - -# if Properties - -| Property | Type | Required | Nullable | Defined by | -| :------------ | :------------ | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-34-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/34/then/allOf/1/if/properties/plan") | - -## plan - - - -`plan` - -* is optional - -* Type: unknown - -* cannot be null - -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-34-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/34/then/allOf/1/if/properties/plan") - -### plan Type - -unknown - -### plan Constraints - -**constant**: the value of this property must be equal to: - -```json -"default" -``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-34-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-34-then-properties-plan.md index fd1c6fee..3cac1ec6 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-34-then-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-34-then-properties-plan.md @@ -6,7 +6,6 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :---------------- | :---------- | -| `"blocks_of_100"` | | -| `"default"` | | +| Value | Explanation | +| :------- | :---------- | +| `"lite"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-34-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-34-then.md index cb8f1537..3daf9226 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-34-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-34-then.md @@ -6,8 +6,6 @@ all of * [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-34-then-allof-0.md "check type definition") -* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-34-then-allof-1.md "check type definition") - # then Properties | Property | Type | Required | Nullable | Defined by | @@ -37,14 +35,13 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :---------------- | :---------- | -| `"blocks_of_100"` | | -| `"default"` | | +| Value | Explanation | +| :------- | :---------- | +| `"lite"` | | ## name -Document Classification: Document Classification helps you to automate the management and processing of large amounts of business documents by applying machine learning. Based on customer specific classification models, Document Classification can be utilized in a wide range of business scenarios and adapted to special requirements. Document Classification is targeting organizations and business units struggling with the fast, economic, high quality and efficient processing of documents used in critical business processes like Enterprise Mail-Inbox Processing, Contract Management or Invoice Processing. +SAP Destination service: The Destination service lets you retrieve the backend destination details you need to configure applications in the Cloud Foundry environment. `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-35-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-35-if-properties-name.md index 1c4f0599..66b297ed 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-35-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-35-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"document-translation" +"document-classification" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-35-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-35-if.md index de632868..60be6a01 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-35-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-35-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"document-translation" +"document-classification" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-35-then-allof-0-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-35-then-allof-0-if-properties-plan.md index 4f94ce99..9264f7d4 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-35-then-allof-0-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-35-then-allof-0-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"default" +"blocks_of_100" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-35-then-allof-0-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-35-then-allof-0-if.md index 6371b1dc..0cd4ed80 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-35-then-allof-0-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-35-then-allof-0-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"default" +"blocks_of_100" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-35-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-35-then-allof-0-then.md index 3c02dc5b..e856454d 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-35-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-35-then-allof-0-then.md @@ -10,10 +10,9 @@ unknown ## plan -service plan >default< for >document-translation< is available in data centers: +service plan >blocks\_of\_100< for >document-classification< is available in data centers: * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} -* {'region': 'us10', 'name': 'US East (VA)'} `plan` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-35-then-allof-1-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-35-then-allof-1-if-properties-plan.md index c97f5143..4f94ce99 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-35-then-allof-1-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-35-then-allof-1-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"free" +"default" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-35-then-allof-1-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-35-then-allof-1-if.md index cf69e583..4d1b33f8 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-35-then-allof-1-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-35-then-allof-1-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"free" +"default" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-35-then-allof-1-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-35-then-allof-1-then.md index 6537760a..42fd01f6 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-35-then-allof-1-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-35-then-allof-1-then.md @@ -10,10 +10,9 @@ unknown ## plan -service plan >free< for >document-translation< is available in data centers: +service plan >default< for >document-classification< is available in data centers: * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} -* {'region': 'us10', 'name': 'US East (VA)'} `plan` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-35-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-35-then-properties-plan.md index 5c4db72d..fd1c6fee 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-35-then-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-35-then-properties-plan.md @@ -6,7 +6,7 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :---------- | :---------- | -| `"default"` | | -| `"free"` | | +| Value | Explanation | +| :---------------- | :---------- | +| `"blocks_of_100"` | | +| `"default"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-35-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-35-then.md index b20f6b36..707da972 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-35-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-35-then.md @@ -37,14 +37,14 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :---------- | :---------- | -| `"default"` | | -| `"free"` | | +| Value | Explanation | +| :---------------- | :---------- | +| `"blocks_of_100"` | | +| `"default"` | | ## name -Document Translation: Provides an API that allows you to translate documents of various formats into multiple languages. +Document Classification: Document Classification helps you to automate the management and processing of large amounts of business documents by applying machine learning. Based on customer specific classification models, Document Classification can be utilized in a wide range of business scenarios and adapted to special requirements. Document Classification is targeting organizations and business units struggling with the fast, economic, high quality and efficient processing of documents used in critical business processes like Enterprise Mail-Inbox Processing, Contract Management or Invoice Processing. `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-36-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-36-if-properties-name.md index ce9be3ab..1c4f0599 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-36-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-36-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"dq-services" +"document-translation" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-36-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-36-if.md index 6e0857ce..3e236a38 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-36-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-36-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"dq-services" +"document-translation" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-36-then-allof-0-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-36-then-allof-0-if-properties-plan.md index c97f5143..4f94ce99 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-36-then-allof-0-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-36-then-allof-0-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"free" +"default" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-36-then-allof-0-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-36-then-allof-0-if.md index 6f9e6cd2..faa22aae 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-36-then-allof-0-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-36-then-allof-0-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"free" +"default" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-36-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-36-then-allof-0-then.md index acf4b9fa..9b962443 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-36-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-36-then-allof-0-then.md @@ -10,9 +10,10 @@ unknown ## plan -service plan >free< for >dq-services< is available in data centers: +service plan >default< for >document-translation< is available in data centers: * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} +* {'region': 'us10', 'name': 'US East (VA)'} `plan` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-36-then-allof-1-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-36-then-allof-1-if-properties-plan.md index 126392b1..c97f5143 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-36-then-allof-1-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-36-then-allof-1-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"standard" +"free" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-36-then-allof-1-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-36-then-allof-1-if.md index 8fa81c1d..18e9b201 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-36-then-allof-1-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-36-then-allof-1-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"standard" +"free" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-36-then-allof-1-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-36-then-allof-1-then.md index 0477da1c..ea851059 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-36-then-allof-1-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-36-then-allof-1-then.md @@ -10,9 +10,10 @@ unknown ## plan -service plan >standard< for >dq-services< is available in data centers: +service plan >free< for >document-translation< is available in data centers: * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} +* {'region': 'us10', 'name': 'US East (VA)'} `plan` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-36-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-36-then-properties-plan.md index 49c8bb8c..5c4db72d 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-36-then-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-36-then-properties-plan.md @@ -6,7 +6,7 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :----------- | :---------- | -| `"free"` | | -| `"standard"` | | +| Value | Explanation | +| :---------- | :---------- | +| `"default"` | | +| `"free"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-36-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-36-then.md index 7740fe80..68d44247 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-36-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-36-then.md @@ -37,14 +37,14 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :----------- | :---------- | -| `"free"` | | -| `"standard"` | | +| Value | Explanation | +| :---------- | :---------- | +| `"default"` | | +| `"free"` | | ## name -data quality service: SAP Data Quality Management offers cloud-based services that let you embed address cleansing, geocoding, and reverse geocoding within any business process orapplication,so that you can reap the value of complete and accurate address data. +Document Translation: Provides an API that allows you to translate documents of various formats into multiple languages. `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-37-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-37-if-properties-name.md index 492f3727..ce9be3ab 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-37-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-37-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"enterprise-messaging" +"dq-services" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-37-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-37-if.md index cc76dea9..bd257254 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-37-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-37-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"enterprise-messaging" +"dq-services" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-if-properties-plan.md index 4f94ce99..c97f5143 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"default" +"free" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-if.md index ef76e944..4ba05f73 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"default" +"free" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then.md index 188fe5f3..8e54a1ed 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then.md @@ -4,34 +4,15 @@ unknown # then Properties -| Property | Type | Required | Nullable | Defined by | -| :------------------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/37/then/allOf/0/then/properties/plan") | -| [parameters](#parameters) | `object` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters.md "undefined#/properties/services/items/allOf/1/then/allOf/37/then/allOf/0/then/properties/parameters") | +| Property | Type | Required | Nullable | Defined by | +| :------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/37/then/allOf/0/then/properties/plan") | ## plan -service plan >default< for >enterprise-messaging< is available in data centers: +service plan >free< for >dq-services< is available in data centers: -* {'region': 'ap10', 'name': 'Australia (Sydney)'} -* {'region': 'ap11', 'name': 'Singapore'} -* {'region': 'ap12', 'name': 'South Korea (Seoul)'} -* {'region': 'ap20', 'name': 'Australia (Sydney) Azure'} -* {'region': 'ap21', 'name': 'Singapore'} -* {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} -* {'region': 'ca10', 'name': 'Canada (Montreal)'} -* {'region': 'ch20', 'name': 'cf-ch20'} * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} -* {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} -* {'region': 'eu20', 'name': 'Europe (Netherlands)'} -* {'region': 'eu30', 'name': 'Europe (Frankfurt)'} -* {'region': 'in30', 'name': 'India (Mumbai)'} -* {'region': 'jp10', 'name': 'Japan (Tokyo)'} -* {'region': 'jp20', 'name': 'Japan (Tokyo)'} -* {'region': 'us10', 'name': 'US East (VA)'} -* {'region': 'us20', 'name': 'US West (WA)'} -* {'region': 'us21', 'name': 'US East (VA)'} -* {'region': 'us30', 'name': 'US Central (IA)'} `plan` @@ -46,21 +27,3 @@ service plan >default< for >enterprise-messaging< is available in data centers: ### plan Type unknown - -## parameters - - - -`parameters` - -* is required - -* Type: `object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters.md)) - -* cannot be null - -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters.md "undefined#/properties/services/items/allOf/1/then/allOf/37/then/allOf/0/then/properties/parameters") - -### parameters Type - -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters.md)) diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-1-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-1-if-properties-plan.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-1-if-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-1-if-properties-plan.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-39-then-allof-2-if-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-1-if-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-39-then-allof-2-if-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-1-if-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-1-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-1-if.md similarity index 83% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-1-if.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-1-if.md index 960a5736..f7ff268f 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-1-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-1-if.md @@ -6,7 +6,7 @@ unknown | Property | Type | Required | Nullable | Defined by | | :------------ | :------------ | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/38/then/allOf/1/if/properties/plan") | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/37/then/allOf/1/if/properties/plan") | ## plan @@ -20,7 +20,7 @@ unknown * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/38/then/allOf/1/if/properties/plan") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/37/then/allOf/1/if/properties/plan") ### plan Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-1-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-1-then-properties-plan.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-1-then-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-1-then-properties-plan.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-39-then-allof-2-then-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-1-then-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-39-then-allof-2-then-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-1-then-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-34-then-allof-1-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-1-then.md similarity index 77% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-34-then-allof-1-then.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-1-then.md index f4c021a4..88874d95 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-34-then-allof-1-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-1-then.md @@ -6,11 +6,11 @@ unknown | Property | Type | Required | Nullable | Defined by | | :------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-34-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/34/then/allOf/1/then/properties/plan") | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/37/then/allOf/1/then/properties/plan") | ## plan -service plan >default< for >document-classification< is available in data centers: +service plan >standard< for >dq-services< is available in data centers: * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} @@ -22,7 +22,7 @@ service plan >default< for >document-classification< is available in data center * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-34-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/34/then/allOf/1/then/properties/plan") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/37/then/allOf/1/then/properties/plan") ### plan Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-34-then-allof-1.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-1.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-34-then-allof-1.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-1.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-properties-plan.md index 916e7975..49c8bb8c 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-properties-plan.md @@ -6,6 +6,7 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :---------- | :---------- | -| `"default"` | | +| Value | Explanation | +| :----------- | :---------- | +| `"free"` | | +| `"standard"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-37-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-37-then.md index ade55c03..12fdbc8f 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-37-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-37-then.md @@ -6,6 +6,8 @@ all of * [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0.md "check type definition") +* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-1.md "check type definition") + # then Properties | Property | Type | Required | Nullable | Defined by | @@ -35,13 +37,14 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :---------- | :---------- | -| `"default"` | | +| Value | Explanation | +| :----------- | :---------- | +| `"free"` | | +| `"standard"` | | ## name -SAP Event Mesh: The SAP Event Mesh service decouples communication and allows for event-driven business processes. +data quality service: SAP Data Quality Management offers cloud-based services that let you embed address cleansing, geocoding, and reverse geocoding within any business process orapplication,so that you can reap the value of complete and accurate address data. `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-38-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-38-if-properties-name.md index 68d3cb0c..492f3727 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-38-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-38-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"feature-flags" +"enterprise-messaging" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-38-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-38-if.md index 72e9141c..7a7c7d04 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-38-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-38-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"feature-flags" +"enterprise-messaging" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-if-properties-plan.md index f74c2390..4f94ce99 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"lite" +"default" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-if.md index c88b1019..2042f2df 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"lite" +"default" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-emname.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-emname.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-emname.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-emname.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-namespace.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-namespace.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-namespace.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-namespace.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-options-properties-management.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-options-properties-management.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-options-properties-management.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-options-properties-management.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-options-properties-messaging.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-options-properties-messaging.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-options-properties-messaging.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-options-properties-messaging.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-options-properties-messagingrest.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-options-properties-messagingrest.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-options-properties-messagingrest.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-options-properties-messagingrest.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-options.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-options.md similarity index 77% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-options.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-options.md index f7fc1738..68274906 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-options.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-options.md @@ -1,14 +1,14 @@ ## options Type -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-options.md)) +`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-options.md)) # options Properties | Property | Type | Required | Nullable | Defined by | | :------------------------------ | :-------- | :------- | :------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [management](#management) | `boolean` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-options-properties-management.md "undefined#/properties/services/items/allOf/1/then/allOf/37/then/allOf/0/then/properties/parameters/properties/options/properties/management") | -| [messaging](#messaging) | `boolean` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-options-properties-messaging.md "undefined#/properties/services/items/allOf/1/then/allOf/37/then/allOf/0/then/properties/parameters/properties/options/properties/messaging") | -| [messagingrest](#messagingrest) | `boolean` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-options-properties-messagingrest.md "undefined#/properties/services/items/allOf/1/then/allOf/37/then/allOf/0/then/properties/parameters/properties/options/properties/messagingrest") | +| [management](#management) | `boolean` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-options-properties-management.md "undefined#/properties/services/items/allOf/1/then/allOf/38/then/allOf/0/then/properties/parameters/properties/options/properties/management") | +| [messaging](#messaging) | `boolean` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-options-properties-messaging.md "undefined#/properties/services/items/allOf/1/then/allOf/38/then/allOf/0/then/properties/parameters/properties/options/properties/messaging") | +| [messagingrest](#messagingrest) | `boolean` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-options-properties-messagingrest.md "undefined#/properties/services/items/allOf/1/then/allOf/38/then/allOf/0/then/properties/parameters/properties/options/properties/messagingrest") | ## management @@ -22,7 +22,7 @@ * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-options-properties-management.md "undefined#/properties/services/items/allOf/1/then/allOf/37/then/allOf/0/then/properties/parameters/properties/options/properties/management") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-options-properties-management.md "undefined#/properties/services/items/allOf/1/then/allOf/38/then/allOf/0/then/properties/parameters/properties/options/properties/management") ### management Type @@ -40,7 +40,7 @@ * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-options-properties-messaging.md "undefined#/properties/services/items/allOf/1/then/allOf/37/then/allOf/0/then/properties/parameters/properties/options/properties/messaging") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-options-properties-messaging.md "undefined#/properties/services/items/allOf/1/then/allOf/38/then/allOf/0/then/properties/parameters/properties/options/properties/messaging") ### messaging Type @@ -66,7 +66,7 @@ true * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-options-properties-messagingrest.md "undefined#/properties/services/items/allOf/1/then/allOf/37/then/allOf/0/then/properties/parameters/properties/options/properties/messagingrest") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-options-properties-messagingrest.md "undefined#/properties/services/items/allOf/1/then/allOf/38/then/allOf/0/then/properties/parameters/properties/options/properties/messagingrest") ### messagingrest Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-resources-properties-units.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-resources-properties-units.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-resources-properties-units.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-resources-properties-units.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-resources.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-resources.md similarity index 85% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-resources.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-resources.md index ea572a66..82750254 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-resources.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-resources.md @@ -1,12 +1,12 @@ ## resources Type -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-resources.md)) +`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-resources.md)) # resources Properties | Property | Type | Required | Nullable | Defined by | | :-------------- | :------- | :------- | :------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [units](#units) | `string` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-resources-properties-units.md "undefined#/properties/services/items/allOf/1/then/allOf/37/then/allOf/0/then/properties/parameters/properties/resources/properties/units") | +| [units](#units) | `string` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-resources-properties-units.md "undefined#/properties/services/items/allOf/1/then/allOf/38/then/allOf/0/then/properties/parameters/properties/resources/properties/units") | ## units @@ -20,7 +20,7 @@ * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-resources-properties-units.md "undefined#/properties/services/items/allOf/1/then/allOf/37/then/allOf/0/then/properties/parameters/properties/resources/properties/units") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-resources-properties-units.md "undefined#/properties/services/items/allOf/1/then/allOf/38/then/allOf/0/then/properties/parameters/properties/resources/properties/units") ### units Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-rules-properties-queuerules-properties-publishfilter-items-0.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-rules-properties-queuerules-properties-publishfilter-items-0.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-rules-properties-queuerules-properties-publishfilter-items-0.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-rules-properties-queuerules-properties-publishfilter-items-0.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-rules-properties-queuerules-properties-publishfilter.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-rules-properties-queuerules-properties-publishfilter.md similarity index 82% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-rules-properties-queuerules-properties-publishfilter.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-rules-properties-queuerules-properties-publishfilter.md index 84cf1eeb..2d8301bf 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-rules-properties-queuerules-properties-publishfilter.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-rules-properties-queuerules-properties-publishfilter.md @@ -2,4 +2,4 @@ an array where each item follows the corresponding schema in the following list: -1. [Untitled string in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-rules-properties-queuerules-properties-publishfilter-items-0.md "check type definition") +1. [Untitled string in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-rules-properties-queuerules-properties-publishfilter-items-0.md "check type definition") diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-rules-properties-queuerules-properties-subscribefilter-items-0.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-rules-properties-queuerules-properties-subscribefilter-items-0.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-rules-properties-queuerules-properties-subscribefilter-items-0.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-rules-properties-queuerules-properties-subscribefilter-items-0.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-rules-properties-queuerules-properties-subscribefilter.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-rules-properties-queuerules-properties-subscribefilter.md similarity index 83% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-rules-properties-queuerules-properties-subscribefilter.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-rules-properties-queuerules-properties-subscribefilter.md index b18f085e..a1fb5df2 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-rules-properties-queuerules-properties-subscribefilter.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-rules-properties-queuerules-properties-subscribefilter.md @@ -2,4 +2,4 @@ an array where each item follows the corresponding schema in the following list: -1. [Untitled string in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-rules-properties-queuerules-properties-subscribefilter-items-0.md "check type definition") +1. [Untitled string in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-rules-properties-queuerules-properties-subscribefilter-items-0.md "check type definition") diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-rules-properties-queuerules.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-rules-properties-queuerules.md similarity index 81% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-rules-properties-queuerules.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-rules-properties-queuerules.md index 375829e4..759da7f7 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-rules-properties-queuerules.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-rules-properties-queuerules.md @@ -1,13 +1,13 @@ ## queueRules Type -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-rules-properties-queuerules.md)) +`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-rules-properties-queuerules.md)) # queueRules Properties | Property | Type | Required | Nullable | Defined by | | :---------------------------------- | :------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [publishFilter](#publishfilter) | `array` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-rules-properties-queuerules-properties-publishfilter.md "undefined#/properties/services/items/allOf/1/then/allOf/37/then/allOf/0/then/properties/parameters/properties/rules/properties/queueRules/properties/publishFilter") | -| [subscribeFilter](#subscribefilter) | `array` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-rules-properties-queuerules-properties-subscribefilter.md "undefined#/properties/services/items/allOf/1/then/allOf/37/then/allOf/0/then/properties/parameters/properties/rules/properties/queueRules/properties/subscribeFilter") | +| [publishFilter](#publishfilter) | `array` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-rules-properties-queuerules-properties-publishfilter.md "undefined#/properties/services/items/allOf/1/then/allOf/38/then/allOf/0/then/properties/parameters/properties/rules/properties/queueRules/properties/publishFilter") | +| [subscribeFilter](#subscribefilter) | `array` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-rules-properties-queuerules-properties-subscribefilter.md "undefined#/properties/services/items/allOf/1/then/allOf/38/then/allOf/0/then/properties/parameters/properties/rules/properties/queueRules/properties/subscribeFilter") | ## publishFilter @@ -19,17 +19,17 @@ * Type: an array where each item follows the corresponding schema in the following list: - 1. [Untitled string in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-rules-properties-queuerules-properties-publishfilter-items-0.md "check type definition") + 1. [Untitled string in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-rules-properties-queuerules-properties-publishfilter-items-0.md "check type definition") * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-rules-properties-queuerules-properties-publishfilter.md "undefined#/properties/services/items/allOf/1/then/allOf/37/then/allOf/0/then/properties/parameters/properties/rules/properties/queueRules/properties/publishFilter") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-rules-properties-queuerules-properties-publishfilter.md "undefined#/properties/services/items/allOf/1/then/allOf/38/then/allOf/0/then/properties/parameters/properties/rules/properties/queueRules/properties/publishFilter") ### publishFilter Type an array where each item follows the corresponding schema in the following list: -1. [Untitled string in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-rules-properties-queuerules-properties-publishfilter-items-0.md "check type definition") +1. [Untitled string in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-rules-properties-queuerules-properties-publishfilter-items-0.md "check type definition") ## subscribeFilter @@ -41,14 +41,14 @@ an array where each item follows the corresponding schema in the following list: * Type: an array where each item follows the corresponding schema in the following list: - 1. [Untitled string in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-rules-properties-queuerules-properties-subscribefilter-items-0.md "check type definition") + 1. [Untitled string in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-rules-properties-queuerules-properties-subscribefilter-items-0.md "check type definition") * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-rules-properties-queuerules-properties-subscribefilter.md "undefined#/properties/services/items/allOf/1/then/allOf/37/then/allOf/0/then/properties/parameters/properties/rules/properties/queueRules/properties/subscribeFilter") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-rules-properties-queuerules-properties-subscribefilter.md "undefined#/properties/services/items/allOf/1/then/allOf/38/then/allOf/0/then/properties/parameters/properties/rules/properties/queueRules/properties/subscribeFilter") ### subscribeFilter Type an array where each item follows the corresponding schema in the following list: -1. [Untitled string in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-rules-properties-queuerules-properties-subscribefilter-items-0.md "check type definition") +1. [Untitled string in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-rules-properties-queuerules-properties-subscribefilter-items-0.md "check type definition") diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-rules-properties-topicrules-properties-publishfilter-items-0.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-rules-properties-topicrules-properties-publishfilter-items-0.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-rules-properties-topicrules-properties-publishfilter-items-0.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-rules-properties-topicrules-properties-publishfilter-items-0.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-rules-properties-topicrules-properties-publishfilter.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-rules-properties-topicrules-properties-publishfilter.md similarity index 82% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-rules-properties-topicrules-properties-publishfilter.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-rules-properties-topicrules-properties-publishfilter.md index 51be08b9..b5b52048 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-rules-properties-topicrules-properties-publishfilter.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-rules-properties-topicrules-properties-publishfilter.md @@ -2,4 +2,4 @@ an array where each item follows the corresponding schema in the following list: -1. [Untitled string in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-rules-properties-topicrules-properties-publishfilter-items-0.md "check type definition") +1. [Untitled string in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-rules-properties-topicrules-properties-publishfilter-items-0.md "check type definition") diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-rules-properties-topicrules-properties-subscribefilter-items-0.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-rules-properties-topicrules-properties-subscribefilter-items-0.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-rules-properties-topicrules-properties-subscribefilter-items-0.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-rules-properties-topicrules-properties-subscribefilter-items-0.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-rules-properties-topicrules-properties-subscribefilter.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-rules-properties-topicrules-properties-subscribefilter.md similarity index 83% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-rules-properties-topicrules-properties-subscribefilter.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-rules-properties-topicrules-properties-subscribefilter.md index cf66112d..9d1b4f80 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-rules-properties-topicrules-properties-subscribefilter.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-rules-properties-topicrules-properties-subscribefilter.md @@ -2,4 +2,4 @@ an array where each item follows the corresponding schema in the following list: -1. [Untitled string in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-rules-properties-topicrules-properties-subscribefilter-items-0.md "check type definition") +1. [Untitled string in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-rules-properties-topicrules-properties-subscribefilter-items-0.md "check type definition") diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-rules-properties-topicrules.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-rules-properties-topicrules.md similarity index 81% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-rules-properties-topicrules.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-rules-properties-topicrules.md index 083ab984..f6420ad9 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-rules-properties-topicrules.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-rules-properties-topicrules.md @@ -1,13 +1,13 @@ ## topicRules Type -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-rules-properties-topicrules.md)) +`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-rules-properties-topicrules.md)) # topicRules Properties | Property | Type | Required | Nullable | Defined by | | :---------------------------------- | :------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [publishFilter](#publishfilter) | `array` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-rules-properties-topicrules-properties-publishfilter.md "undefined#/properties/services/items/allOf/1/then/allOf/37/then/allOf/0/then/properties/parameters/properties/rules/properties/topicRules/properties/publishFilter") | -| [subscribeFilter](#subscribefilter) | `array` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-rules-properties-topicrules-properties-subscribefilter.md "undefined#/properties/services/items/allOf/1/then/allOf/37/then/allOf/0/then/properties/parameters/properties/rules/properties/topicRules/properties/subscribeFilter") | +| [publishFilter](#publishfilter) | `array` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-rules-properties-topicrules-properties-publishfilter.md "undefined#/properties/services/items/allOf/1/then/allOf/38/then/allOf/0/then/properties/parameters/properties/rules/properties/topicRules/properties/publishFilter") | +| [subscribeFilter](#subscribefilter) | `array` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-rules-properties-topicrules-properties-subscribefilter.md "undefined#/properties/services/items/allOf/1/then/allOf/38/then/allOf/0/then/properties/parameters/properties/rules/properties/topicRules/properties/subscribeFilter") | ## publishFilter @@ -19,17 +19,17 @@ * Type: an array where each item follows the corresponding schema in the following list: - 1. [Untitled string in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-rules-properties-topicrules-properties-publishfilter-items-0.md "check type definition") + 1. [Untitled string in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-rules-properties-topicrules-properties-publishfilter-items-0.md "check type definition") * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-rules-properties-topicrules-properties-publishfilter.md "undefined#/properties/services/items/allOf/1/then/allOf/37/then/allOf/0/then/properties/parameters/properties/rules/properties/topicRules/properties/publishFilter") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-rules-properties-topicrules-properties-publishfilter.md "undefined#/properties/services/items/allOf/1/then/allOf/38/then/allOf/0/then/properties/parameters/properties/rules/properties/topicRules/properties/publishFilter") ### publishFilter Type an array where each item follows the corresponding schema in the following list: -1. [Untitled string in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-rules-properties-topicrules-properties-publishfilter-items-0.md "check type definition") +1. [Untitled string in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-rules-properties-topicrules-properties-publishfilter-items-0.md "check type definition") ## subscribeFilter @@ -41,14 +41,14 @@ an array where each item follows the corresponding schema in the following list: * Type: an array where each item follows the corresponding schema in the following list: - 1. [Untitled string in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-rules-properties-topicrules-properties-subscribefilter-items-0.md "check type definition") + 1. [Untitled string in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-rules-properties-topicrules-properties-subscribefilter-items-0.md "check type definition") * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-rules-properties-topicrules-properties-subscribefilter.md "undefined#/properties/services/items/allOf/1/then/allOf/37/then/allOf/0/then/properties/parameters/properties/rules/properties/topicRules/properties/subscribeFilter") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-rules-properties-topicrules-properties-subscribefilter.md "undefined#/properties/services/items/allOf/1/then/allOf/38/then/allOf/0/then/properties/parameters/properties/rules/properties/topicRules/properties/subscribeFilter") ### subscribeFilter Type an array where each item follows the corresponding schema in the following list: -1. [Untitled string in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-rules-properties-topicrules-properties-subscribefilter-items-0.md "check type definition") +1. [Untitled string in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-rules-properties-topicrules-properties-subscribefilter-items-0.md "check type definition") diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-rules.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-rules.md similarity index 75% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-rules.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-rules.md index ceb1415f..731e9ba0 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-rules.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-rules.md @@ -1,13 +1,13 @@ ## rules Type -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-rules.md)) +`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-rules.md)) # rules Properties | Property | Type | Required | Nullable | Defined by | | :------------------------ | :------- | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [queueRules](#queuerules) | `object` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-rules-properties-queuerules.md "undefined#/properties/services/items/allOf/1/then/allOf/37/then/allOf/0/then/properties/parameters/properties/rules/properties/queueRules") | -| [topicRules](#topicrules) | `object` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-rules-properties-topicrules.md "undefined#/properties/services/items/allOf/1/then/allOf/37/then/allOf/0/then/properties/parameters/properties/rules/properties/topicRules") | +| [queueRules](#queuerules) | `object` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-rules-properties-queuerules.md "undefined#/properties/services/items/allOf/1/then/allOf/38/then/allOf/0/then/properties/parameters/properties/rules/properties/queueRules") | +| [topicRules](#topicrules) | `object` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-rules-properties-topicrules.md "undefined#/properties/services/items/allOf/1/then/allOf/38/then/allOf/0/then/properties/parameters/properties/rules/properties/topicRules") | ## queueRules @@ -17,15 +17,15 @@ * is optional -* Type: `object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-rules-properties-queuerules.md)) +* Type: `object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-rules-properties-queuerules.md)) * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-rules-properties-queuerules.md "undefined#/properties/services/items/allOf/1/then/allOf/37/then/allOf/0/then/properties/parameters/properties/rules/properties/queueRules") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-rules-properties-queuerules.md "undefined#/properties/services/items/allOf/1/then/allOf/38/then/allOf/0/then/properties/parameters/properties/rules/properties/queueRules") ### queueRules Type -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-rules-properties-queuerules.md)) +`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-rules-properties-queuerules.md)) ## topicRules @@ -35,12 +35,12 @@ * is optional -* Type: `object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-rules-properties-topicrules.md)) +* Type: `object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-rules-properties-topicrules.md)) * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-rules-properties-topicrules.md "undefined#/properties/services/items/allOf/1/then/allOf/37/then/allOf/0/then/properties/parameters/properties/rules/properties/topicRules") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-rules-properties-topicrules.md "undefined#/properties/services/items/allOf/1/then/allOf/38/then/allOf/0/then/properties/parameters/properties/rules/properties/topicRules") ### topicRules Type -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-rules-properties-topicrules.md)) +`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-rules-properties-topicrules.md)) diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-version.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-version.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-version.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-version.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-xs-security-properties-oauth2-configuration-properties-credential-types-items-0.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-xs-security-properties-oauth2-configuration-properties-credential-types-items-0.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-xs-security-properties-oauth2-configuration-properties-credential-types-items-0.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-xs-security-properties-oauth2-configuration-properties-credential-types-items-0.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-xs-security-properties-oauth2-configuration-properties-credential-types-items-1.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-xs-security-properties-oauth2-configuration-properties-credential-types-items-1.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-xs-security-properties-oauth2-configuration-properties-credential-types-items-1.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-xs-security-properties-oauth2-configuration-properties-credential-types-items-1.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-xs-security-properties-oauth2-configuration-properties-credential-types.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-xs-security-properties-oauth2-configuration-properties-credential-types.md similarity index 81% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-xs-security-properties-oauth2-configuration-properties-credential-types.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-xs-security-properties-oauth2-configuration-properties-credential-types.md index 086ae946..e5c0be19 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-xs-security-properties-oauth2-configuration-properties-credential-types.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-xs-security-properties-oauth2-configuration-properties-credential-types.md @@ -2,6 +2,6 @@ an array where each item follows the corresponding schema in the following list: -1. [Untitled string in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-xs-security-properties-oauth2-configuration-properties-credential-types-items-0.md "check type definition") +1. [Untitled string in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-xs-security-properties-oauth2-configuration-properties-credential-types-items-0.md "check type definition") -2. [Untitled string in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-xs-security-properties-oauth2-configuration-properties-credential-types-items-1.md "check type definition") +2. [Untitled string in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-xs-security-properties-oauth2-configuration-properties-credential-types-items-1.md "check type definition") diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-xs-security-properties-oauth2-configuration.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-xs-security-properties-oauth2-configuration.md similarity index 84% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-xs-security-properties-oauth2-configuration.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-xs-security-properties-oauth2-configuration.md index bed21aa4..387138a1 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-xs-security-properties-oauth2-configuration.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-xs-security-properties-oauth2-configuration.md @@ -1,12 +1,12 @@ ## oauth2-configuration Type -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-xs-security-properties-oauth2-configuration.md)) +`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-xs-security-properties-oauth2-configuration.md)) # oauth2-configuration Properties | Property | Type | Required | Nullable | Defined by | | :------------------------------------ | :------ | :------- | :------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [credential-types](#credential-types) | `array` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-xs-security-properties-oauth2-configuration-properties-credential-types.md "undefined#/properties/services/items/allOf/1/then/allOf/37/then/allOf/0/then/properties/parameters/properties/xs-security/properties/oauth2-configuration/properties/credential-types") | +| [credential-types](#credential-types) | `array` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-xs-security-properties-oauth2-configuration-properties-credential-types.md "undefined#/properties/services/items/allOf/1/then/allOf/38/then/allOf/0/then/properties/parameters/properties/xs-security/properties/oauth2-configuration/properties/credential-types") | ## credential-types @@ -18,18 +18,18 @@ * Type: an array where each item follows the corresponding schema in the following list: - 1. [Untitled string in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-xs-security-properties-oauth2-configuration-properties-credential-types-items-0.md "check type definition") + 1. [Untitled string in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-xs-security-properties-oauth2-configuration-properties-credential-types-items-0.md "check type definition") - 2. [Untitled string in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-xs-security-properties-oauth2-configuration-properties-credential-types-items-1.md "check type definition") + 2. [Untitled string in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-xs-security-properties-oauth2-configuration-properties-credential-types-items-1.md "check type definition") * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-xs-security-properties-oauth2-configuration-properties-credential-types.md "undefined#/properties/services/items/allOf/1/then/allOf/37/then/allOf/0/then/properties/parameters/properties/xs-security/properties/oauth2-configuration/properties/credential-types") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-xs-security-properties-oauth2-configuration-properties-credential-types.md "undefined#/properties/services/items/allOf/1/then/allOf/38/then/allOf/0/then/properties/parameters/properties/xs-security/properties/oauth2-configuration/properties/credential-types") ### credential-types Type an array where each item follows the corresponding schema in the following list: -1. [Untitled string in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-xs-security-properties-oauth2-configuration-properties-credential-types-items-0.md "check type definition") +1. [Untitled string in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-xs-security-properties-oauth2-configuration-properties-credential-types-items-0.md "check type definition") -2. [Untitled string in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-xs-security-properties-oauth2-configuration-properties-credential-types-items-1.md "check type definition") +2. [Untitled string in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-xs-security-properties-oauth2-configuration-properties-credential-types-items-1.md "check type definition") diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-xs-security.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-xs-security.md similarity index 81% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-xs-security.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-xs-security.md index 879fbbd8..74f3fbfd 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-xs-security.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-xs-security.md @@ -1,12 +1,12 @@ ## xs-security Type -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-xs-security.md)) +`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-xs-security.md)) # xs-security Properties | Property | Type | Required | Nullable | Defined by | | :-------------------------------------------- | :------- | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| [oauth2-configuration](#oauth2-configuration) | `object` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-xs-security-properties-oauth2-configuration.md "undefined#/properties/services/items/allOf/1/then/allOf/37/then/allOf/0/then/properties/parameters/properties/xs-security/properties/oauth2-configuration") | +| [oauth2-configuration](#oauth2-configuration) | `object` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-xs-security-properties-oauth2-configuration.md "undefined#/properties/services/items/allOf/1/then/allOf/38/then/allOf/0/then/properties/parameters/properties/xs-security/properties/oauth2-configuration") | ## oauth2-configuration @@ -16,12 +16,12 @@ * is required -* Type: `object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-xs-security-properties-oauth2-configuration.md)) +* Type: `object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-xs-security-properties-oauth2-configuration.md)) * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-xs-security-properties-oauth2-configuration.md "undefined#/properties/services/items/allOf/1/then/allOf/37/then/allOf/0/then/properties/parameters/properties/xs-security/properties/oauth2-configuration") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-xs-security-properties-oauth2-configuration.md "undefined#/properties/services/items/allOf/1/then/allOf/38/then/allOf/0/then/properties/parameters/properties/xs-security/properties/oauth2-configuration") ### oauth2-configuration Type -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-xs-security-properties-oauth2-configuration.md)) +`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-xs-security-properties-oauth2-configuration.md)) diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters.md similarity index 73% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters.md index 810be04a..ce86d0df 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters.md @@ -1,18 +1,18 @@ ## parameters Type -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters.md)) +`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters.md)) # parameters Properties | Property | Type | Required | Nullable | Defined by | | :-------------------------- | :------- | :------- | :------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [emname](#emname) | `string` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-emname.md "undefined#/properties/services/items/allOf/1/then/allOf/37/then/allOf/0/then/properties/parameters/properties/emname") | -| [namespace](#namespace) | `string` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-namespace.md "undefined#/properties/services/items/allOf/1/then/allOf/37/then/allOf/0/then/properties/parameters/properties/namespace") | -| [options](#options) | `object` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-options.md "undefined#/properties/services/items/allOf/1/then/allOf/37/then/allOf/0/then/properties/parameters/properties/options") | -| [resources](#resources) | `object` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-resources.md "undefined#/properties/services/items/allOf/1/then/allOf/37/then/allOf/0/then/properties/parameters/properties/resources") | -| [rules](#rules) | `object` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-rules.md "undefined#/properties/services/items/allOf/1/then/allOf/37/then/allOf/0/then/properties/parameters/properties/rules") | -| [version](#version) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-version.md "undefined#/properties/services/items/allOf/1/then/allOf/37/then/allOf/0/then/properties/parameters/properties/version") | -| [xs-security](#xs-security) | `object` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-xs-security.md "undefined#/properties/services/items/allOf/1/then/allOf/37/then/allOf/0/then/properties/parameters/properties/xs-security") | +| [emname](#emname) | `string` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-emname.md "undefined#/properties/services/items/allOf/1/then/allOf/38/then/allOf/0/then/properties/parameters/properties/emname") | +| [namespace](#namespace) | `string` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-namespace.md "undefined#/properties/services/items/allOf/1/then/allOf/38/then/allOf/0/then/properties/parameters/properties/namespace") | +| [options](#options) | `object` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-options.md "undefined#/properties/services/items/allOf/1/then/allOf/38/then/allOf/0/then/properties/parameters/properties/options") | +| [resources](#resources) | `object` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-resources.md "undefined#/properties/services/items/allOf/1/then/allOf/38/then/allOf/0/then/properties/parameters/properties/resources") | +| [rules](#rules) | `object` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-rules.md "undefined#/properties/services/items/allOf/1/then/allOf/38/then/allOf/0/then/properties/parameters/properties/rules") | +| [version](#version) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-version.md "undefined#/properties/services/items/allOf/1/then/allOf/38/then/allOf/0/then/properties/parameters/properties/version") | +| [xs-security](#xs-security) | `object` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-xs-security.md "undefined#/properties/services/items/allOf/1/then/allOf/38/then/allOf/0/then/properties/parameters/properties/xs-security") | ## emname @@ -26,7 +26,7 @@ It specifies the name of the message client. emname is used in the Event Mesh bu * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-emname.md "undefined#/properties/services/items/allOf/1/then/allOf/37/then/allOf/0/then/properties/parameters/properties/emname") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-emname.md "undefined#/properties/services/items/allOf/1/then/allOf/38/then/allOf/0/then/properties/parameters/properties/emname") ### emname Type @@ -54,7 +54,7 @@ It ensures that every message client within a subaccount is unique. The queues m * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-namespace.md "undefined#/properties/services/items/allOf/1/then/allOf/37/then/allOf/0/then/properties/parameters/properties/namespace") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-namespace.md "undefined#/properties/services/items/allOf/1/then/allOf/38/then/allOf/0/then/properties/parameters/properties/namespace") ### namespace Type @@ -68,15 +68,15 @@ It’s used to define the privileges and access channels for a message client. * is optional -* Type: `object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-options.md)) +* Type: `object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-options.md)) * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-options.md "undefined#/properties/services/items/allOf/1/then/allOf/37/then/allOf/0/then/properties/parameters/properties/options") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-options.md "undefined#/properties/services/items/allOf/1/then/allOf/38/then/allOf/0/then/properties/parameters/properties/options") ### options Type -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-options.md)) +`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-options.md)) ## resources @@ -86,15 +86,15 @@ Resource Units is a collection of messaging resources such as queues, connection * is optional -* Type: `object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-resources.md)) +* Type: `object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-resources.md)) * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-resources.md "undefined#/properties/services/items/allOf/1/then/allOf/37/then/allOf/0/then/properties/parameters/properties/resources") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-resources.md "undefined#/properties/services/items/allOf/1/then/allOf/38/then/allOf/0/then/properties/parameters/properties/resources") ### resources Type -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-resources.md)) +`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-resources.md)) ## rules @@ -104,15 +104,15 @@ It defines the publish or consume privileges for a message client. * is optional -* Type: `object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-rules.md)) +* Type: `object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-rules.md)) * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-rules.md "undefined#/properties/services/items/allOf/1/then/allOf/37/then/allOf/0/then/properties/parameters/properties/rules") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-rules.md "undefined#/properties/services/items/allOf/1/then/allOf/38/then/allOf/0/then/properties/parameters/properties/rules") ### rules Type -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-rules.md)) +`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-rules.md)) ## version @@ -126,7 +126,7 @@ It specifies the version of the service descriptor. * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-version.md "undefined#/properties/services/items/allOf/1/then/allOf/37/then/allOf/0/then/properties/parameters/properties/version") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-version.md "undefined#/properties/services/items/allOf/1/then/allOf/38/then/allOf/0/then/properties/parameters/properties/version") ### version Type @@ -150,12 +150,12 @@ The xs-security object is used to configure XSUAA-related properties, for exampl * is optional -* Type: `object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-xs-security.md)) +* Type: `object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-xs-security.md)) * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-xs-security.md "undefined#/properties/services/items/allOf/1/then/allOf/37/then/allOf/0/then/properties/parameters/properties/xs-security") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-xs-security.md "undefined#/properties/services/items/allOf/1/then/allOf/38/then/allOf/0/then/properties/parameters/properties/xs-security") ### xs-security Type -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-37-then-allof-0-then-properties-parameters-properties-xs-security.md)) +`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters-properties-xs-security.md)) diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then.md index 34ea4e0c..49299a16 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then.md @@ -4,13 +4,14 @@ unknown # then Properties -| Property | Type | Required | Nullable | Defined by | -| :------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/38/then/allOf/0/then/properties/plan") | +| Property | Type | Required | Nullable | Defined by | +| :------------------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/38/then/allOf/0/then/properties/plan") | +| [parameters](#parameters) | `object` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters.md "undefined#/properties/services/items/allOf/1/then/allOf/38/then/allOf/0/then/properties/parameters") | ## plan -service plan >lite< for >feature-flags< is available in data centers: +service plan >default< for >enterprise-messaging< is available in data centers: * {'region': 'ap10', 'name': 'Australia (Sydney)'} * {'region': 'ap11', 'name': 'Singapore'} @@ -45,3 +46,21 @@ service plan >lite< for >feature-flags< is available in data centers: ### plan Type unknown + +## parameters + + + +`parameters` + +* is required + +* Type: `object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters.md)) + +* cannot be null + +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters.md "undefined#/properties/services/items/allOf/1/then/allOf/38/then/allOf/0/then/properties/parameters") + +### parameters Type + +`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0-then-properties-parameters.md)) diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-1-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-1-then.md deleted file mode 100644 index 9380a79b..00000000 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-1-then.md +++ /dev/null @@ -1,47 +0,0 @@ -## then Type - -unknown - -# then Properties - -| Property | Type | Required | Nullable | Defined by | -| :------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/38/then/allOf/1/then/properties/plan") | - -## plan - -service plan >standard< for >feature-flags< is available in data centers: - -* {'region': 'ap10', 'name': 'Australia (Sydney)'} -* {'region': 'ap11', 'name': 'Singapore'} -* {'region': 'ap12', 'name': 'South Korea (Seoul)'} -* {'region': 'ap20', 'name': 'Australia (Sydney) Azure'} -* {'region': 'ap21', 'name': 'Singapore'} -* {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} -* {'region': 'ca10', 'name': 'Canada (Montreal)'} -* {'region': 'ch20', 'name': 'cf-ch20'} -* {'region': 'eu10', 'name': 'Europe (Frankfurt)'} -* {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} -* {'region': 'eu20', 'name': 'Europe (Netherlands)'} -* {'region': 'eu30', 'name': 'Europe (Frankfurt)'} -* {'region': 'in30', 'name': 'India (Mumbai)'} -* {'region': 'jp10', 'name': 'Japan (Tokyo)'} -* {'region': 'jp20', 'name': 'Japan (Tokyo)'} -* {'region': 'us10', 'name': 'US East (VA)'} -* {'region': 'us20', 'name': 'US West (WA)'} -* {'region': 'us21', 'name': 'US East (VA)'} -* {'region': 'us30', 'name': 'US Central (IA)'} - -`plan` - -* is optional - -* Type: unknown - -* cannot be null - -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/38/then/allOf/1/then/properties/plan") - -### plan Type - -unknown diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-properties-plan.md index 4cfe3b95..916e7975 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-properties-plan.md @@ -6,7 +6,6 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :----------- | :---------- | -| `"lite"` | | -| `"standard"` | | +| Value | Explanation | +| :---------- | :---------- | +| `"default"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-38-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-38-then.md index 5359f2a6..6f7e8a21 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-38-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-38-then.md @@ -6,8 +6,6 @@ all of * [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-0.md "check type definition") -* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-1.md "check type definition") - # then Properties | Property | Type | Required | Nullable | Defined by | @@ -37,14 +35,13 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :----------- | :---------- | -| `"lite"` | | -| `"standard"` | | +| Value | Explanation | +| :---------- | :---------- | +| `"default"` | | ## name -SAP Feature Flags service: The Feature Flags service allows you to enable or disable new features at runtime without redeploying or restarting the application. You can use feature flags to control code delivery, synchronized rollout, direct shipment, and fast rollback of features. +SAP Event Mesh: The SAP Event Mesh service decouples communication and allows for event-driven business processes. `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-39-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-39-if-properties-name.md index 77c3210c..68d3cb0c 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-39-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-39-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"hana" +"feature-flags" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-39-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-39-if.md index 68ab6620..a1715e10 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-39-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-39-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"hana" +"feature-flags" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-39-then-allof-0-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-39-then-allof-0-if-properties-plan.md index 4bf44dfe..f74c2390 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-39-then-allof-0-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-39-then-allof-0-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"hdi-shared" +"lite" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-39-then-allof-0-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-39-then-allof-0-if.md index ccc672b5..acde92db 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-39-then-allof-0-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-39-then-allof-0-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"hdi-shared" +"lite" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-39-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-39-then-allof-0-then.md index 1fc306e6..5a71d76d 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-39-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-39-then-allof-0-then.md @@ -10,7 +10,7 @@ unknown ## plan -service plan >hdi-shared< for >hana< is available in data centers: +service plan >lite< for >feature-flags< is available in data centers: * {'region': 'ap10', 'name': 'Australia (Sydney)'} * {'region': 'ap11', 'name': 'Singapore'} diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-39-then-allof-1-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-39-then-allof-1-if-properties-plan.md index 1ebae3c8..126392b1 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-39-then-allof-1-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-39-then-allof-1-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"sbss" +"standard" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-39-then-allof-1-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-39-then-allof-1-if.md index 888fe4e2..a2e51ffc 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-39-then-allof-1-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-39-then-allof-1-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"sbss" +"standard" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-39-then-allof-1-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-39-then-allof-1-then.md index 6735d7b7..901f9f30 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-39-then-allof-1-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-39-then-allof-1-then.md @@ -10,7 +10,7 @@ unknown ## plan -service plan >sbss< for >hana< is available in data centers: +service plan >standard< for >feature-flags< is available in data centers: * {'region': 'ap10', 'name': 'Australia (Sydney)'} * {'region': 'ap11', 'name': 'Singapore'} diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-39-then-allof-2-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-39-then-allof-2-then.md deleted file mode 100644 index 561cfea4..00000000 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-39-then-allof-2-then.md +++ /dev/null @@ -1,47 +0,0 @@ -## then Type - -unknown - -# then Properties - -| Property | Type | Required | Nullable | Defined by | -| :------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-39-then-allof-2-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/39/then/allOf/2/then/properties/plan") | - -## plan - -service plan >schema< for >hana< is available in data centers: - -* {'region': 'ap10', 'name': 'Australia (Sydney)'} -* {'region': 'ap11', 'name': 'Singapore'} -* {'region': 'ap12', 'name': 'South Korea (Seoul)'} -* {'region': 'ap20', 'name': 'Australia (Sydney) Azure'} -* {'region': 'ap21', 'name': 'Singapore'} -* {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} -* {'region': 'ca10', 'name': 'Canada (Montreal)'} -* {'region': 'ch20', 'name': 'cf-ch20'} -* {'region': 'eu10', 'name': 'Europe (Frankfurt)'} -* {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} -* {'region': 'eu20', 'name': 'Europe (Netherlands)'} -* {'region': 'eu30', 'name': 'Europe (Frankfurt)'} -* {'region': 'in30', 'name': 'India (Mumbai)'} -* {'region': 'jp10', 'name': 'Japan (Tokyo)'} -* {'region': 'jp20', 'name': 'Japan (Tokyo)'} -* {'region': 'us10', 'name': 'US East (VA)'} -* {'region': 'us20', 'name': 'US West (WA)'} -* {'region': 'us21', 'name': 'US East (VA)'} -* {'region': 'us30', 'name': 'US Central (IA)'} - -`plan` - -* is optional - -* Type: unknown - -* cannot be null - -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-39-then-allof-2-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/39/then/allOf/2/then/properties/plan") - -### plan Type - -unknown diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-39-then-allof-3-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-39-then-allof-3-then.md deleted file mode 100644 index 497392ba..00000000 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-39-then-allof-3-then.md +++ /dev/null @@ -1,47 +0,0 @@ -## then Type - -unknown - -# then Properties - -| Property | Type | Required | Nullable | Defined by | -| :------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-39-then-allof-3-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/39/then/allOf/3/then/properties/plan") | - -## plan - -service plan >securestore< for >hana< is available in data centers: - -* {'region': 'ap10', 'name': 'Australia (Sydney)'} -* {'region': 'ap11', 'name': 'Singapore'} -* {'region': 'ap12', 'name': 'South Korea (Seoul)'} -* {'region': 'ap20', 'name': 'Australia (Sydney) Azure'} -* {'region': 'ap21', 'name': 'Singapore'} -* {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} -* {'region': 'ca10', 'name': 'Canada (Montreal)'} -* {'region': 'ch20', 'name': 'cf-ch20'} -* {'region': 'eu10', 'name': 'Europe (Frankfurt)'} -* {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} -* {'region': 'eu20', 'name': 'Europe (Netherlands)'} -* {'region': 'eu30', 'name': 'Europe (Frankfurt)'} -* {'region': 'in30', 'name': 'India (Mumbai)'} -* {'region': 'jp10', 'name': 'Japan (Tokyo)'} -* {'region': 'jp20', 'name': 'Japan (Tokyo)'} -* {'region': 'us10', 'name': 'US East (VA)'} -* {'region': 'us20', 'name': 'US West (WA)'} -* {'region': 'us21', 'name': 'US East (VA)'} -* {'region': 'us30', 'name': 'US Central (IA)'} - -`plan` - -* is optional - -* Type: unknown - -* cannot be null - -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-39-then-allof-3-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/39/then/allOf/3/then/properties/plan") - -### plan Type - -unknown diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-39-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-39-then-properties-plan.md index 2a6af3a2..4cfe3b95 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-39-then-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-39-then-properties-plan.md @@ -6,9 +6,7 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :-------------- | :---------- | -| `"hdi-shared"` | | -| `"sbss"` | | -| `"schema"` | | -| `"securestore"` | | +| Value | Explanation | +| :----------- | :---------- | +| `"lite"` | | +| `"standard"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-39-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-39-then.md index 67f30700..9efb8e00 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-39-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-39-then.md @@ -8,10 +8,6 @@ all of * [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-39-then-allof-1.md "check type definition") -* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-39-then-allof-2.md "check type definition") - -* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-39-then-allof-3.md "check type definition") - # then Properties | Property | Type | Required | Nullable | Defined by | @@ -41,16 +37,14 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :-------------- | :---------- | -| `"hdi-shared"` | | -| `"sbss"` | | -| `"schema"` | | -| `"securestore"` | | +| Value | Explanation | +| :----------- | :---------- | +| `"lite"` | | +| `"standard"` | | ## name -SAP HANA Schemas & HDI Containers: Use the SAP HANA schemas & HDI containers service to create service instances on SAP HANA databases and bind them to cloud applications. To create schemas and HDI containers, an SAP HANA database must be available in your space. The SAP HANA schemas & HDI containers service is part of the SAP HANA service. +SAP Feature Flags service: The Feature Flags service allows you to enable or disable new features at runtime without redeploying or restarting the application. You can use feature flags to control code delivery, synchronized rollout, direct shipment, and fast rollback of features. `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-if-properties-name.md index bdff2f8a..77c3210c 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"hana-cloud" +"hana" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-if.md index 93c053dc..50688adc 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"hana-cloud" +"hana" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-0-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-0-if-properties-plan.md index 8b2e0c9f..4bf44dfe 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-0-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-0-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"adaptive-server-enterprise" +"hdi-shared" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-0-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-0-if.md index 7b0ec4b0..f713c38a 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-0-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-0-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"adaptive-server-enterprise" +"hdi-shared" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-0-then.md index d854cd7e..8734ca96 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-0-then.md @@ -10,11 +10,27 @@ unknown ## plan -service plan >adaptive-server-enterprise< for >hana-cloud< is available in data centers: +service plan >hdi-shared< for >hana< is available in data centers: +* {'region': 'ap10', 'name': 'Australia (Sydney)'} +* {'region': 'ap11', 'name': 'Singapore'} +* {'region': 'ap12', 'name': 'South Korea (Seoul)'} * {'region': 'ap20', 'name': 'Australia (Sydney) Azure'} +* {'region': 'ap21', 'name': 'Singapore'} +* {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} +* {'region': 'ca10', 'name': 'Canada (Montreal)'} +* {'region': 'ch20', 'name': 'cf-ch20'} +* {'region': 'eu10', 'name': 'Europe (Frankfurt)'} +* {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} * {'region': 'eu20', 'name': 'Europe (Netherlands)'} +* {'region': 'eu30', 'name': 'Europe (Frankfurt)'} +* {'region': 'in30', 'name': 'India (Mumbai)'} +* {'region': 'jp10', 'name': 'Japan (Tokyo)'} +* {'region': 'jp20', 'name': 'Japan (Tokyo)'} +* {'region': 'us10', 'name': 'US East (VA)'} +* {'region': 'us20', 'name': 'US West (WA)'} * {'region': 'us21', 'name': 'US East (VA)'} +* {'region': 'us30', 'name': 'US Central (IA)'} `plan` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-1-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-1-if-properties-plan.md index a80e65ea..1ebae3c8 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-1-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-1-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"adaptive-server-enterprise-replication" +"sbss" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-1-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-1-if.md index 563ca3be..8d110a46 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-1-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-1-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"adaptive-server-enterprise-replication" +"sbss" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-1-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-1-then.md index fb6ce391..6d50bcb3 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-1-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-1-then.md @@ -10,11 +10,27 @@ unknown ## plan -service plan >adaptive-server-enterprise-replication< for >hana-cloud< is available in data centers: +service plan >sbss< for >hana< is available in data centers: +* {'region': 'ap10', 'name': 'Australia (Sydney)'} +* {'region': 'ap11', 'name': 'Singapore'} +* {'region': 'ap12', 'name': 'South Korea (Seoul)'} * {'region': 'ap20', 'name': 'Australia (Sydney) Azure'} +* {'region': 'ap21', 'name': 'Singapore'} +* {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} +* {'region': 'ca10', 'name': 'Canada (Montreal)'} +* {'region': 'ch20', 'name': 'cf-ch20'} +* {'region': 'eu10', 'name': 'Europe (Frankfurt)'} +* {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} * {'region': 'eu20', 'name': 'Europe (Netherlands)'} +* {'region': 'eu30', 'name': 'Europe (Frankfurt)'} +* {'region': 'in30', 'name': 'India (Mumbai)'} +* {'region': 'jp10', 'name': 'Japan (Tokyo)'} +* {'region': 'jp20', 'name': 'Japan (Tokyo)'} +* {'region': 'us10', 'name': 'US East (VA)'} +* {'region': 'us20', 'name': 'US West (WA)'} * {'region': 'us21', 'name': 'US East (VA)'} +* {'region': 'us30', 'name': 'US Central (IA)'} `plan` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-if-properties-plan.md index 8b93b843..7d4326ee 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"hana" +"schema" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-if.md index 7812bb55..e1bab029 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"hana" +"schema" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then.md index 23ad1f52..5fa102c5 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then.md @@ -4,14 +4,13 @@ unknown # then Properties -| Property | Type | Required | Nullable | Defined by | -| :------------------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/2/then/properties/plan") | -| [parameters](#parameters) | `object` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/2/then/properties/parameters") | +| Property | Type | Required | Nullable | Defined by | +| :------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/2/then/properties/plan") | ## plan -service plan >hana< for >hana-cloud< is available in data centers: +service plan >schema< for >hana< is available in data centers: * {'region': 'ap10', 'name': 'Australia (Sydney)'} * {'region': 'ap11', 'name': 'Singapore'} @@ -46,21 +45,3 @@ service plan >hana< for >hana-cloud< is available in data centers: ### plan Type unknown - -## parameters - - - -`parameters` - -* is required - -* Type: `object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters.md)) - -* cannot be null - -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/2/then/properties/parameters") - -### parameters Type - -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters.md)) diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-3-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-3-if-properties-plan.md index f7b1e2a4..49810752 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-3-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-3-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"hana-cloud-connection" +"securestore" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-3-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-3-if.md index 1f1fd1ba..a2ec59b5 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-3-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-3-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"hana-cloud-connection" +"securestore" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-3-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-3-then.md index 1e63cc1a..685c0fd8 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-3-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-3-then.md @@ -4,14 +4,13 @@ unknown # then Properties -| Property | Type | Required | Nullable | Defined by | -| :------------------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-3-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/3/then/properties/plan") | -| [parameters](#parameters) | `object` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-3-then-properties-parameters.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/3/then/properties/parameters") | +| Property | Type | Required | Nullable | Defined by | +| :------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-3-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/3/then/properties/plan") | ## plan -service plan >hana-cloud-connection< for >hana-cloud< is available in data centers: +service plan >securestore< for >hana< is available in data centers: * {'region': 'ap10', 'name': 'Australia (Sydney)'} * {'region': 'ap11', 'name': 'Singapore'} @@ -46,21 +45,3 @@ service plan >hana-cloud-connection< for >hana-cloud< is available in data cente ### plan Type unknown - -## parameters - - - -`parameters` - -* is required - -* Type: `object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-3-then-properties-parameters.md)) - -* cannot be null - -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-3-then-properties-parameters.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/3/then/properties/parameters") - -### parameters Type - -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-3-then-properties-parameters.md)) diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-4-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-4-if-properties-plan.md deleted file mode 100644 index 05fcb84e..00000000 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-4-if-properties-plan.md +++ /dev/null @@ -1,11 +0,0 @@ -## plan Type - -unknown - -## plan Constraints - -**constant**: the value of this property must be equal to: - -```json -"hana-cloud-connection-free" -``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-4-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-4-then.md deleted file mode 100644 index 5b41cc18..00000000 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-4-then.md +++ /dev/null @@ -1,61 +0,0 @@ -## then Type - -unknown - -# then Properties - -| Property | Type | Required | Nullable | Defined by | -| :------------------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-4-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/4/then/properties/plan") | -| [parameters](#parameters) | `object` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-4-then-properties-parameters.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/4/then/properties/parameters") | - -## plan - -service plan >hana-cloud-connection-free< for >hana-cloud< is available in data centers: - -* {'region': 'ap10', 'name': 'Australia (Sydney)'} -* {'region': 'ap11', 'name': 'Singapore'} -* {'region': 'ap12', 'name': 'South Korea (Seoul)'} -* {'region': 'ap20', 'name': 'Australia (Sydney) Azure'} -* {'region': 'ap21', 'name': 'Singapore'} -* {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} -* {'region': 'ca10', 'name': 'Canada (Montreal)'} -* {'region': 'ch20', 'name': 'cf-ch20'} -* {'region': 'eu20', 'name': 'Europe (Netherlands)'} -* {'region': 'jp10', 'name': 'Japan (Tokyo)'} -* {'region': 'jp20', 'name': 'Japan (Tokyo)'} -* {'region': 'us10', 'name': 'US East (VA)'} -* {'region': 'us20', 'name': 'US West (WA)'} -* {'region': 'us21', 'name': 'US East (VA)'} - -`plan` - -* is optional - -* Type: unknown - -* cannot be null - -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-4-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/4/then/properties/plan") - -### plan Type - -unknown - -## parameters - - - -`parameters` - -* is required - -* Type: `object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-4-then-properties-parameters.md)) - -* cannot be null - -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-4-then-properties-parameters.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/4/then/properties/parameters") - -### parameters Type - -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-4-then-properties-parameters.md)) diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-if-properties-plan.md deleted file mode 100644 index 244fbc0d..00000000 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-if-properties-plan.md +++ /dev/null @@ -1,11 +0,0 @@ -## plan Type - -unknown - -## plan Constraints - -**constant**: the value of this property must be equal to: - -```json -"relational-data-lake" -``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then.md deleted file mode 100644 index 509a3909..00000000 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then.md +++ /dev/null @@ -1,66 +0,0 @@ -## then Type - -unknown - -# then Properties - -| Property | Type | Required | Nullable | Defined by | -| :------------------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/6/then/properties/plan") | -| [parameters](#parameters) | `object` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/6/then/properties/parameters") | - -## plan - -service plan >relational-data-lake< for >hana-cloud< is available in data centers: - -* {'region': 'ap10', 'name': 'Australia (Sydney)'} -* {'region': 'ap11', 'name': 'Singapore'} -* {'region': 'ap12', 'name': 'South Korea (Seoul)'} -* {'region': 'ap20', 'name': 'Australia (Sydney) Azure'} -* {'region': 'ap21', 'name': 'Singapore'} -* {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} -* {'region': 'ca10', 'name': 'Canada (Montreal)'} -* {'region': 'ch20', 'name': 'cf-ch20'} -* {'region': 'eu10', 'name': 'Europe (Frankfurt)'} -* {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} -* {'region': 'eu20', 'name': 'Europe (Netherlands)'} -* {'region': 'eu30', 'name': 'Europe (Frankfurt)'} -* {'region': 'in30', 'name': 'India (Mumbai)'} -* {'region': 'jp10', 'name': 'Japan (Tokyo)'} -* {'region': 'jp20', 'name': 'Japan (Tokyo)'} -* {'region': 'us10', 'name': 'US East (VA)'} -* {'region': 'us20', 'name': 'US West (WA)'} -* {'region': 'us21', 'name': 'US East (VA)'} -* {'region': 'us30', 'name': 'US Central (IA)'} - -`plan` - -* is optional - -* Type: unknown - -* cannot be null - -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/6/then/properties/plan") - -### plan Type - -unknown - -## parameters - - - -`parameters` - -* is required - -* Type: `object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters.md)) - -* cannot be null - -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/6/then/properties/parameters") - -### parameters Type - -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters.md)) diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-if-properties-plan.md deleted file mode 100644 index fc6a8616..00000000 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-if-properties-plan.md +++ /dev/null @@ -1,11 +0,0 @@ -## plan Type - -unknown - -## plan Constraints - -**constant**: the value of this property must be equal to: - -```json -"relational-data-lake-free" -``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then.md deleted file mode 100644 index 63498f04..00000000 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then.md +++ /dev/null @@ -1,61 +0,0 @@ -## then Type - -unknown - -# then Properties - -| Property | Type | Required | Nullable | Defined by | -| :------------------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/7/then/properties/plan") | -| [parameters](#parameters) | `object` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/7/then/properties/parameters") | - -## plan - -service plan >relational-data-lake-free< for >hana-cloud< is available in data centers: - -* {'region': 'ap10', 'name': 'Australia (Sydney)'} -* {'region': 'ap11', 'name': 'Singapore'} -* {'region': 'ap12', 'name': 'South Korea (Seoul)'} -* {'region': 'ap20', 'name': 'Australia (Sydney) Azure'} -* {'region': 'ap21', 'name': 'Singapore'} -* {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} -* {'region': 'ca10', 'name': 'Canada (Montreal)'} -* {'region': 'ch20', 'name': 'cf-ch20'} -* {'region': 'eu20', 'name': 'Europe (Netherlands)'} -* {'region': 'jp10', 'name': 'Japan (Tokyo)'} -* {'region': 'jp20', 'name': 'Japan (Tokyo)'} -* {'region': 'us10', 'name': 'US East (VA)'} -* {'region': 'us20', 'name': 'US West (WA)'} -* {'region': 'us21', 'name': 'US East (VA)'} - -`plan` - -* is optional - -* Type: unknown - -* cannot be null - -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/7/then/properties/plan") - -### plan Type - -unknown - -## parameters - - - -`parameters` - -* is required - -* Type: `object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters.md)) - -* cannot be null - -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/7/then/properties/parameters") - -### parameters Type - -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters.md)) diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-properties-plan.md index d135fb42..2a6af3a2 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-properties-plan.md @@ -6,13 +6,9 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :----------------------------------------- | :---------- | -| `"adaptive-server-enterprise"` | | -| `"adaptive-server-enterprise-replication"` | | -| `"hana"` | | -| `"hana-cloud-connection"` | | -| `"hana-cloud-connection-free"` | | -| `"hana-free"` | | -| `"relational-data-lake"` | | -| `"relational-data-lake-free"` | | +| Value | Explanation | +| :-------------- | :---------- | +| `"hdi-shared"` | | +| `"sbss"` | | +| `"schema"` | | +| `"securestore"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then.md index 24963774..ab088831 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then.md @@ -12,14 +12,6 @@ all of * [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-3.md "check type definition") -* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-4.md "check type definition") - -* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-5.md "check type definition") - -* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6.md "check type definition") - -* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7.md "check type definition") - # then Properties | Property | Type | Required | Nullable | Defined by | @@ -49,20 +41,16 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :----------------------------------------- | :---------- | -| `"adaptive-server-enterprise"` | | -| `"adaptive-server-enterprise-replication"` | | -| `"hana"` | | -| `"hana-cloud-connection"` | | -| `"hana-cloud-connection-free"` | | -| `"hana-free"` | | -| `"relational-data-lake"` | | -| `"relational-data-lake-free"` | | +| Value | Explanation | +| :-------------- | :---------- | +| `"hdi-shared"` | | +| `"sbss"` | | +| `"schema"` | | +| `"securestore"` | | ## name -SAP HANA Cloud: SAP HANA Cloud provides a single place to access, store, and process all enterprise data in real time. It is a cloud-native platform that reduces the complexity of multi-cloud or hybrid system landscapes. SAP HANA Cloud provides all of the advanced SAP HANA technologies for multi-model data processing in-memory or on disk. You can benefit from cloud qualities such as automatic software updates, elasticity, and low total cost of ownership by using SAP HANA Cloud either as a stand-alone solution or as an extension to your existing on-premise environment. +SAP HANA Schemas & HDI Containers: Use the SAP HANA schemas & HDI containers service to create service instances on SAP HANA databases and bind them to cloud applications. To create schemas and HDI containers, an SAP HANA database must be available in your space. The SAP HANA schemas & HDI containers service is part of the SAP HANA service. `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-if-properties-name.md index 55099391..bdff2f8a 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"hana-db" +"hana-cloud" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-if.md index 5e6ad83b..6ceebe3e 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"hana-db" +"hana-cloud" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-0-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-0-if-properties-plan.md index 87a53216..8b2e0c9f 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-0-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-0-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"1024premium" +"adaptive-server-enterprise" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-0-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-0-if.md index f2985dbb..60912a38 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-0-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-0-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"1024premium" +"adaptive-server-enterprise" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-0-then.md index 925416b9..9e3a4271 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-0-then.md @@ -10,28 +10,11 @@ unknown ## plan -service plan >1024premium< for >hana-db< is available in data centers: +service plan >adaptive-server-enterprise< for >hana-cloud< is available in data centers: -* {'region': 'ae1', 'name': 'UAE (Dubai)'} -* {'region': 'ap1', 'name': 'Australia (Sydney)'} * {'region': 'ap20', 'name': 'Australia (Sydney) Azure'} -* {'region': 'ap21', 'name': 'Singapore'} -* {'region': 'br1', 'name': 'Brazil (Sao Paulo)'} -* {'region': 'ca1', 'name': 'Canada (Toronto)'} -* {'region': 'cn1', 'name': 'China (Shanghai)'} -* {'region': 'eu1', 'name': 'Europe (Rot)'} -* {'region': 'eu2', 'name': 'Europe (Frankfurt)'} * {'region': 'eu20', 'name': 'Europe (Netherlands)'} -* {'region': 'eu3', 'name': 'Europe (Amsterdam)'} -* {'region': 'jp1', 'name': 'Japan (Tokyo)'} -* {'region': 'jp20', 'name': 'Japan (Tokyo)'} -* {'region': 'sa1', 'name': 'KSA (Riyadh)'} -* {'region': 'us1', 'name': 'US East (Ashburn)'} -* {'region': 'us2', 'name': 'US West (Chandler)'} -* {'region': 'us20', 'name': 'US West (WA)'} * {'region': 'us21', 'name': 'US East (VA)'} -* {'region': 'us3', 'name': 'US East (Sterling)'} -* {'region': 'us4', 'name': 'US West (Colorado Springs)'} `plan` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-1-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-1-if-properties-plan.md index 30f91bfd..a80e65ea 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-1-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-1-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"1024standard" +"adaptive-server-enterprise-replication" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-1-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-1-if.md index 12aac4fa..57cd4aa2 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-1-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-1-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"1024standard" +"adaptive-server-enterprise-replication" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-1-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-1-then.md index 9c4ef552..bc68ec7f 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-1-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-1-then.md @@ -10,28 +10,11 @@ unknown ## plan -service plan >1024standard< for >hana-db< is available in data centers: +service plan >adaptive-server-enterprise-replication< for >hana-cloud< is available in data centers: -* {'region': 'ae1', 'name': 'UAE (Dubai)'} -* {'region': 'ap1', 'name': 'Australia (Sydney)'} * {'region': 'ap20', 'name': 'Australia (Sydney) Azure'} -* {'region': 'ap21', 'name': 'Singapore'} -* {'region': 'br1', 'name': 'Brazil (Sao Paulo)'} -* {'region': 'ca1', 'name': 'Canada (Toronto)'} -* {'region': 'cn1', 'name': 'China (Shanghai)'} -* {'region': 'eu1', 'name': 'Europe (Rot)'} -* {'region': 'eu2', 'name': 'Europe (Frankfurt)'} * {'region': 'eu20', 'name': 'Europe (Netherlands)'} -* {'region': 'eu3', 'name': 'Europe (Amsterdam)'} -* {'region': 'jp1', 'name': 'Japan (Tokyo)'} -* {'region': 'jp20', 'name': 'Japan (Tokyo)'} -* {'region': 'sa1', 'name': 'KSA (Riyadh)'} -* {'region': 'us1', 'name': 'US East (Ashburn)'} -* {'region': 'us2', 'name': 'US West (Chandler)'} -* {'region': 'us20', 'name': 'US West (WA)'} * {'region': 'us21', 'name': 'US East (VA)'} -* {'region': 'us3', 'name': 'US East (Sterling)'} -* {'region': 'us4', 'name': 'US West (Colorado Springs)'} `plan` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-if-properties-plan.md index 923352f4..8b93b843 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"128premium" +"hana" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-if.md index 63370790..1c06f226 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"128premium" +"hana" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-additionalworkers.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-additionalworkers.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-additionalworkers.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-additionalworkers.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-availabilityzoneplacement-properties-highavailabilitycrossmultiazenabled.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-availabilityzoneplacement-properties-highavailabilitycrossmultiazenabled.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-availabilityzoneplacement-properties-highavailabilitycrossmultiazenabled.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-availabilityzoneplacement-properties-highavailabilitycrossmultiazenabled.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-availabilityzoneplacement-properties-initialreplicaavailabilityzone.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-availabilityzoneplacement-properties-initialreplicaavailabilityzone.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-availabilityzoneplacement-properties-initialreplicaavailabilityzone.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-availabilityzoneplacement-properties-initialreplicaavailabilityzone.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-availabilityzoneplacement-properties-initialsourceavailabilityzone.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-availabilityzoneplacement-properties-initialsourceavailabilityzone.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-availabilityzoneplacement-properties-initialsourceavailabilityzone.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-availabilityzoneplacement-properties-initialsourceavailabilityzone.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-availabilityzoneplacement-properties-primaryavailabilityzone.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-availabilityzoneplacement-properties-primaryavailabilityzone.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-availabilityzoneplacement-properties-primaryavailabilityzone.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-availabilityzoneplacement-properties-primaryavailabilityzone.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-availabilityzoneplacement-properties-secondaryavailabilityzone.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-availabilityzoneplacement-properties-secondaryavailabilityzone.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-availabilityzoneplacement-properties-secondaryavailabilityzone.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-availabilityzoneplacement-properties-secondaryavailabilityzone.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-availabilityzoneplacement.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-availabilityzoneplacement.md similarity index 82% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-availabilityzoneplacement.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-availabilityzoneplacement.md index a0a771d5..4cbd7c9c 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-availabilityzoneplacement.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-availabilityzoneplacement.md @@ -1,16 +1,16 @@ ## availabilityZonePlacement Type -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-availabilityzoneplacement.md)) +`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-availabilityzoneplacement.md)) # availabilityZonePlacement Properties | Property | Type | Required | Nullable | Defined by | | :-------------------------------------------------------------------------- | :-------- | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| [highAvailabilityCrossMultiAZEnabled](#highavailabilitycrossmultiazenabled) | `boolean` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-availabilityzoneplacement-properties-highavailabilitycrossmultiazenabled.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/2/then/properties/parameters/properties/data/properties/availabilityZonePlacement/properties/highAvailabilityCrossMultiAZEnabled") | -| [initialReplicaAvailabilityZone](#initialreplicaavailabilityzone) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-availabilityzoneplacement-properties-initialreplicaavailabilityzone.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/2/then/properties/parameters/properties/data/properties/availabilityZonePlacement/properties/initialReplicaAvailabilityZone") | -| [initialSourceAvailabilityZone](#initialsourceavailabilityzone) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-availabilityzoneplacement-properties-initialsourceavailabilityzone.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/2/then/properties/parameters/properties/data/properties/availabilityZonePlacement/properties/initialSourceAvailabilityZone") | -| [primaryAvailabilityZone](#primaryavailabilityzone) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-availabilityzoneplacement-properties-primaryavailabilityzone.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/2/then/properties/parameters/properties/data/properties/availabilityZonePlacement/properties/primaryAvailabilityZone") | -| [secondaryAvailabilityZone](#secondaryavailabilityzone) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-availabilityzoneplacement-properties-secondaryavailabilityzone.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/2/then/properties/parameters/properties/data/properties/availabilityZonePlacement/properties/secondaryAvailabilityZone") | +| [highAvailabilityCrossMultiAZEnabled](#highavailabilitycrossmultiazenabled) | `boolean` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-availabilityzoneplacement-properties-highavailabilitycrossmultiazenabled.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/2/then/properties/parameters/properties/data/properties/availabilityZonePlacement/properties/highAvailabilityCrossMultiAZEnabled") | +| [initialReplicaAvailabilityZone](#initialreplicaavailabilityzone) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-availabilityzoneplacement-properties-initialreplicaavailabilityzone.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/2/then/properties/parameters/properties/data/properties/availabilityZonePlacement/properties/initialReplicaAvailabilityZone") | +| [initialSourceAvailabilityZone](#initialsourceavailabilityzone) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-availabilityzoneplacement-properties-initialsourceavailabilityzone.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/2/then/properties/parameters/properties/data/properties/availabilityZonePlacement/properties/initialSourceAvailabilityZone") | +| [primaryAvailabilityZone](#primaryavailabilityzone) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-availabilityzoneplacement-properties-primaryavailabilityzone.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/2/then/properties/parameters/properties/data/properties/availabilityZonePlacement/properties/primaryAvailabilityZone") | +| [secondaryAvailabilityZone](#secondaryavailabilityzone) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-availabilityzoneplacement-properties-secondaryavailabilityzone.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/2/then/properties/parameters/properties/data/properties/availabilityZonePlacement/properties/secondaryAvailabilityZone") | ## highAvailabilityCrossMultiAZEnabled @@ -24,7 +24,7 @@ A flag to determine if the HA setup will be cross multi-availability zones or no * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-availabilityzoneplacement-properties-highavailabilitycrossmultiazenabled.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/2/then/properties/parameters/properties/data/properties/availabilityZonePlacement/properties/highAvailabilityCrossMultiAZEnabled") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-availabilityzoneplacement-properties-highavailabilitycrossmultiazenabled.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/2/then/properties/parameters/properties/data/properties/availabilityZonePlacement/properties/highAvailabilityCrossMultiAZEnabled") ### highAvailabilityCrossMultiAZEnabled Type @@ -42,7 +42,7 @@ This zone will be used by the initial replica * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-availabilityzoneplacement-properties-initialreplicaavailabilityzone.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/2/then/properties/parameters/properties/data/properties/availabilityZonePlacement/properties/initialReplicaAvailabilityZone") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-availabilityzoneplacement-properties-initialreplicaavailabilityzone.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/2/then/properties/parameters/properties/data/properties/availabilityZonePlacement/properties/initialReplicaAvailabilityZone") ### initialReplicaAvailabilityZone Type @@ -60,7 +60,7 @@ This zone will be used by the initial source * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-availabilityzoneplacement-properties-initialsourceavailabilityzone.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/2/then/properties/parameters/properties/data/properties/availabilityZonePlacement/properties/initialSourceAvailabilityZone") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-availabilityzoneplacement-properties-initialsourceavailabilityzone.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/2/then/properties/parameters/properties/data/properties/availabilityZonePlacement/properties/initialSourceAvailabilityZone") ### initialSourceAvailabilityZone Type @@ -78,7 +78,7 @@ This zone will be used by the primary instance * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-availabilityzoneplacement-properties-primaryavailabilityzone.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/2/then/properties/parameters/properties/data/properties/availabilityZonePlacement/properties/primaryAvailabilityZone") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-availabilityzoneplacement-properties-primaryavailabilityzone.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/2/then/properties/parameters/properties/data/properties/availabilityZonePlacement/properties/primaryAvailabilityZone") ### primaryAvailabilityZone Type @@ -96,7 +96,7 @@ This zone will be used by the secondary instance, if defined in .disasterRecover * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-availabilityzoneplacement-properties-secondaryavailabilityzone.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/2/then/properties/parameters/properties/data/properties/availabilityZonePlacement/properties/secondaryAvailabilityZone") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-availabilityzoneplacement-properties-secondaryavailabilityzone.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/2/then/properties/parameters/properties/data/properties/availabilityZonePlacement/properties/secondaryAvailabilityZone") ### secondaryAvailabilityZone Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-backup-properties-retentiondays.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-backup-properties-retentiondays.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-backup-properties-retentiondays.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-backup-properties-retentiondays.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-backup.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-backup.md similarity index 86% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-backup.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-backup.md index 00a867a0..87ebd8e0 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-backup.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-backup.md @@ -1,12 +1,12 @@ ## backup Type -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-backup.md)) +`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-backup.md)) # backup Properties | Property | Type | Required | Nullable | Defined by | | :------------------------------ | :-------- | :------- | :------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [retentionDays](#retentiondays) | `integer` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-backup-properties-retentiondays.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/2/then/properties/parameters/properties/data/properties/backup/properties/retentionDays") | +| [retentionDays](#retentiondays) | `integer` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-backup-properties-retentiondays.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/2/then/properties/parameters/properties/data/properties/backup/properties/retentionDays") | ## retentionDays @@ -20,7 +20,7 @@ Specifies the retention period for a backup in days * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-backup-properties-retentiondays.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/2/then/properties/parameters/properties/data/properties/backup/properties/retentionDays") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-backup-properties-retentiondays.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/2/then/properties/parameters/properties/data/properties/backup/properties/retentionDays") ### retentionDays Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-databasemappings-items-properties-organization_guid.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-databasemappings-items-properties-organization_guid.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-databasemappings-items-properties-organization_guid.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-databasemappings-items-properties-organization_guid.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-databasemappings-items-properties-space_guid.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-databasemappings-items-properties-space_guid.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-databasemappings-items-properties-space_guid.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-databasemappings-items-properties-space_guid.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-databasemappings-items.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-databasemappings-items.md similarity index 85% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-databasemappings-items.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-databasemappings-items.md index cd7e5548..ba3bb63b 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-databasemappings-items.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-databasemappings-items.md @@ -1,13 +1,13 @@ ## items Type -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-databasemappings-items.md)) +`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-databasemappings-items.md)) # items Properties | Property | Type | Required | Nullable | Defined by | | :--------------------------------------- | :------- | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| [organization\_guid](#organization_guid) | `string` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-databasemappings-items-properties-organization_guid.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/2/then/properties/parameters/properties/data/properties/databaseMappings/items/properties/organization_guid") | -| [space\_guid](#space_guid) | `string` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-databasemappings-items-properties-space_guid.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/2/then/properties/parameters/properties/data/properties/databaseMappings/items/properties/space_guid") | +| [organization\_guid](#organization_guid) | `string` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-databasemappings-items-properties-organization_guid.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/2/then/properties/parameters/properties/data/properties/databaseMappings/items/properties/organization_guid") | +| [space\_guid](#space_guid) | `string` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-databasemappings-items-properties-space_guid.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/2/then/properties/parameters/properties/data/properties/databaseMappings/items/properties/space_guid") | ## organization\_guid @@ -21,7 +21,7 @@ * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-databasemappings-items-properties-organization_guid.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/2/then/properties/parameters/properties/data/properties/databaseMappings/items/properties/organization_guid") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-databasemappings-items-properties-organization_guid.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/2/then/properties/parameters/properties/data/properties/databaseMappings/items/properties/organization_guid") ### organization\_guid Type @@ -49,7 +49,7 @@ * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-databasemappings-items-properties-space_guid.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/2/then/properties/parameters/properties/data/properties/databaseMappings/items/properties/space_guid") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-databasemappings-items-properties-space_guid.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/2/then/properties/parameters/properties/data/properties/databaseMappings/items/properties/space_guid") ### space\_guid Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-databasemappings.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-databasemappings.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-databasemappings.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-databasemappings.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-disasterrecoverymode.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-disasterrecoverymode.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-disasterrecoverymode.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-disasterrecoverymode.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-edition.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-edition.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-edition.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-edition.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-enabledservices-properties-docstore.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-enabledservices-properties-docstore.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-enabledservices-properties-docstore.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-enabledservices-properties-docstore.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-enabledservices-properties-dpserver.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-enabledservices-properties-dpserver.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-enabledservices-properties-dpserver.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-enabledservices-properties-dpserver.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-enabledservices-properties-scriptserver.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-enabledservices-properties-scriptserver.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-enabledservices-properties-scriptserver.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-enabledservices-properties-scriptserver.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-enabledservices.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-enabledservices.md similarity index 79% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-enabledservices.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-enabledservices.md index de01ed51..4dbf771d 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-enabledservices.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-enabledservices.md @@ -1,14 +1,14 @@ ## enabledservices Type -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-enabledservices.md)) +`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-enabledservices.md)) # enabledservices Properties | Property | Type | Required | Nullable | Defined by | | :---------------------------- | :-------- | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| [docstore](#docstore) | `boolean` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-enabledservices-properties-docstore.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/2/then/properties/parameters/properties/data/properties/enabledservices/properties/docstore") | -| [dpserver](#dpserver) | `boolean` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-enabledservices-properties-dpserver.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/2/then/properties/parameters/properties/data/properties/enabledservices/properties/dpserver") | -| [scriptserver](#scriptserver) | `boolean` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-enabledservices-properties-scriptserver.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/2/then/properties/parameters/properties/data/properties/enabledservices/properties/scriptserver") | +| [docstore](#docstore) | `boolean` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-enabledservices-properties-docstore.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/2/then/properties/parameters/properties/data/properties/enabledservices/properties/docstore") | +| [dpserver](#dpserver) | `boolean` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-enabledservices-properties-dpserver.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/2/then/properties/parameters/properties/data/properties/enabledservices/properties/dpserver") | +| [scriptserver](#scriptserver) | `boolean` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-enabledservices-properties-scriptserver.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/2/then/properties/parameters/properties/data/properties/enabledservices/properties/scriptserver") | ## docstore @@ -22,7 +22,7 @@ * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-enabledservices-properties-docstore.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/2/then/properties/parameters/properties/data/properties/enabledservices/properties/docstore") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-enabledservices-properties-docstore.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/2/then/properties/parameters/properties/data/properties/enabledservices/properties/docstore") ### docstore Type @@ -40,7 +40,7 @@ * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-enabledservices-properties-dpserver.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/2/then/properties/parameters/properties/data/properties/enabledservices/properties/dpserver") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-enabledservices-properties-dpserver.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/2/then/properties/parameters/properties/data/properties/enabledservices/properties/dpserver") ### dpserver Type @@ -58,7 +58,7 @@ * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-enabledservices-properties-scriptserver.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/2/then/properties/parameters/properties/data/properties/enabledservices/properties/scriptserver") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-enabledservices-properties-scriptserver.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/2/then/properties/parameters/properties/data/properties/enabledservices/properties/scriptserver") ### scriptserver Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-extensionservices-items-properties-enabled.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-extensionservices-items-properties-enabled.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-extensionservices-items-properties-enabled.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-extensionservices-items-properties-enabled.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-extensionservices-items-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-extensionservices-items-properties-name.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-extensionservices-items-properties-name.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-extensionservices-items-properties-name.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-extensionservices-items-properties-whitelistips-items.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-extensionservices-items-properties-whitelistips-items.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-extensionservices-items-properties-whitelistips-items.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-extensionservices-items-properties-whitelistips-items.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-extensionservices-items-properties-whitelistips.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-extensionservices-items-properties-whitelistips.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-extensionservices-items-properties-whitelistips.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-extensionservices-items-properties-whitelistips.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-extensionservices-items.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-extensionservices-items.md similarity index 81% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-extensionservices-items.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-extensionservices-items.md index fb87e586..7b3f250b 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-extensionservices-items.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-extensionservices-items.md @@ -1,14 +1,14 @@ ## items Type -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-extensionservices-items.md)) +`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-extensionservices-items.md)) # items Properties | Property | Type | Required | Nullable | Defined by | | :---------------------------- | :-------- | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [enabled](#enabled) | `boolean` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-extensionservices-items-properties-enabled.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/2/then/properties/parameters/properties/data/properties/extensionservices/items/properties/enabled") | -| [name](#name) | `string` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-extensionservices-items-properties-name.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/2/then/properties/parameters/properties/data/properties/extensionservices/items/properties/name") | -| [whitelistIPs](#whitelistips) | `array` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-extensionservices-items-properties-whitelistips.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/2/then/properties/parameters/properties/data/properties/extensionservices/items/properties/whitelistIPs") | +| [enabled](#enabled) | `boolean` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-extensionservices-items-properties-enabled.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/2/then/properties/parameters/properties/data/properties/extensionservices/items/properties/enabled") | +| [name](#name) | `string` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-extensionservices-items-properties-name.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/2/then/properties/parameters/properties/data/properties/extensionservices/items/properties/name") | +| [whitelistIPs](#whitelistips) | `array` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-extensionservices-items-properties-whitelistips.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/2/then/properties/parameters/properties/data/properties/extensionservices/items/properties/whitelistIPs") | ## enabled @@ -22,7 +22,7 @@ * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-extensionservices-items-properties-enabled.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/2/then/properties/parameters/properties/data/properties/extensionservices/items/properties/enabled") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-extensionservices-items-properties-enabled.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/2/then/properties/parameters/properties/data/properties/extensionservices/items/properties/enabled") ### enabled Type @@ -40,7 +40,7 @@ * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-extensionservices-items-properties-name.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/2/then/properties/parameters/properties/data/properties/extensionservices/items/properties/name") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-extensionservices-items-properties-name.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/2/then/properties/parameters/properties/data/properties/extensionservices/items/properties/name") ### name Type @@ -68,7 +68,7 @@ * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-extensionservices-items-properties-whitelistips.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/2/then/properties/parameters/properties/data/properties/extensionservices/items/properties/whitelistIPs") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-extensionservices-items-properties-whitelistips.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/2/then/properties/parameters/properties/data/properties/extensionservices/items/properties/whitelistIPs") ### whitelistIPs Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-extensionservices.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-extensionservices.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-extensionservices.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-extensionservices.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-memory.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-memory.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-memory.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-memory.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-memoryscaleout.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-memoryscaleout.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-memoryscaleout.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-memoryscaleout.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-productversion-properties-id.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-productversion-properties-id.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-productversion-properties-id.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-productversion-properties-id.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-productversion-properties-releasecycle.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-productversion-properties-releasecycle.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-productversion-properties-releasecycle.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-productversion-properties-releasecycle.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-productversion-properties-track.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-productversion-properties-track.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-productversion-properties-track.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-productversion-properties-track.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-productversion.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-productversion.md similarity index 79% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-productversion.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-productversion.md index 3c8188af..9e2b9f53 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-productversion.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-productversion.md @@ -1,14 +1,14 @@ ## productVersion Type -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-productversion.md)) +`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-productversion.md)) # productVersion Properties | Property | Type | Required | Nullable | Defined by | | :---------------------------- | :------- | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [id](#id) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-productversion-properties-id.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/2/then/properties/parameters/properties/data/properties/productVersion/properties/id") | -| [releaseCycle](#releasecycle) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-productversion-properties-releasecycle.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/2/then/properties/parameters/properties/data/properties/productVersion/properties/releaseCycle") | -| [track](#track) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-productversion-properties-track.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/2/then/properties/parameters/properties/data/properties/productVersion/properties/track") | +| [id](#id) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-productversion-properties-id.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/2/then/properties/parameters/properties/data/properties/productVersion/properties/id") | +| [releaseCycle](#releasecycle) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-productversion-properties-releasecycle.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/2/then/properties/parameters/properties/data/properties/productVersion/properties/releaseCycle") | +| [track](#track) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-productversion-properties-track.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/2/then/properties/parameters/properties/data/properties/productVersion/properties/track") | ## id @@ -22,7 +22,7 @@ * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-productversion-properties-id.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/2/then/properties/parameters/properties/data/properties/productVersion/properties/id") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-productversion-properties-id.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/2/then/properties/parameters/properties/data/properties/productVersion/properties/id") ### id Type @@ -40,7 +40,7 @@ * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-productversion-properties-releasecycle.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/2/then/properties/parameters/properties/data/properties/productVersion/properties/releaseCycle") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-productversion-properties-releasecycle.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/2/then/properties/parameters/properties/data/properties/productVersion/properties/releaseCycle") ### releaseCycle Type @@ -58,7 +58,7 @@ * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-productversion-properties-track.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/2/then/properties/parameters/properties/data/properties/productVersion/properties/track") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-productversion-properties-track.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/2/then/properties/parameters/properties/data/properties/productVersion/properties/track") ### track Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-project_name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-project_name.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-project_name.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-project_name.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-requestedoperation-properties-arguments-properties-backup_encryption_passphrase.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-requestedoperation-properties-arguments-properties-backup_encryption_passphrase.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-requestedoperation-properties-arguments-properties-backup_encryption_passphrase.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-requestedoperation-properties-arguments-properties-backup_encryption_passphrase.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-requestedoperation-properties-arguments-properties-hdl_access_token.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-requestedoperation-properties-arguments-properties-hdl_access_token.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-requestedoperation-properties-arguments-properties-hdl_access_token.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-requestedoperation-properties-arguments-properties-hdl_access_token.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-requestedoperation-properties-arguments-properties-project_name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-requestedoperation-properties-arguments-properties-project_name.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-requestedoperation-properties-arguments-properties-project_name.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-requestedoperation-properties-arguments-properties-project_name.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-requestedoperation-properties-arguments-properties-template_name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-requestedoperation-properties-arguments-properties-template_name.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-requestedoperation-properties-arguments-properties-template_name.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-requestedoperation-properties-arguments-properties-template_name.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-requestedoperation-properties-arguments-properties-template_storage_endpoint.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-requestedoperation-properties-arguments-properties-template_storage_endpoint.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-requestedoperation-properties-arguments-properties-template_storage_endpoint.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-requestedoperation-properties-arguments-properties-template_storage_endpoint.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-requestedoperation-properties-arguments.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-requestedoperation-properties-arguments.md similarity index 81% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-requestedoperation-properties-arguments.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-requestedoperation-properties-arguments.md index 63db323b..ae58af64 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-requestedoperation-properties-arguments.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-requestedoperation-properties-arguments.md @@ -1,16 +1,16 @@ ## arguments Type -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-requestedoperation-properties-arguments.md)) +`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-requestedoperation-properties-arguments.md)) # arguments Properties | Property | Type | Required | Nullable | Defined by | | :-------------------------------------------------------------- | :------- | :------- | :------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [backup\_encryption\_passphrase](#backup_encryption_passphrase) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-requestedoperation-properties-arguments-properties-backup_encryption_passphrase.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/2/then/properties/parameters/properties/data/properties/requestedOperation/properties/arguments/properties/backup_encryption_passphrase") | -| [hdl\_access\_token](#hdl_access_token) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-requestedoperation-properties-arguments-properties-hdl_access_token.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/2/then/properties/parameters/properties/data/properties/requestedOperation/properties/arguments/properties/hdl_access_token") | -| [project\_name](#project_name) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-requestedoperation-properties-arguments-properties-project_name.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/2/then/properties/parameters/properties/data/properties/requestedOperation/properties/arguments/properties/project_name") | -| [template\_name](#template_name) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-requestedoperation-properties-arguments-properties-template_name.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/2/then/properties/parameters/properties/data/properties/requestedOperation/properties/arguments/properties/template_name") | -| [template\_storage\_endpoint](#template_storage_endpoint) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-requestedoperation-properties-arguments-properties-template_storage_endpoint.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/2/then/properties/parameters/properties/data/properties/requestedOperation/properties/arguments/properties/template_storage_endpoint") | +| [backup\_encryption\_passphrase](#backup_encryption_passphrase) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-requestedoperation-properties-arguments-properties-backup_encryption_passphrase.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/2/then/properties/parameters/properties/data/properties/requestedOperation/properties/arguments/properties/backup_encryption_passphrase") | +| [hdl\_access\_token](#hdl_access_token) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-requestedoperation-properties-arguments-properties-hdl_access_token.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/2/then/properties/parameters/properties/data/properties/requestedOperation/properties/arguments/properties/hdl_access_token") | +| [project\_name](#project_name) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-requestedoperation-properties-arguments-properties-project_name.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/2/then/properties/parameters/properties/data/properties/requestedOperation/properties/arguments/properties/project_name") | +| [template\_name](#template_name) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-requestedoperation-properties-arguments-properties-template_name.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/2/then/properties/parameters/properties/data/properties/requestedOperation/properties/arguments/properties/template_name") | +| [template\_storage\_endpoint](#template_storage_endpoint) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-requestedoperation-properties-arguments-properties-template_storage_endpoint.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/2/then/properties/parameters/properties/data/properties/requestedOperation/properties/arguments/properties/template_storage_endpoint") | ## backup\_encryption\_passphrase @@ -24,7 +24,7 @@ * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-requestedoperation-properties-arguments-properties-backup_encryption_passphrase.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/2/then/properties/parameters/properties/data/properties/requestedOperation/properties/arguments/properties/backup_encryption_passphrase") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-requestedoperation-properties-arguments-properties-backup_encryption_passphrase.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/2/then/properties/parameters/properties/data/properties/requestedOperation/properties/arguments/properties/backup_encryption_passphrase") ### backup\_encryption\_passphrase Type @@ -42,7 +42,7 @@ * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-requestedoperation-properties-arguments-properties-hdl_access_token.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/2/then/properties/parameters/properties/data/properties/requestedOperation/properties/arguments/properties/hdl_access_token") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-requestedoperation-properties-arguments-properties-hdl_access_token.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/2/then/properties/parameters/properties/data/properties/requestedOperation/properties/arguments/properties/hdl_access_token") ### hdl\_access\_token Type @@ -60,7 +60,7 @@ * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-requestedoperation-properties-arguments-properties-project_name.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/2/then/properties/parameters/properties/data/properties/requestedOperation/properties/arguments/properties/project_name") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-requestedoperation-properties-arguments-properties-project_name.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/2/then/properties/parameters/properties/data/properties/requestedOperation/properties/arguments/properties/project_name") ### project\_name Type @@ -78,7 +78,7 @@ * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-requestedoperation-properties-arguments-properties-template_name.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/2/then/properties/parameters/properties/data/properties/requestedOperation/properties/arguments/properties/template_name") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-requestedoperation-properties-arguments-properties-template_name.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/2/then/properties/parameters/properties/data/properties/requestedOperation/properties/arguments/properties/template_name") ### template\_name Type @@ -96,7 +96,7 @@ * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-requestedoperation-properties-arguments-properties-template_storage_endpoint.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/2/then/properties/parameters/properties/data/properties/requestedOperation/properties/arguments/properties/template_storage_endpoint") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-requestedoperation-properties-arguments-properties-template_storage_endpoint.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/2/then/properties/parameters/properties/data/properties/requestedOperation/properties/arguments/properties/template_storage_endpoint") ### template\_storage\_endpoint Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-requestedoperation-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-requestedoperation-properties-name.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-requestedoperation-properties-name.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-requestedoperation-properties-name.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-requestedoperation.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-requestedoperation.md similarity index 81% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-requestedoperation.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-requestedoperation.md index 2c915f73..4a45514e 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-requestedoperation.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-requestedoperation.md @@ -1,13 +1,13 @@ ## requestedOperation Type -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-requestedoperation.md)) +`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-requestedoperation.md)) # requestedOperation Properties | Property | Type | Required | Nullable | Defined by | | :---------------------- | :------- | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| [arguments](#arguments) | `object` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-requestedoperation-properties-arguments.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/2/then/properties/parameters/properties/data/properties/requestedOperation/properties/arguments") | -| [name](#name) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-requestedoperation-properties-name.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/2/then/properties/parameters/properties/data/properties/requestedOperation/properties/name") | +| [arguments](#arguments) | `object` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-requestedoperation-properties-arguments.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/2/then/properties/parameters/properties/data/properties/requestedOperation/properties/arguments") | +| [name](#name) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-requestedoperation-properties-name.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/2/then/properties/parameters/properties/data/properties/requestedOperation/properties/name") | ## arguments @@ -17,15 +17,15 @@ List of operation arguments * is optional -* Type: `object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-requestedoperation-properties-arguments.md)) +* Type: `object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-requestedoperation-properties-arguments.md)) * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-requestedoperation-properties-arguments.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/2/then/properties/parameters/properties/data/properties/requestedOperation/properties/arguments") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-requestedoperation-properties-arguments.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/2/then/properties/parameters/properties/data/properties/requestedOperation/properties/arguments") ### arguments Type -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-requestedoperation-properties-arguments.md)) +`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-requestedoperation-properties-arguments.md)) ## name @@ -39,7 +39,7 @@ create instance for template recovery * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-requestedoperation-properties-name.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/2/then/properties/parameters/properties/data/properties/requestedOperation/properties/name") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-requestedoperation-properties-name.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/2/then/properties/parameters/properties/data/properties/requestedOperation/properties/name") ### name Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-servicestopped.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-servicestopped.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-servicestopped.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-servicestopped.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-slalevel.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-slalevel.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-slalevel.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-slalevel.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-storage.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-storage.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-storage.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-storage.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-systempassword.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-systempassword.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-systempassword.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-systempassword.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-template_name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-template_name.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-template_name.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-template_name.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-update_strategy.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-update_strategy.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-update_strategy.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-update_strategy.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-vcpu.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-vcpu.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-vcpu.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-vcpu.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-versionindicator.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-versionindicator.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-versionindicator.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-versionindicator.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-whitelistips-items.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-whitelistips-items.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-whitelistips-items.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-whitelistips-items.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-whitelistips.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-whitelistips.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-whitelistips.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-whitelistips.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data.md similarity index 76% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data.md index c72bbda5..d4d3e49b 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data.md @@ -1,33 +1,33 @@ ## data Type -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data.md)) +`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data.md)) # data Properties | Property | Type | Required | Nullable | Defined by | | :------------------------------------------------------ | :------------ | :------- | :------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [additionalWorkers](#additionalworkers) | `integer` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-additionalworkers.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/2/then/properties/parameters/properties/data/properties/additionalWorkers") | -| [availabilityZonePlacement](#availabilityzoneplacement) | `object` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-availabilityzoneplacement.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/2/then/properties/parameters/properties/data/properties/availabilityZonePlacement") | -| [backup](#backup) | `object` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-backup.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/2/then/properties/parameters/properties/data/properties/backup") | -| [databaseMappings](#databasemappings) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-databasemappings.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/2/then/properties/parameters/properties/data/properties/databaseMappings") | -| [disasterRecoveryMode](#disasterrecoverymode) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-disasterrecoverymode.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/2/then/properties/parameters/properties/data/properties/disasterRecoveryMode") | -| [edition](#edition) | `string` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-edition.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/2/then/properties/parameters/properties/data/properties/edition") | -| [enabledservices](#enabledservices) | `object` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-enabledservices.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/2/then/properties/parameters/properties/data/properties/enabledservices") | -| [extensionservices](#extensionservices) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-extensionservices.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/2/then/properties/parameters/properties/data/properties/extensionservices") | -| [memory](#memory) | `integer` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-memory.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/2/then/properties/parameters/properties/data/properties/memory") | -| [memoryScaleOut](#memoryscaleout) | `integer` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-memoryscaleout.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/2/then/properties/parameters/properties/data/properties/memoryScaleOut") | -| [productVersion](#productversion) | `object` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-productversion.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/2/then/properties/parameters/properties/data/properties/productVersion") | -| [project\_name](#project_name) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-project_name.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/2/then/properties/parameters/properties/data/properties/project_name") | -| [requestedOperation](#requestedoperation) | `object` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-requestedoperation.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/2/then/properties/parameters/properties/data/properties/requestedOperation") | -| [serviceStopped](#servicestopped) | `boolean` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-servicestopped.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/2/then/properties/parameters/properties/data/properties/serviceStopped") | -| [slaLevel](#slalevel) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-slalevel.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/2/then/properties/parameters/properties/data/properties/slaLevel") | -| [storage](#storage) | `integer` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-storage.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/2/then/properties/parameters/properties/data/properties/storage") | -| [systempassword](#systempassword) | `string` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-systempassword.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/2/then/properties/parameters/properties/data/properties/systempassword") | -| [template\_name](#template_name) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-template_name.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/2/then/properties/parameters/properties/data/properties/template_name") | -| [update\_strategy](#update_strategy) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-update_strategy.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/2/then/properties/parameters/properties/data/properties/update_strategy") | -| [vcpu](#vcpu) | `integer` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-vcpu.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/2/then/properties/parameters/properties/data/properties/vcpu") | -| [versionIndicator](#versionindicator) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-versionindicator.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/2/then/properties/parameters/properties/data/properties/versionIndicator") | -| [whitelistIPs](#whitelistips) | `array` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-whitelistips.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/2/then/properties/parameters/properties/data/properties/whitelistIPs") | +| [additionalWorkers](#additionalworkers) | `integer` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-additionalworkers.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/2/then/properties/parameters/properties/data/properties/additionalWorkers") | +| [availabilityZonePlacement](#availabilityzoneplacement) | `object` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-availabilityzoneplacement.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/2/then/properties/parameters/properties/data/properties/availabilityZonePlacement") | +| [backup](#backup) | `object` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-backup.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/2/then/properties/parameters/properties/data/properties/backup") | +| [databaseMappings](#databasemappings) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-databasemappings.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/2/then/properties/parameters/properties/data/properties/databaseMappings") | +| [disasterRecoveryMode](#disasterrecoverymode) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-disasterrecoverymode.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/2/then/properties/parameters/properties/data/properties/disasterRecoveryMode") | +| [edition](#edition) | `string` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-edition.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/2/then/properties/parameters/properties/data/properties/edition") | +| [enabledservices](#enabledservices) | `object` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-enabledservices.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/2/then/properties/parameters/properties/data/properties/enabledservices") | +| [extensionservices](#extensionservices) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-extensionservices.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/2/then/properties/parameters/properties/data/properties/extensionservices") | +| [memory](#memory) | `integer` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-memory.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/2/then/properties/parameters/properties/data/properties/memory") | +| [memoryScaleOut](#memoryscaleout) | `integer` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-memoryscaleout.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/2/then/properties/parameters/properties/data/properties/memoryScaleOut") | +| [productVersion](#productversion) | `object` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-productversion.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/2/then/properties/parameters/properties/data/properties/productVersion") | +| [project\_name](#project_name) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-project_name.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/2/then/properties/parameters/properties/data/properties/project_name") | +| [requestedOperation](#requestedoperation) | `object` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-requestedoperation.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/2/then/properties/parameters/properties/data/properties/requestedOperation") | +| [serviceStopped](#servicestopped) | `boolean` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-servicestopped.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/2/then/properties/parameters/properties/data/properties/serviceStopped") | +| [slaLevel](#slalevel) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-slalevel.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/2/then/properties/parameters/properties/data/properties/slaLevel") | +| [storage](#storage) | `integer` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-storage.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/2/then/properties/parameters/properties/data/properties/storage") | +| [systempassword](#systempassword) | `string` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-systempassword.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/2/then/properties/parameters/properties/data/properties/systempassword") | +| [template\_name](#template_name) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-template_name.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/2/then/properties/parameters/properties/data/properties/template_name") | +| [update\_strategy](#update_strategy) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-update_strategy.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/2/then/properties/parameters/properties/data/properties/update_strategy") | +| [vcpu](#vcpu) | `integer` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-vcpu.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/2/then/properties/parameters/properties/data/properties/vcpu") | +| [versionIndicator](#versionindicator) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-versionindicator.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/2/then/properties/parameters/properties/data/properties/versionIndicator") | +| [whitelistIPs](#whitelistips) | `array` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-whitelistips.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/2/then/properties/parameters/properties/data/properties/whitelistIPs") | ## additionalWorkers @@ -41,7 +41,7 @@ Number of additional workers for scale out systems * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-additionalworkers.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/2/then/properties/parameters/properties/data/properties/additionalWorkers") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-additionalworkers.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/2/then/properties/parameters/properties/data/properties/additionalWorkers") ### additionalWorkers Type @@ -63,15 +63,15 @@ Settings that enable the customer to ensure spatial proximity between their appl * is optional -* Type: `object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-availabilityzoneplacement.md)) +* Type: `object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-availabilityzoneplacement.md)) * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-availabilityzoneplacement.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/2/then/properties/parameters/properties/data/properties/availabilityZonePlacement") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-availabilityzoneplacement.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/2/then/properties/parameters/properties/data/properties/availabilityZonePlacement") ### availabilityZonePlacement Type -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-availabilityzoneplacement.md)) +`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-availabilityzoneplacement.md)) ## backup @@ -81,15 +81,15 @@ Backup service properties * is optional -* Type: `object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-backup.md)) +* Type: `object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-backup.md)) * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-backup.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/2/then/properties/parameters/properties/data/properties/backup") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-backup.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/2/then/properties/parameters/properties/data/properties/backup") ### backup Type -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-backup.md)) +`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-backup.md)) ## databaseMappings @@ -103,7 +103,7 @@ Backup service properties * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-databasemappings.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/2/then/properties/parameters/properties/data/properties/databaseMappings") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-databasemappings.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/2/then/properties/parameters/properties/data/properties/databaseMappings") ### databaseMappings Type @@ -121,7 +121,7 @@ Disaster Recovery of the HANA instance * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-disasterrecoverymode.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/2/then/properties/parameters/properties/data/properties/disasterRecoveryMode") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-disasterrecoverymode.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/2/then/properties/parameters/properties/data/properties/disasterRecoveryMode") ### disasterRecoveryMode Type @@ -148,7 +148,7 @@ Image edition (cloud vs. orange) * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-edition.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/2/then/properties/parameters/properties/data/properties/edition") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-edition.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/2/then/properties/parameters/properties/data/properties/edition") ### edition Type @@ -179,15 +179,15 @@ List of services of the HANA to be enabled * is optional -* Type: `object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-enabledservices.md)) +* Type: `object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-enabledservices.md)) * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-enabledservices.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/2/then/properties/parameters/properties/data/properties/enabledservices") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-enabledservices.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/2/then/properties/parameters/properties/data/properties/enabledservices") ### enabledservices Type -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-enabledservices.md)) +`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-enabledservices.md)) ## extensionservices @@ -201,7 +201,7 @@ List of services of the HANA to be enabled * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-extensionservices.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/2/then/properties/parameters/properties/data/properties/extensionservices") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-extensionservices.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/2/then/properties/parameters/properties/data/properties/extensionservices") ### extensionservices Type @@ -219,7 +219,7 @@ HANA memory size (RAM) in GB * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-memory.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/2/then/properties/parameters/properties/data/properties/memory") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-memory.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/2/then/properties/parameters/properties/data/properties/memory") ### memory Type @@ -253,7 +253,7 @@ HANA memory size (RAM) in GB for scale out systems * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-memoryscaleout.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/2/then/properties/parameters/properties/data/properties/memoryScaleOut") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-memoryscaleout.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/2/then/properties/parameters/properties/data/properties/memoryScaleOut") ### memoryScaleOut Type @@ -275,15 +275,15 @@ HANA Product Version * is optional -* Type: `object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-productversion.md)) +* Type: `object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-productversion.md)) * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-productversion.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/2/then/properties/parameters/properties/data/properties/productVersion") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-productversion.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/2/then/properties/parameters/properties/data/properties/productVersion") ### productVersion Type -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-productversion.md)) +`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-productversion.md)) ## project\_name @@ -297,7 +297,7 @@ HANA Product Version * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-project_name.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/2/then/properties/parameters/properties/data/properties/project_name") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-project_name.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/2/then/properties/parameters/properties/data/properties/project_name") ### project\_name Type @@ -311,15 +311,15 @@ HANA Product Version * is optional -* Type: `object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-requestedoperation.md)) +* Type: `object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-requestedoperation.md)) * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-requestedoperation.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/2/then/properties/parameters/properties/data/properties/requestedOperation") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-requestedoperation.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/2/then/properties/parameters/properties/data/properties/requestedOperation") ### requestedOperation Type -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-requestedoperation.md)) +`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-requestedoperation.md)) ## serviceStopped @@ -333,7 +333,7 @@ Describes if the system should be running or stopped * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-servicestopped.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/2/then/properties/parameters/properties/data/properties/serviceStopped") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-servicestopped.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/2/then/properties/parameters/properties/data/properties/serviceStopped") ### serviceStopped Type @@ -351,7 +351,7 @@ Availability of the HANA instance * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-slalevel.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/2/then/properties/parameters/properties/data/properties/slaLevel") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-slalevel.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/2/then/properties/parameters/properties/data/properties/slaLevel") ### slaLevel Type @@ -378,7 +378,7 @@ Size of the Storage in GB * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-storage.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/2/then/properties/parameters/properties/data/properties/storage") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-storage.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/2/then/properties/parameters/properties/data/properties/storage") ### storage Type @@ -404,7 +404,7 @@ Password to be set for tenant * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-systempassword.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/2/then/properties/parameters/properties/data/properties/systempassword") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-systempassword.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/2/then/properties/parameters/properties/data/properties/systempassword") ### systempassword Type @@ -426,7 +426,7 @@ Password to be set for tenant * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-template_name.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/2/then/properties/parameters/properties/data/properties/template_name") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-template_name.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/2/then/properties/parameters/properties/data/properties/template_name") ### template\_name Type @@ -444,7 +444,7 @@ preferred behaviour for version upgrades. with\_restart: the database will be sh * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-update_strategy.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/2/then/properties/parameters/properties/data/properties/update_strategy") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-update_strategy.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/2/then/properties/parameters/properties/data/properties/update_strategy") ### update\_strategy Type @@ -471,7 +471,7 @@ Number of vCPUs used by HANA * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-vcpu.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/2/then/properties/parameters/properties/data/properties/vcpu") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-vcpu.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/2/then/properties/parameters/properties/data/properties/vcpu") ### vcpu Type @@ -493,7 +493,7 @@ The version of the service to use * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-versionindicator.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/2/then/properties/parameters/properties/data/properties/versionIndicator") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-versionindicator.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/2/then/properties/parameters/properties/data/properties/versionIndicator") ### versionIndicator Type @@ -511,7 +511,7 @@ The version of the service to use * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data-properties-whitelistips.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/2/then/properties/parameters/properties/data/properties/whitelistIPs") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data-properties-whitelistips.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/2/then/properties/parameters/properties/data/properties/whitelistIPs") ### whitelistIPs Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-metadata-propertynames.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-metadata-propertynames.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-metadata-propertynames.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-metadata-propertynames.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters-properties-metadata.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-metadata.md similarity index 87% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters-properties-metadata.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-metadata.md index cc0f072d..973dfca5 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters-properties-metadata.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-metadata.md @@ -1,6 +1,6 @@ ## metadata Type -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters-properties-metadata.md)) +`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-metadata.md)) # metadata Properties diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters.md similarity index 72% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters.md index 0d4bcfc5..f9d2c89e 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters.md @@ -1,13 +1,13 @@ ## parameters Type -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters.md)) +`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters.md)) # parameters Properties | Property | Type | Required | Nullable | Defined by | | :-------------------- | :------- | :------- | :------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [data](#data) | `object` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/2/then/properties/parameters/properties/data") | -| [metadata](#metadata) | `object` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-metadata.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/2/then/properties/parameters/properties/metadata") | +| [data](#data) | `object` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/2/then/properties/parameters/properties/data") | +| [metadata](#metadata) | `object` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-metadata.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/2/then/properties/parameters/properties/metadata") | ## data @@ -17,15 +17,15 @@ * is required -* Type: `object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data.md)) +* Type: `object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data.md)) * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/2/then/properties/parameters/properties/data") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/2/then/properties/parameters/properties/data") ### data Type -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-data.md)) +`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-data.md)) ## metadata @@ -35,12 +35,12 @@ * is optional -* Type: `object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-metadata.md)) +* Type: `object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-metadata.md)) * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-metadata.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/2/then/properties/parameters/properties/metadata") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-metadata.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/2/then/properties/parameters/properties/metadata") ### metadata Type -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-metadata.md)) +`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters-properties-metadata.md)) diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then.md index 0a979819..d63ebf35 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then.md @@ -4,28 +4,34 @@ unknown # then Properties -| Property | Type | Required | Nullable | Defined by | -| :------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/2/then/properties/plan") | +| Property | Type | Required | Nullable | Defined by | +| :------------------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/2/then/properties/plan") | +| [parameters](#parameters) | `object` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/2/then/properties/parameters") | ## plan -service plan >128premium< for >hana-db< is available in data centers: - -* {'region': 'ae1', 'name': 'UAE (Dubai)'} -* {'region': 'ap1', 'name': 'Australia (Sydney)'} -* {'region': 'br1', 'name': 'Brazil (Sao Paulo)'} -* {'region': 'ca1', 'name': 'Canada (Toronto)'} -* {'region': 'cn1', 'name': 'China (Shanghai)'} -* {'region': 'eu1', 'name': 'Europe (Rot)'} -* {'region': 'eu2', 'name': 'Europe (Frankfurt)'} -* {'region': 'eu3', 'name': 'Europe (Amsterdam)'} -* {'region': 'jp1', 'name': 'Japan (Tokyo)'} -* {'region': 'sa1', 'name': 'KSA (Riyadh)'} -* {'region': 'us1', 'name': 'US East (Ashburn)'} -* {'region': 'us2', 'name': 'US West (Chandler)'} -* {'region': 'us3', 'name': 'US East (Sterling)'} -* {'region': 'us4', 'name': 'US West (Colorado Springs)'} +service plan >hana< for >hana-cloud< is available in data centers: + +* {'region': 'ap10', 'name': 'Australia (Sydney)'} +* {'region': 'ap11', 'name': 'Singapore'} +* {'region': 'ap12', 'name': 'South Korea (Seoul)'} +* {'region': 'ap20', 'name': 'Australia (Sydney) Azure'} +* {'region': 'ap21', 'name': 'Singapore'} +* {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} +* {'region': 'ca10', 'name': 'Canada (Montreal)'} +* {'region': 'ch20', 'name': 'cf-ch20'} +* {'region': 'eu10', 'name': 'Europe (Frankfurt)'} +* {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} +* {'region': 'eu20', 'name': 'Europe (Netherlands)'} +* {'region': 'eu30', 'name': 'Europe (Frankfurt)'} +* {'region': 'in30', 'name': 'India (Mumbai)'} +* {'region': 'jp10', 'name': 'Japan (Tokyo)'} +* {'region': 'jp20', 'name': 'Japan (Tokyo)'} +* {'region': 'us10', 'name': 'US East (VA)'} +* {'region': 'us20', 'name': 'US West (WA)'} +* {'region': 'us21', 'name': 'US East (VA)'} +* {'region': 'us30', 'name': 'US Central (IA)'} `plan` @@ -40,3 +46,21 @@ service plan >128premium< for >hana-db< is available in data centers: ### plan Type unknown + +## parameters + + + +`parameters` + +* is required + +* Type: `object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters.md)) + +* cannot be null + +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/2/then/properties/parameters") + +### parameters Type + +`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-2-then-properties-parameters.md)) diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-3-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-3-if-properties-plan.md index 0870f555..f7b1e2a4 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-3-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-3-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"128standard" +"hana-cloud-connection" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-3-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-3-if.md index 7fe3abbe..839d0f85 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-3-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-3-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"128standard" +"hana-cloud-connection" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-3-then-properties-parameters-properties-data-properties-datalakeid.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-3-then-properties-parameters-properties-data-properties-datalakeid.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-3-then-properties-parameters-properties-data-properties-datalakeid.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-3-then-properties-parameters-properties-data-properties-datalakeid.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-3-then-properties-parameters-properties-data-properties-datalakepassword.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-3-then-properties-parameters-properties-data-properties-datalakepassword.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-3-then-properties-parameters-properties-data-properties-datalakepassword.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-3-then-properties-parameters-properties-data-properties-datalakepassword.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-3-then-properties-parameters-properties-data-properties-datalakeuser.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-3-then-properties-parameters-properties-data-properties-datalakeuser.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-3-then-properties-parameters-properties-data-properties-datalakeuser.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-3-then-properties-parameters-properties-data-properties-datalakeuser.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-3-then-properties-parameters-properties-data-properties-hanaid.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-3-then-properties-parameters-properties-data-properties-hanaid.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-3-then-properties-parameters-properties-data-properties-hanaid.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-3-then-properties-parameters-properties-data-properties-hanaid.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-3-then-properties-parameters-properties-data-properties-hanapassword.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-3-then-properties-parameters-properties-data-properties-hanapassword.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-3-then-properties-parameters-properties-data-properties-hanapassword.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-3-then-properties-parameters-properties-data-properties-hanapassword.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-3-then-properties-parameters-properties-data-properties-hanauser.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-3-then-properties-parameters-properties-data-properties-hanauser.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-3-then-properties-parameters-properties-data-properties-hanauser.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-3-then-properties-parameters-properties-data-properties-hanauser.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-3-then-properties-parameters-properties-data.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-3-then-properties-parameters-properties-data.md similarity index 77% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-3-then-properties-parameters-properties-data.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-3-then-properties-parameters-properties-data.md index e5eeda14..93fbc2d7 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-3-then-properties-parameters-properties-data.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-3-then-properties-parameters-properties-data.md @@ -1,17 +1,17 @@ ## data Type -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-3-then-properties-parameters-properties-data.md)) +`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-3-then-properties-parameters-properties-data.md)) # data Properties | Property | Type | Required | Nullable | Defined by | | :------------------------------------ | :------- | :------- | :------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [datalakeID](#datalakeid) | `string` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-3-then-properties-parameters-properties-data-properties-datalakeid.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/3/then/properties/parameters/properties/data/properties/datalakeID") | -| [datalakePassword](#datalakepassword) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-3-then-properties-parameters-properties-data-properties-datalakepassword.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/3/then/properties/parameters/properties/data/properties/datalakePassword") | -| [datalakeUser](#datalakeuser) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-3-then-properties-parameters-properties-data-properties-datalakeuser.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/3/then/properties/parameters/properties/data/properties/datalakeUser") | -| [hanaID](#hanaid) | `string` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-3-then-properties-parameters-properties-data-properties-hanaid.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/3/then/properties/parameters/properties/data/properties/hanaID") | -| [hanaPassword](#hanapassword) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-3-then-properties-parameters-properties-data-properties-hanapassword.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/3/then/properties/parameters/properties/data/properties/hanaPassword") | -| [hanaUser](#hanauser) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-3-then-properties-parameters-properties-data-properties-hanauser.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/3/then/properties/parameters/properties/data/properties/hanaUser") | +| [datalakeID](#datalakeid) | `string` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-3-then-properties-parameters-properties-data-properties-datalakeid.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/3/then/properties/parameters/properties/data/properties/datalakeID") | +| [datalakePassword](#datalakepassword) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-3-then-properties-parameters-properties-data-properties-datalakepassword.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/3/then/properties/parameters/properties/data/properties/datalakePassword") | +| [datalakeUser](#datalakeuser) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-3-then-properties-parameters-properties-data-properties-datalakeuser.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/3/then/properties/parameters/properties/data/properties/datalakeUser") | +| [hanaID](#hanaid) | `string` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-3-then-properties-parameters-properties-data-properties-hanaid.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/3/then/properties/parameters/properties/data/properties/hanaID") | +| [hanaPassword](#hanapassword) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-3-then-properties-parameters-properties-data-properties-hanapassword.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/3/then/properties/parameters/properties/data/properties/hanaPassword") | +| [hanaUser](#hanauser) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-3-then-properties-parameters-properties-data-properties-hanauser.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/3/then/properties/parameters/properties/data/properties/hanaUser") | ## datalakeID @@ -25,7 +25,7 @@ Service instance GUID of the data-lake instance * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-3-then-properties-parameters-properties-data-properties-datalakeid.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/3/then/properties/parameters/properties/data/properties/datalakeID") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-3-then-properties-parameters-properties-data-properties-datalakeid.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/3/then/properties/parameters/properties/data/properties/datalakeID") ### datalakeID Type @@ -47,7 +47,7 @@ Password in the data lake instance * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-3-then-properties-parameters-properties-data-properties-datalakepassword.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/3/then/properties/parameters/properties/data/properties/datalakePassword") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-3-then-properties-parameters-properties-data-properties-datalakepassword.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/3/then/properties/parameters/properties/data/properties/datalakePassword") ### datalakePassword Type @@ -69,7 +69,7 @@ User ID in the data lake instance * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-3-then-properties-parameters-properties-data-properties-datalakeuser.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/3/then/properties/parameters/properties/data/properties/datalakeUser") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-3-then-properties-parameters-properties-data-properties-datalakeuser.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/3/then/properties/parameters/properties/data/properties/datalakeUser") ### datalakeUser Type @@ -91,7 +91,7 @@ Service instance GUID of the HANA instance * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-3-then-properties-parameters-properties-data-properties-hanaid.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/3/then/properties/parameters/properties/data/properties/hanaID") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-3-then-properties-parameters-properties-data-properties-hanaid.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/3/then/properties/parameters/properties/data/properties/hanaID") ### hanaID Type @@ -113,7 +113,7 @@ Password for the HANA user * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-3-then-properties-parameters-properties-data-properties-hanapassword.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/3/then/properties/parameters/properties/data/properties/hanaPassword") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-3-then-properties-parameters-properties-data-properties-hanapassword.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/3/then/properties/parameters/properties/data/properties/hanaPassword") ### hanaPassword Type @@ -135,7 +135,7 @@ User ID for HANA (for example, SYSTEM) * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-3-then-properties-parameters-properties-data-properties-hanauser.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/3/then/properties/parameters/properties/data/properties/hanaUser") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-3-then-properties-parameters-properties-data-properties-hanauser.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/3/then/properties/parameters/properties/data/properties/hanaUser") ### hanaUser Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-3-then-properties-parameters.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-3-then-properties-parameters.md similarity index 76% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-3-then-properties-parameters.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-3-then-properties-parameters.md index 93e10631..2712ab39 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-3-then-properties-parameters.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-3-then-properties-parameters.md @@ -1,12 +1,12 @@ ## parameters Type -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-3-then-properties-parameters.md)) +`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-3-then-properties-parameters.md)) # parameters Properties | Property | Type | Required | Nullable | Defined by | | :------------ | :------- | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| [data](#data) | `object` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-3-then-properties-parameters-properties-data.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/3/then/properties/parameters/properties/data") | +| [data](#data) | `object` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-3-then-properties-parameters-properties-data.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/3/then/properties/parameters/properties/data") | ## data @@ -16,12 +16,12 @@ * is required -* Type: `object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-3-then-properties-parameters-properties-data.md)) +* Type: `object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-3-then-properties-parameters-properties-data.md)) * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-3-then-properties-parameters-properties-data.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/3/then/properties/parameters/properties/data") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-3-then-properties-parameters-properties-data.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/3/then/properties/parameters/properties/data") ### data Type -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-3-then-properties-parameters-properties-data.md)) +`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-3-then-properties-parameters-properties-data.md)) diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-3-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-3-then.md index c3ededc4..e8f8a647 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-3-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-3-then.md @@ -4,28 +4,34 @@ unknown # then Properties -| Property | Type | Required | Nullable | Defined by | -| :------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-3-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/3/then/properties/plan") | +| Property | Type | Required | Nullable | Defined by | +| :------------------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-3-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/3/then/properties/plan") | +| [parameters](#parameters) | `object` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-3-then-properties-parameters.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/3/then/properties/parameters") | ## plan -service plan >128standard< for >hana-db< is available in data centers: - -* {'region': 'ae1', 'name': 'UAE (Dubai)'} -* {'region': 'ap1', 'name': 'Australia (Sydney)'} -* {'region': 'br1', 'name': 'Brazil (Sao Paulo)'} -* {'region': 'ca1', 'name': 'Canada (Toronto)'} -* {'region': 'cn1', 'name': 'China (Shanghai)'} -* {'region': 'eu1', 'name': 'Europe (Rot)'} -* {'region': 'eu2', 'name': 'Europe (Frankfurt)'} -* {'region': 'eu3', 'name': 'Europe (Amsterdam)'} -* {'region': 'jp1', 'name': 'Japan (Tokyo)'} -* {'region': 'sa1', 'name': 'KSA (Riyadh)'} -* {'region': 'us1', 'name': 'US East (Ashburn)'} -* {'region': 'us2', 'name': 'US West (Chandler)'} -* {'region': 'us3', 'name': 'US East (Sterling)'} -* {'region': 'us4', 'name': 'US West (Colorado Springs)'} +service plan >hana-cloud-connection< for >hana-cloud< is available in data centers: + +* {'region': 'ap10', 'name': 'Australia (Sydney)'} +* {'region': 'ap11', 'name': 'Singapore'} +* {'region': 'ap12', 'name': 'South Korea (Seoul)'} +* {'region': 'ap20', 'name': 'Australia (Sydney) Azure'} +* {'region': 'ap21', 'name': 'Singapore'} +* {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} +* {'region': 'ca10', 'name': 'Canada (Montreal)'} +* {'region': 'ch20', 'name': 'cf-ch20'} +* {'region': 'eu10', 'name': 'Europe (Frankfurt)'} +* {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} +* {'region': 'eu20', 'name': 'Europe (Netherlands)'} +* {'region': 'eu30', 'name': 'Europe (Frankfurt)'} +* {'region': 'in30', 'name': 'India (Mumbai)'} +* {'region': 'jp10', 'name': 'Japan (Tokyo)'} +* {'region': 'jp20', 'name': 'Japan (Tokyo)'} +* {'region': 'us10', 'name': 'US East (VA)'} +* {'region': 'us20', 'name': 'US West (WA)'} +* {'region': 'us21', 'name': 'US East (VA)'} +* {'region': 'us30', 'name': 'US Central (IA)'} `plan` @@ -40,3 +46,21 @@ service plan >128standard< for >hana-db< is available in data centers: ### plan Type unknown + +## parameters + + + +`parameters` + +* is required + +* Type: `object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-3-then-properties-parameters.md)) + +* cannot be null + +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-3-then-properties-parameters.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/3/then/properties/parameters") + +### parameters Type + +`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-3-then-properties-parameters.md)) diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-4-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-4-if-properties-plan.md index d796f348..05fcb84e 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-4-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-4-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"2048premium" +"hana-cloud-connection-free" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-4-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-4-if.md index 22c66233..6bf78a49 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-4-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-4-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"2048premium" +"hana-cloud-connection-free" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-4-then-properties-parameters-properties-data-properties-datalakeid.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-4-then-properties-parameters-properties-data-properties-datalakeid.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-4-then-properties-parameters-properties-data-properties-datalakeid.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-4-then-properties-parameters-properties-data-properties-datalakeid.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-4-then-properties-parameters-properties-data-properties-datalakepassword.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-4-then-properties-parameters-properties-data-properties-datalakepassword.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-4-then-properties-parameters-properties-data-properties-datalakepassword.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-4-then-properties-parameters-properties-data-properties-datalakepassword.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-4-then-properties-parameters-properties-data-properties-datalakeuser.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-4-then-properties-parameters-properties-data-properties-datalakeuser.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-4-then-properties-parameters-properties-data-properties-datalakeuser.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-4-then-properties-parameters-properties-data-properties-datalakeuser.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-4-then-properties-parameters-properties-data-properties-hanaid.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-4-then-properties-parameters-properties-data-properties-hanaid.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-4-then-properties-parameters-properties-data-properties-hanaid.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-4-then-properties-parameters-properties-data-properties-hanaid.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-4-then-properties-parameters-properties-data-properties-hanapassword.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-4-then-properties-parameters-properties-data-properties-hanapassword.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-4-then-properties-parameters-properties-data-properties-hanapassword.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-4-then-properties-parameters-properties-data-properties-hanapassword.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-4-then-properties-parameters-properties-data-properties-hanauser.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-4-then-properties-parameters-properties-data-properties-hanauser.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-4-then-properties-parameters-properties-data-properties-hanauser.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-4-then-properties-parameters-properties-data-properties-hanauser.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-4-then-properties-parameters-properties-data.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-4-then-properties-parameters-properties-data.md similarity index 77% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-4-then-properties-parameters-properties-data.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-4-then-properties-parameters-properties-data.md index f404fc6c..593898ff 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-4-then-properties-parameters-properties-data.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-4-then-properties-parameters-properties-data.md @@ -1,17 +1,17 @@ ## data Type -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-4-then-properties-parameters-properties-data.md)) +`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-4-then-properties-parameters-properties-data.md)) # data Properties | Property | Type | Required | Nullable | Defined by | | :------------------------------------ | :------- | :------- | :------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [datalakeID](#datalakeid) | `string` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-4-then-properties-parameters-properties-data-properties-datalakeid.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/4/then/properties/parameters/properties/data/properties/datalakeID") | -| [datalakePassword](#datalakepassword) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-4-then-properties-parameters-properties-data-properties-datalakepassword.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/4/then/properties/parameters/properties/data/properties/datalakePassword") | -| [datalakeUser](#datalakeuser) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-4-then-properties-parameters-properties-data-properties-datalakeuser.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/4/then/properties/parameters/properties/data/properties/datalakeUser") | -| [hanaID](#hanaid) | `string` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-4-then-properties-parameters-properties-data-properties-hanaid.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/4/then/properties/parameters/properties/data/properties/hanaID") | -| [hanaPassword](#hanapassword) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-4-then-properties-parameters-properties-data-properties-hanapassword.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/4/then/properties/parameters/properties/data/properties/hanaPassword") | -| [hanaUser](#hanauser) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-4-then-properties-parameters-properties-data-properties-hanauser.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/4/then/properties/parameters/properties/data/properties/hanaUser") | +| [datalakeID](#datalakeid) | `string` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-4-then-properties-parameters-properties-data-properties-datalakeid.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/4/then/properties/parameters/properties/data/properties/datalakeID") | +| [datalakePassword](#datalakepassword) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-4-then-properties-parameters-properties-data-properties-datalakepassword.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/4/then/properties/parameters/properties/data/properties/datalakePassword") | +| [datalakeUser](#datalakeuser) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-4-then-properties-parameters-properties-data-properties-datalakeuser.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/4/then/properties/parameters/properties/data/properties/datalakeUser") | +| [hanaID](#hanaid) | `string` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-4-then-properties-parameters-properties-data-properties-hanaid.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/4/then/properties/parameters/properties/data/properties/hanaID") | +| [hanaPassword](#hanapassword) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-4-then-properties-parameters-properties-data-properties-hanapassword.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/4/then/properties/parameters/properties/data/properties/hanaPassword") | +| [hanaUser](#hanauser) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-4-then-properties-parameters-properties-data-properties-hanauser.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/4/then/properties/parameters/properties/data/properties/hanaUser") | ## datalakeID @@ -25,7 +25,7 @@ Service instance GUID of the data-lake instance * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-4-then-properties-parameters-properties-data-properties-datalakeid.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/4/then/properties/parameters/properties/data/properties/datalakeID") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-4-then-properties-parameters-properties-data-properties-datalakeid.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/4/then/properties/parameters/properties/data/properties/datalakeID") ### datalakeID Type @@ -47,7 +47,7 @@ Password in the data lake instance * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-4-then-properties-parameters-properties-data-properties-datalakepassword.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/4/then/properties/parameters/properties/data/properties/datalakePassword") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-4-then-properties-parameters-properties-data-properties-datalakepassword.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/4/then/properties/parameters/properties/data/properties/datalakePassword") ### datalakePassword Type @@ -69,7 +69,7 @@ User ID in the data lake instance * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-4-then-properties-parameters-properties-data-properties-datalakeuser.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/4/then/properties/parameters/properties/data/properties/datalakeUser") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-4-then-properties-parameters-properties-data-properties-datalakeuser.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/4/then/properties/parameters/properties/data/properties/datalakeUser") ### datalakeUser Type @@ -91,7 +91,7 @@ Service instance GUID of the HANA instance * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-4-then-properties-parameters-properties-data-properties-hanaid.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/4/then/properties/parameters/properties/data/properties/hanaID") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-4-then-properties-parameters-properties-data-properties-hanaid.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/4/then/properties/parameters/properties/data/properties/hanaID") ### hanaID Type @@ -113,7 +113,7 @@ Password for the HANA user * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-4-then-properties-parameters-properties-data-properties-hanapassword.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/4/then/properties/parameters/properties/data/properties/hanaPassword") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-4-then-properties-parameters-properties-data-properties-hanapassword.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/4/then/properties/parameters/properties/data/properties/hanaPassword") ### hanaPassword Type @@ -135,7 +135,7 @@ User ID for HANA (for example, SYSTEM) * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-4-then-properties-parameters-properties-data-properties-hanauser.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/4/then/properties/parameters/properties/data/properties/hanaUser") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-4-then-properties-parameters-properties-data-properties-hanauser.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/4/then/properties/parameters/properties/data/properties/hanaUser") ### hanaUser Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-4-then-properties-parameters.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-4-then-properties-parameters.md similarity index 76% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-4-then-properties-parameters.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-4-then-properties-parameters.md index 5858124d..3b120afc 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-4-then-properties-parameters.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-4-then-properties-parameters.md @@ -1,12 +1,12 @@ ## parameters Type -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-4-then-properties-parameters.md)) +`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-4-then-properties-parameters.md)) # parameters Properties | Property | Type | Required | Nullable | Defined by | | :------------ | :------- | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| [data](#data) | `object` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-4-then-properties-parameters-properties-data.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/4/then/properties/parameters/properties/data") | +| [data](#data) | `object` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-4-then-properties-parameters-properties-data.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/4/then/properties/parameters/properties/data") | ## data @@ -16,12 +16,12 @@ * is required -* Type: `object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-4-then-properties-parameters-properties-data.md)) +* Type: `object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-4-then-properties-parameters-properties-data.md)) * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-4-then-properties-parameters-properties-data.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/4/then/properties/parameters/properties/data") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-4-then-properties-parameters-properties-data.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/4/then/properties/parameters/properties/data") ### data Type -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-4-then-properties-parameters-properties-data.md)) +`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-4-then-properties-parameters-properties-data.md)) diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-4-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-4-then.md index 1cf92749..ae4bd53d 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-4-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-4-then.md @@ -4,18 +4,27 @@ unknown # then Properties -| Property | Type | Required | Nullable | Defined by | -| :------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-4-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/4/then/properties/plan") | +| Property | Type | Required | Nullable | Defined by | +| :------------------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-4-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/4/then/properties/plan") | +| [parameters](#parameters) | `object` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-4-then-properties-parameters.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/4/then/properties/parameters") | ## plan -service plan >2048premium< for >hana-db< is available in data centers: +service plan >hana-cloud-connection-free< for >hana-cloud< is available in data centers: +* {'region': 'ap10', 'name': 'Australia (Sydney)'} +* {'region': 'ap11', 'name': 'Singapore'} +* {'region': 'ap12', 'name': 'South Korea (Seoul)'} * {'region': 'ap20', 'name': 'Australia (Sydney) Azure'} * {'region': 'ap21', 'name': 'Singapore'} +* {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} +* {'region': 'ca10', 'name': 'Canada (Montreal)'} +* {'region': 'ch20', 'name': 'cf-ch20'} * {'region': 'eu20', 'name': 'Europe (Netherlands)'} +* {'region': 'jp10', 'name': 'Japan (Tokyo)'} * {'region': 'jp20', 'name': 'Japan (Tokyo)'} +* {'region': 'us10', 'name': 'US East (VA)'} * {'region': 'us20', 'name': 'US West (WA)'} * {'region': 'us21', 'name': 'US East (VA)'} @@ -32,3 +41,21 @@ service plan >2048premium< for >hana-db< is available in data centers: ### plan Type unknown + +## parameters + + + +`parameters` + +* is required + +* Type: `object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-4-then-properties-parameters.md)) + +* cannot be null + +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-4-then-properties-parameters.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/4/then/properties/parameters") + +### parameters Type + +`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-4-then-properties-parameters.md)) diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-5-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-5-if-properties-plan.md index fe555115..3fbe8323 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-5-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-5-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"2048standard" +"hana-free" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-5-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-5-if.md index 98640181..5b491e58 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-5-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-5-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"2048standard" +"hana-free" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-5-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-5-then.md index d959b0ae..b0fe88b8 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-5-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-5-then.md @@ -10,12 +10,20 @@ unknown ## plan -service plan >2048standard< for >hana-db< is available in data centers: +service plan >hana-free< for >hana-cloud< is available in data centers: +* {'region': 'ap10', 'name': 'Australia (Sydney)'} +* {'region': 'ap11', 'name': 'Singapore'} +* {'region': 'ap12', 'name': 'South Korea (Seoul)'} * {'region': 'ap20', 'name': 'Australia (Sydney) Azure'} * {'region': 'ap21', 'name': 'Singapore'} +* {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} +* {'region': 'ca10', 'name': 'Canada (Montreal)'} +* {'region': 'ch20', 'name': 'cf-ch20'} * {'region': 'eu20', 'name': 'Europe (Netherlands)'} +* {'region': 'jp10', 'name': 'Japan (Tokyo)'} * {'region': 'jp20', 'name': 'Japan (Tokyo)'} +* {'region': 'us10', 'name': 'US East (VA)'} * {'region': 'us20', 'name': 'US West (WA)'} * {'region': 'us21', 'name': 'US East (VA)'} diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-if-properties-plan.md index b530f720..244fbc0d 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"256premium" +"relational-data-lake" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-if.md index f2a78d80..f60ecda6 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"256premium" +"relational-data-lake" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-backup-properties-retentiondays.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-backup-properties-retentiondays.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-backup-properties-retentiondays.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-backup-properties-retentiondays.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-backup.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-backup.md similarity index 86% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-backup.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-backup.md index 9a1bbb96..3e44dbe7 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-backup.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-backup.md @@ -1,12 +1,12 @@ ## backup Type -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-backup.md)) +`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-backup.md)) # backup Properties | Property | Type | Required | Nullable | Defined by | | :------------------------------ | :-------- | :------- | :------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [retentionDays](#retentiondays) | `integer` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-backup-properties-retentiondays.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/6/then/properties/parameters/properties/data/properties/backup/properties/retentionDays") | +| [retentionDays](#retentiondays) | `integer` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-backup-properties-retentiondays.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/6/then/properties/parameters/properties/data/properties/backup/properties/retentionDays") | ## retentionDays @@ -20,7 +20,7 @@ Specifies the retention period for a backup in days * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-backup-properties-retentiondays.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/6/then/properties/parameters/properties/data/properties/backup/properties/retentionDays") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-backup-properties-retentiondays.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/6/then/properties/parameters/properties/data/properties/backup/properties/retentionDays") ### retentionDays Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-coordinator_type.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-coordinator_type.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-coordinator_type.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-coordinator_type.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-enablebackups.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-enablebackups.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-enablebackups.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-enablebackups.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-authorizations-items-properties-pattern.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-authorizations-items-properties-pattern.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-authorizations-items-properties-pattern.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-authorizations-items-properties-pattern.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-authorizations-items-properties-rank.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-authorizations-items-properties-rank.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-authorizations-items-properties-rank.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-authorizations-items-properties-rank.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-authorizations-items-properties-roles-items.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-authorizations-items-properties-roles-items.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-authorizations-items-properties-roles-items.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-authorizations-items-properties-roles-items.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-authorizations-items-properties-roles.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-authorizations-items-properties-roles.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-authorizations-items-properties-roles.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-authorizations-items-properties-roles.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-authorizations-items.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-authorizations-items.md similarity index 81% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-authorizations-items.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-authorizations-items.md index 45acf5de..43013aed 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-authorizations-items.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-authorizations-items.md @@ -1,14 +1,14 @@ ## items Type -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-authorizations-items.md)) +`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-authorizations-items.md)) # items Properties | Property | Type | Required | Nullable | Defined by | | :------------------ | :-------- | :------- | :------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [pattern](#pattern) | `string` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-authorizations-items-properties-pattern.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/6/then/properties/parameters/properties/data/properties/fileContainer/properties/authorizations/items/properties/pattern") | -| [rank](#rank) | `integer` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-authorizations-items-properties-rank.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/6/then/properties/parameters/properties/data/properties/fileContainer/properties/authorizations/items/properties/rank") | -| [roles](#roles) | `array` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-authorizations-items-properties-roles.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/6/then/properties/parameters/properties/data/properties/fileContainer/properties/authorizations/items/properties/roles") | +| [pattern](#pattern) | `string` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-authorizations-items-properties-pattern.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/6/then/properties/parameters/properties/data/properties/fileContainer/properties/authorizations/items/properties/pattern") | +| [rank](#rank) | `integer` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-authorizations-items-properties-rank.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/6/then/properties/parameters/properties/data/properties/fileContainer/properties/authorizations/items/properties/rank") | +| [roles](#roles) | `array` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-authorizations-items-properties-roles.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/6/then/properties/parameters/properties/data/properties/fileContainer/properties/authorizations/items/properties/roles") | ## pattern @@ -22,7 +22,7 @@ * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-authorizations-items-properties-pattern.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/6/then/properties/parameters/properties/data/properties/fileContainer/properties/authorizations/items/properties/pattern") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-authorizations-items-properties-pattern.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/6/then/properties/parameters/properties/data/properties/fileContainer/properties/authorizations/items/properties/pattern") ### pattern Type @@ -40,7 +40,7 @@ * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-authorizations-items-properties-rank.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/6/then/properties/parameters/properties/data/properties/fileContainer/properties/authorizations/items/properties/rank") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-authorizations-items-properties-rank.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/6/then/properties/parameters/properties/data/properties/fileContainer/properties/authorizations/items/properties/rank") ### rank Type @@ -58,7 +58,7 @@ * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-authorizations-items-properties-roles.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/6/then/properties/parameters/properties/data/properties/fileContainer/properties/authorizations/items/properties/roles") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-authorizations-items-properties-roles.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/6/then/properties/parameters/properties/data/properties/fileContainer/properties/authorizations/items/properties/roles") ### roles Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-authorizations.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-authorizations.md similarity index 71% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-authorizations.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-authorizations.md index 49098bb2..f014e1dc 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-authorizations.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-authorizations.md @@ -1,3 +1,3 @@ ## authorizations Type -`object[]` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-authorizations-items.md)) +`object[]` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-authorizations-items.md)) diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-capabilities-properties-homedirectories-properties-prefix.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-capabilities-properties-homedirectories-properties-prefix.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-capabilities-properties-homedirectories-properties-prefix.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-capabilities-properties-homedirectories-properties-prefix.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-39-then-allof-3-if-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-capabilities-properties-homedirectories-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-39-then-allof-3-if-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-capabilities-properties-homedirectories-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-capabilities-properties-homedirectories.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-capabilities-properties-homedirectories.md similarity index 88% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-capabilities-properties-homedirectories.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-capabilities-properties-homedirectories.md index 2a86f3a0..02e2a074 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-capabilities-properties-homedirectories.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-capabilities-properties-homedirectories.md @@ -1,12 +1,12 @@ ## homeDirectories Type -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-capabilities-properties-homedirectories.md)) +`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-capabilities-properties-homedirectories.md)) # homeDirectories Properties | Property | Type | Required | Nullable | Defined by | | :---------------- | :------- | :------- | :------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [prefix](#prefix) | `string` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-capabilities-properties-homedirectories-properties-prefix.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/6/then/properties/parameters/properties/data/properties/fileContainer/properties/capabilities/properties/homeDirectories/properties/prefix") | +| [prefix](#prefix) | `string` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-capabilities-properties-homedirectories-properties-prefix.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/6/then/properties/parameters/properties/data/properties/fileContainer/properties/capabilities/properties/homeDirectories/properties/prefix") | ## prefix @@ -20,7 +20,7 @@ * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-capabilities-properties-homedirectories-properties-prefix.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/6/then/properties/parameters/properties/data/properties/fileContainer/properties/capabilities/properties/homeDirectories/properties/prefix") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-capabilities-properties-homedirectories-properties-prefix.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/6/then/properties/parameters/properties/data/properties/fileContainer/properties/capabilities/properties/homeDirectories/properties/prefix") ### prefix Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-capabilities.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-capabilities.md similarity index 83% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-capabilities.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-capabilities.md index d0f47ca8..0a57e969 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-capabilities.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-capabilities.md @@ -1,12 +1,12 @@ ## capabilities Type -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-capabilities.md)) +`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-capabilities.md)) # capabilities Properties | Property | Type | Required | Nullable | Defined by | | :---------------------------------- | :------- | :------- | :---------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [homeDirectories](#homedirectories) | `object` | Optional | can be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-capabilities-properties-homedirectories.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/6/then/properties/parameters/properties/data/properties/fileContainer/properties/capabilities/properties/homeDirectories") | +| [homeDirectories](#homedirectories) | `object` | Optional | can be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-capabilities-properties-homedirectories.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/6/then/properties/parameters/properties/data/properties/fileContainer/properties/capabilities/properties/homeDirectories") | ## homeDirectories @@ -16,12 +16,12 @@ * is optional -* Type: `object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-capabilities-properties-homedirectories.md)) +* Type: `object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-capabilities-properties-homedirectories.md)) * can be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-capabilities-properties-homedirectories.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/6/then/properties/parameters/properties/data/properties/fileContainer/properties/capabilities/properties/homeDirectories") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-capabilities-properties-homedirectories.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/6/then/properties/parameters/properties/data/properties/fileContainer/properties/capabilities/properties/homeDirectories") ### homeDirectories Type -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-capabilities-properties-homedirectories.md)) +`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-capabilities-properties-homedirectories.md)) diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-roles-items-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-roles-items-properties-name.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-roles-items-properties-name.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-roles-items-properties-name.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-roles-items-properties-privileges-items.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-roles-items-properties-privileges-items.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-roles-items-properties-privileges-items.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-roles-items-properties-privileges-items.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-roles-items-properties-privileges.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-roles-items-properties-privileges.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-roles-items-properties-privileges.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-roles-items-properties-privileges.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-roles-items.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-roles-items.md similarity index 84% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-roles-items.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-roles-items.md index d2a85a40..a1b3184b 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-roles-items.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-roles-items.md @@ -1,13 +1,13 @@ ## items Type -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-roles-items.md)) +`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-roles-items.md)) # items Properties | Property | Type | Required | Nullable | Defined by | | :------------------------ | :------- | :------- | :------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [name](#name) | `string` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-roles-items-properties-name.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/6/then/properties/parameters/properties/data/properties/fileContainer/properties/roles/items/properties/name") | -| [privileges](#privileges) | `array` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-roles-items-properties-privileges.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/6/then/properties/parameters/properties/data/properties/fileContainer/properties/roles/items/properties/privileges") | +| [name](#name) | `string` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-roles-items-properties-name.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/6/then/properties/parameters/properties/data/properties/fileContainer/properties/roles/items/properties/name") | +| [privileges](#privileges) | `array` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-roles-items-properties-privileges.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/6/then/properties/parameters/properties/data/properties/fileContainer/properties/roles/items/properties/privileges") | ## name @@ -21,7 +21,7 @@ * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-roles-items-properties-name.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/6/then/properties/parameters/properties/data/properties/fileContainer/properties/roles/items/properties/name") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-roles-items-properties-name.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/6/then/properties/parameters/properties/data/properties/fileContainer/properties/roles/items/properties/name") ### name Type @@ -49,7 +49,7 @@ * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-roles-items-properties-privileges.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/6/then/properties/parameters/properties/data/properties/fileContainer/properties/roles/items/properties/privileges") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-roles-items-properties-privileges.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/6/then/properties/parameters/properties/data/properties/fileContainer/properties/roles/items/properties/privileges") ### privileges Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-roles.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-roles.md similarity index 69% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-roles.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-roles.md index 73436072..42d8635c 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-roles.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-roles.md @@ -1,3 +1,3 @@ ## roles Type -`object[]` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-roles-items.md)) +`object[]` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-roles-items.md)) diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-trusts-items-properties-alias.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-trusts-items-properties-alias.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-trusts-items-properties-alias.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-trusts-items-properties-alias.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-trusts-items-properties-certdata.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-trusts-items-properties-certdata.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-trusts-items-properties-certdata.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-trusts-items-properties-certdata.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-trusts-items.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-trusts-items.md similarity index 85% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-trusts-items.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-trusts-items.md index 5f4f47b0..00254ea3 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-trusts-items.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-trusts-items.md @@ -1,13 +1,13 @@ ## items Type -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-trusts-items.md)) +`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-trusts-items.md)) # items Properties | Property | Type | Required | Nullable | Defined by | | :-------------------- | :------- | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| [alias](#alias) | `string` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-trusts-items-properties-alias.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/6/then/properties/parameters/properties/data/properties/fileContainer/properties/trusts/items/properties/alias") | -| [certData](#certdata) | `string` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-trusts-items-properties-certdata.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/6/then/properties/parameters/properties/data/properties/fileContainer/properties/trusts/items/properties/certData") | +| [alias](#alias) | `string` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-trusts-items-properties-alias.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/6/then/properties/parameters/properties/data/properties/fileContainer/properties/trusts/items/properties/alias") | +| [certData](#certdata) | `string` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-trusts-items-properties-certdata.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/6/then/properties/parameters/properties/data/properties/fileContainer/properties/trusts/items/properties/certData") | ## alias @@ -21,7 +21,7 @@ * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-trusts-items-properties-alias.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/6/then/properties/parameters/properties/data/properties/fileContainer/properties/trusts/items/properties/alias") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-trusts-items-properties-alias.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/6/then/properties/parameters/properties/data/properties/fileContainer/properties/trusts/items/properties/alias") ### alias Type @@ -49,7 +49,7 @@ * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-trusts-items-properties-certdata.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/6/then/properties/parameters/properties/data/properties/fileContainer/properties/trusts/items/properties/certData") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-trusts-items-properties-certdata.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/6/then/properties/parameters/properties/data/properties/fileContainer/properties/trusts/items/properties/certData") ### certData Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-trusts.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-trusts.md similarity index 69% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-trusts.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-trusts.md index 6e50918e..939b63c6 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-trusts.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-trusts.md @@ -1,3 +1,3 @@ ## trusts Type -`object[]` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-trusts-items.md)) +`object[]` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-trusts-items.md)) diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer.md similarity index 75% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer.md index 1b10780f..707663f6 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer.md @@ -1,15 +1,15 @@ ## fileContainer Type -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer.md)) +`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer.md)) # fileContainer Properties | Property | Type | Required | Nullable | Defined by | | :-------------------------------- | :------- | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| [authorizations](#authorizations) | `array` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-authorizations.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/6/then/properties/parameters/properties/data/properties/fileContainer/properties/authorizations") | -| [capabilities](#capabilities) | `object` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-capabilities.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/6/then/properties/parameters/properties/data/properties/fileContainer/properties/capabilities") | -| [roles](#roles) | `array` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-roles.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/6/then/properties/parameters/properties/data/properties/fileContainer/properties/roles") | -| [trusts](#trusts) | `array` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-trusts.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/6/then/properties/parameters/properties/data/properties/fileContainer/properties/trusts") | +| [authorizations](#authorizations) | `array` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-authorizations.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/6/then/properties/parameters/properties/data/properties/fileContainer/properties/authorizations") | +| [capabilities](#capabilities) | `object` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-capabilities.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/6/then/properties/parameters/properties/data/properties/fileContainer/properties/capabilities") | +| [roles](#roles) | `array` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-roles.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/6/then/properties/parameters/properties/data/properties/fileContainer/properties/roles") | +| [trusts](#trusts) | `array` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-trusts.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/6/then/properties/parameters/properties/data/properties/fileContainer/properties/trusts") | ## authorizations @@ -19,15 +19,15 @@ * is optional -* Type: `object[]` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-authorizations-items.md)) +* Type: `object[]` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-authorizations-items.md)) * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-authorizations.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/6/then/properties/parameters/properties/data/properties/fileContainer/properties/authorizations") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-authorizations.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/6/then/properties/parameters/properties/data/properties/fileContainer/properties/authorizations") ### authorizations Type -`object[]` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-authorizations-items.md)) +`object[]` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-authorizations-items.md)) ## capabilities @@ -37,15 +37,15 @@ * is optional -* Type: `object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-capabilities.md)) +* Type: `object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-capabilities.md)) * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-capabilities.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/6/then/properties/parameters/properties/data/properties/fileContainer/properties/capabilities") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-capabilities.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/6/then/properties/parameters/properties/data/properties/fileContainer/properties/capabilities") ### capabilities Type -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-capabilities.md)) +`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-capabilities.md)) ## roles @@ -55,15 +55,15 @@ * is optional -* Type: `object[]` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-roles-items.md)) +* Type: `object[]` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-roles-items.md)) * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-roles.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/6/then/properties/parameters/properties/data/properties/fileContainer/properties/roles") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-roles.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/6/then/properties/parameters/properties/data/properties/fileContainer/properties/roles") ### roles Type -`object[]` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-roles-items.md)) +`object[]` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-roles-items.md)) ## trusts @@ -73,12 +73,12 @@ * is optional -* Type: `object[]` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-trusts-items.md)) +* Type: `object[]` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-trusts-items.md)) * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-trusts.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/6/then/properties/parameters/properties/data/properties/fileContainer/properties/trusts") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-trusts.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/6/then/properties/parameters/properties/data/properties/fileContainer/properties/trusts") ### trusts Type -`object[]` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-trusts-items.md)) +`object[]` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-trusts-items.md)) diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-initoptions-properties-blankpadding.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-initoptions-properties-blankpadding.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-initoptions-properties-blankpadding.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-initoptions-properties-blankpadding.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-initoptions-properties-casesensitivity.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-initoptions-properties-casesensitivity.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-initoptions-properties-casesensitivity.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-initoptions-properties-casesensitivity.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-initoptions-properties-collation.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-initoptions-properties-collation.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-initoptions-properties-collation.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-initoptions-properties-collation.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-initoptions-properties-ncharaccentsensitivity.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-initoptions-properties-ncharaccentsensitivity.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-initoptions-properties-ncharaccentsensitivity.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-initoptions-properties-ncharaccentsensitivity.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-initoptions-properties-ncharcasesensitivity.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-initoptions-properties-ncharcasesensitivity.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-initoptions-properties-ncharcasesensitivity.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-initoptions-properties-ncharcasesensitivity.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-initoptions-properties-ncharcollation.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-initoptions-properties-ncharcollation.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-initoptions-properties-ncharcollation.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-initoptions-properties-ncharcollation.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-initoptions-properties-ncharlocale.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-initoptions-properties-ncharlocale.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-initoptions-properties-ncharlocale.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-initoptions-properties-ncharlocale.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-initoptions-properties-ncharpunctuationsensitivity.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-initoptions-properties-ncharpunctuationsensitivity.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-initoptions-properties-ncharpunctuationsensitivity.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-initoptions-properties-ncharpunctuationsensitivity.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-initoptions-properties-ncharsorttype.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-initoptions-properties-ncharsorttype.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-initoptions-properties-ncharsorttype.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-initoptions-properties-ncharsorttype.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-initoptions.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-initoptions.md similarity index 89% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-initoptions.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-initoptions.md index 44c3e782..c1e27da3 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-initoptions.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-initoptions.md @@ -1,20 +1,20 @@ ## initOptions Type -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-initoptions.md)) +`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-initoptions.md)) # initOptions Properties | Property | Type | Required | Nullable | Defined by | | :---------------------------------------------------------- | :------- | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [blankPadding](#blankpadding) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-initoptions-properties-blankpadding.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/6/then/properties/parameters/properties/data/properties/initOptions/properties/blankPadding") | -| [caseSensitivity](#casesensitivity) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-initoptions-properties-casesensitivity.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/6/then/properties/parameters/properties/data/properties/initOptions/properties/caseSensitivity") | -| [collation](#collation) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-initoptions-properties-collation.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/6/then/properties/parameters/properties/data/properties/initOptions/properties/collation") | -| [ncharAccentSensitivity](#ncharaccentsensitivity) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-initoptions-properties-ncharaccentsensitivity.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/6/then/properties/parameters/properties/data/properties/initOptions/properties/ncharAccentSensitivity") | -| [ncharCaseSensitivity](#ncharcasesensitivity) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-initoptions-properties-ncharcasesensitivity.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/6/then/properties/parameters/properties/data/properties/initOptions/properties/ncharCaseSensitivity") | -| [ncharCollation](#ncharcollation) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-initoptions-properties-ncharcollation.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/6/then/properties/parameters/properties/data/properties/initOptions/properties/ncharCollation") | -| [ncharLocale](#ncharlocale) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-initoptions-properties-ncharlocale.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/6/then/properties/parameters/properties/data/properties/initOptions/properties/ncharLocale") | -| [ncharPunctuationSensitivity](#ncharpunctuationsensitivity) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-initoptions-properties-ncharpunctuationsensitivity.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/6/then/properties/parameters/properties/data/properties/initOptions/properties/ncharPunctuationSensitivity") | -| [ncharSortType](#ncharsorttype) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-initoptions-properties-ncharsorttype.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/6/then/properties/parameters/properties/data/properties/initOptions/properties/ncharSortType") | +| [blankPadding](#blankpadding) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-initoptions-properties-blankpadding.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/6/then/properties/parameters/properties/data/properties/initOptions/properties/blankPadding") | +| [caseSensitivity](#casesensitivity) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-initoptions-properties-casesensitivity.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/6/then/properties/parameters/properties/data/properties/initOptions/properties/caseSensitivity") | +| [collation](#collation) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-initoptions-properties-collation.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/6/then/properties/parameters/properties/data/properties/initOptions/properties/collation") | +| [ncharAccentSensitivity](#ncharaccentsensitivity) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-initoptions-properties-ncharaccentsensitivity.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/6/then/properties/parameters/properties/data/properties/initOptions/properties/ncharAccentSensitivity") | +| [ncharCaseSensitivity](#ncharcasesensitivity) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-initoptions-properties-ncharcasesensitivity.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/6/then/properties/parameters/properties/data/properties/initOptions/properties/ncharCaseSensitivity") | +| [ncharCollation](#ncharcollation) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-initoptions-properties-ncharcollation.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/6/then/properties/parameters/properties/data/properties/initOptions/properties/ncharCollation") | +| [ncharLocale](#ncharlocale) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-initoptions-properties-ncharlocale.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/6/then/properties/parameters/properties/data/properties/initOptions/properties/ncharLocale") | +| [ncharPunctuationSensitivity](#ncharpunctuationsensitivity) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-initoptions-properties-ncharpunctuationsensitivity.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/6/then/properties/parameters/properties/data/properties/initOptions/properties/ncharPunctuationSensitivity") | +| [ncharSortType](#ncharsorttype) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-initoptions-properties-ncharsorttype.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/6/then/properties/parameters/properties/data/properties/initOptions/properties/ncharSortType") | ## blankPadding @@ -28,7 +28,7 @@ blank padding to be set in HDL * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-initoptions-properties-blankpadding.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/6/then/properties/parameters/properties/data/properties/initOptions/properties/blankPadding") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-initoptions-properties-blankpadding.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/6/then/properties/parameters/properties/data/properties/initOptions/properties/blankPadding") ### blankPadding Type @@ -55,7 +55,7 @@ case sensitivity to be set in HDL * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-initoptions-properties-casesensitivity.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/6/then/properties/parameters/properties/data/properties/initOptions/properties/caseSensitivity") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-initoptions-properties-casesensitivity.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/6/then/properties/parameters/properties/data/properties/initOptions/properties/caseSensitivity") ### caseSensitivity Type @@ -82,7 +82,7 @@ collation to be set in HDL * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-initoptions-properties-collation.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/6/then/properties/parameters/properties/data/properties/initOptions/properties/collation") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-initoptions-properties-collation.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/6/then/properties/parameters/properties/data/properties/initOptions/properties/collation") ### collation Type @@ -138,7 +138,7 @@ AccentSensitivity to be used in nchar UCA collation to be set in HDL * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-initoptions-properties-ncharaccentsensitivity.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/6/then/properties/parameters/properties/data/properties/initOptions/properties/ncharAccentSensitivity") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-initoptions-properties-ncharaccentsensitivity.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/6/then/properties/parameters/properties/data/properties/initOptions/properties/ncharAccentSensitivity") ### ncharAccentSensitivity Type @@ -166,7 +166,7 @@ CaseSensitivity to be used in nchar UCA collation to be set in HDL * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-initoptions-properties-ncharcasesensitivity.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/6/then/properties/parameters/properties/data/properties/initOptions/properties/ncharCaseSensitivity") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-initoptions-properties-ncharcasesensitivity.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/6/then/properties/parameters/properties/data/properties/initOptions/properties/ncharCaseSensitivity") ### ncharCaseSensitivity Type @@ -195,7 +195,7 @@ nchar collation to be set in HDL * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-initoptions-properties-ncharcollation.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/6/then/properties/parameters/properties/data/properties/initOptions/properties/ncharCollation") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-initoptions-properties-ncharcollation.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/6/then/properties/parameters/properties/data/properties/initOptions/properties/ncharCollation") ### ncharCollation Type @@ -222,7 +222,7 @@ locale to be used in nchar UCA collation to be set in HDL * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-initoptions-properties-ncharlocale.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/6/then/properties/parameters/properties/data/properties/initOptions/properties/ncharLocale") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-initoptions-properties-ncharlocale.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/6/then/properties/parameters/properties/data/properties/initOptions/properties/ncharLocale") ### ncharLocale Type @@ -452,7 +452,7 @@ PunctuationSensitivity to be used in nchar UCA collation to be set in HDL * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-initoptions-properties-ncharpunctuationsensitivity.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/6/then/properties/parameters/properties/data/properties/initOptions/properties/ncharPunctuationSensitivity") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-initoptions-properties-ncharpunctuationsensitivity.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/6/then/properties/parameters/properties/data/properties/initOptions/properties/ncharPunctuationSensitivity") ### ncharPunctuationSensitivity Type @@ -480,7 +480,7 @@ SortType to be used in nchar UCA collation to be set in HDL * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-initoptions-properties-ncharsorttype.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/6/then/properties/parameters/properties/data/properties/initOptions/properties/ncharSortType") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-initoptions-properties-ncharsorttype.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/6/then/properties/parameters/properties/data/properties/initOptions/properties/ncharSortType") ### ncharSortType Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-iqenabled.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-iqenabled.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-iqenabled.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-iqenabled.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-num_coordinators.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-num_coordinators.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-num_coordinators.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-num_coordinators.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-num_readers.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-num_readers.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-num_readers.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-num_readers.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-num_writers.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-num_writers.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-num_writers.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-num_writers.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-provisioned_size_gib.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-provisioned_size_gib.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-provisioned_size_gib.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-provisioned_size_gib.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-reader_type.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-reader_type.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-reader_type.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-reader_type.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-servicestopped.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-servicestopped.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-servicestopped.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-servicestopped.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-storage_service_provider.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-storage_service_provider.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-storage_service_provider.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-storage_service_provider.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-storage_service_tier.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-storage_service_tier.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-storage_service_tier.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-storage_service_tier.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-systempassword.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-systempassword.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-systempassword.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-systempassword.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-updatestrategy.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-updatestrategy.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-updatestrategy.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-updatestrategy.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-versionindicator.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-versionindicator.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-versionindicator.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-versionindicator.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-whitelistips-items.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-whitelistips-items.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-whitelistips-items.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-whitelistips-items.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-whitelistips.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-whitelistips.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-whitelistips.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-whitelistips.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-writer_type.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-writer_type.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-writer_type.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-writer_type.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data.md similarity index 76% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data.md index 812fe9ef..f877598c 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data.md @@ -1,30 +1,30 @@ ## data Type -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data.md)) +`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data.md)) # data Properties | Property | Type | Required | Nullable | Defined by | | :------------------------------------------------------ | :------------ | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| [backup](#backup) | `object` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-backup.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/6/then/properties/parameters/properties/data/properties/backup") | -| [coordinator\_type](#coordinator_type) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-coordinator_type.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/6/then/properties/parameters/properties/data/properties/coordinator_type") | -| [enableBackups](#enablebackups) | `boolean` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-enablebackups.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/6/then/properties/parameters/properties/data/properties/enableBackups") | -| [fileContainer](#filecontainer) | `object` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/6/then/properties/parameters/properties/data/properties/fileContainer") | -| [initOptions](#initoptions) | `object` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-initoptions.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/6/then/properties/parameters/properties/data/properties/initOptions") | -| [iqEnabled](#iqenabled) | `boolean` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-iqenabled.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/6/then/properties/parameters/properties/data/properties/iqEnabled") | -| [num\_coordinators](#num_coordinators) | `integer` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-num_coordinators.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/6/then/properties/parameters/properties/data/properties/num_coordinators") | -| [num\_readers](#num_readers) | `integer` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-num_readers.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/6/then/properties/parameters/properties/data/properties/num_readers") | -| [num\_writers](#num_writers) | `integer` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-num_writers.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/6/then/properties/parameters/properties/data/properties/num_writers") | -| [provisioned\_size\_gib](#provisioned_size_gib) | `integer` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-provisioned_size_gib.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/6/then/properties/parameters/properties/data/properties/provisioned_size_gib") | -| [reader\_type](#reader_type) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-reader_type.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/6/then/properties/parameters/properties/data/properties/reader_type") | -| [serviceStopped](#servicestopped) | `boolean` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-servicestopped.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/6/then/properties/parameters/properties/data/properties/serviceStopped") | -| [storage\_service\_provider](#storage_service_provider) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-storage_service_provider.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/6/then/properties/parameters/properties/data/properties/storage_service_provider") | -| [storage\_service\_tier](#storage_service_tier) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-storage_service_tier.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/6/then/properties/parameters/properties/data/properties/storage_service_tier") | -| [systempassword](#systempassword) | `string` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-systempassword.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/6/then/properties/parameters/properties/data/properties/systempassword") | -| [updateStrategy](#updatestrategy) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-updatestrategy.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/6/then/properties/parameters/properties/data/properties/updateStrategy") | -| [versionIndicator](#versionindicator) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-versionindicator.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/6/then/properties/parameters/properties/data/properties/versionIndicator") | -| [whitelistIPs](#whitelistips) | `array` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-whitelistips.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/6/then/properties/parameters/properties/data/properties/whitelistIPs") | -| [writer\_type](#writer_type) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-writer_type.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/6/then/properties/parameters/properties/data/properties/writer_type") | +| [backup](#backup) | `object` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-backup.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/6/then/properties/parameters/properties/data/properties/backup") | +| [coordinator\_type](#coordinator_type) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-coordinator_type.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/6/then/properties/parameters/properties/data/properties/coordinator_type") | +| [enableBackups](#enablebackups) | `boolean` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-enablebackups.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/6/then/properties/parameters/properties/data/properties/enableBackups") | +| [fileContainer](#filecontainer) | `object` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/6/then/properties/parameters/properties/data/properties/fileContainer") | +| [initOptions](#initoptions) | `object` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-initoptions.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/6/then/properties/parameters/properties/data/properties/initOptions") | +| [iqEnabled](#iqenabled) | `boolean` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-iqenabled.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/6/then/properties/parameters/properties/data/properties/iqEnabled") | +| [num\_coordinators](#num_coordinators) | `integer` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-num_coordinators.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/6/then/properties/parameters/properties/data/properties/num_coordinators") | +| [num\_readers](#num_readers) | `integer` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-num_readers.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/6/then/properties/parameters/properties/data/properties/num_readers") | +| [num\_writers](#num_writers) | `integer` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-num_writers.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/6/then/properties/parameters/properties/data/properties/num_writers") | +| [provisioned\_size\_gib](#provisioned_size_gib) | `integer` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-provisioned_size_gib.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/6/then/properties/parameters/properties/data/properties/provisioned_size_gib") | +| [reader\_type](#reader_type) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-reader_type.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/6/then/properties/parameters/properties/data/properties/reader_type") | +| [serviceStopped](#servicestopped) | `boolean` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-servicestopped.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/6/then/properties/parameters/properties/data/properties/serviceStopped") | +| [storage\_service\_provider](#storage_service_provider) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-storage_service_provider.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/6/then/properties/parameters/properties/data/properties/storage_service_provider") | +| [storage\_service\_tier](#storage_service_tier) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-storage_service_tier.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/6/then/properties/parameters/properties/data/properties/storage_service_tier") | +| [systempassword](#systempassword) | `string` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-systempassword.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/6/then/properties/parameters/properties/data/properties/systempassword") | +| [updateStrategy](#updatestrategy) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-updatestrategy.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/6/then/properties/parameters/properties/data/properties/updateStrategy") | +| [versionIndicator](#versionindicator) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-versionindicator.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/6/then/properties/parameters/properties/data/properties/versionIndicator") | +| [whitelistIPs](#whitelistips) | `array` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-whitelistips.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/6/then/properties/parameters/properties/data/properties/whitelistIPs") | +| [writer\_type](#writer_type) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-writer_type.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/6/then/properties/parameters/properties/data/properties/writer_type") | ## backup @@ -34,15 +34,15 @@ Backup service properties * is optional -* Type: `object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-backup.md)) +* Type: `object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-backup.md)) * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-backup.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/6/then/properties/parameters/properties/data/properties/backup") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-backup.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/6/then/properties/parameters/properties/data/properties/backup") ### backup Type -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-backup.md)) +`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-backup.md)) ## coordinator\_type @@ -56,7 +56,7 @@ Node type for IQ co-ordinators. * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-coordinator_type.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/6/then/properties/parameters/properties/data/properties/coordinator_type") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-coordinator_type.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/6/then/properties/parameters/properties/data/properties/coordinator_type") ### coordinator\_type Type @@ -86,7 +86,7 @@ Describes if IQ backups are enabled or not * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-enablebackups.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/6/then/properties/parameters/properties/data/properties/enableBackups") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-enablebackups.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/6/then/properties/parameters/properties/data/properties/enableBackups") ### enableBackups Type @@ -100,15 +100,15 @@ Configuration of the Data Lake's default file container * is optional -* Type: `object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer.md)) +* Type: `object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer.md)) * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/6/then/properties/parameters/properties/data/properties/fileContainer") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/6/then/properties/parameters/properties/data/properties/fileContainer") ### fileContainer Type -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer.md)) +`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer.md)) ## initOptions @@ -118,15 +118,15 @@ Configuration of the Data Lake's default file container * is optional -* Type: `object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-initoptions.md)) +* Type: `object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-initoptions.md)) * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-initoptions.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/6/then/properties/parameters/properties/data/properties/initOptions") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-initoptions.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/6/then/properties/parameters/properties/data/properties/initOptions") ### initOptions Type -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-initoptions.md)) +`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-initoptions.md)) ## iqEnabled @@ -140,7 +140,7 @@ Whether to provision an iq instance for the datalake or not. * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-iqenabled.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/6/then/properties/parameters/properties/data/properties/iqEnabled") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-iqenabled.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/6/then/properties/parameters/properties/data/properties/iqEnabled") ### iqEnabled Type @@ -158,7 +158,7 @@ Whether to provision an iq instance for the datalake or not. * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-num_coordinators.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/6/then/properties/parameters/properties/data/properties/num_coordinators") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-num_coordinators.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/6/then/properties/parameters/properties/data/properties/num_coordinators") ### num\_coordinators Type @@ -182,7 +182,7 @@ Whether to provision an iq instance for the datalake or not. * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-num_readers.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/6/then/properties/parameters/properties/data/properties/num_readers") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-num_readers.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/6/then/properties/parameters/properties/data/properties/num_readers") ### num\_readers Type @@ -206,7 +206,7 @@ Whether to provision an iq instance for the datalake or not. * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-num_writers.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/6/then/properties/parameters/properties/data/properties/num_writers") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-num_writers.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/6/then/properties/parameters/properties/data/properties/num_writers") ### num\_writers Type @@ -230,7 +230,7 @@ Size of IQ persistence in GB * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-provisioned_size_gib.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/6/then/properties/parameters/properties/data/properties/provisioned_size_gib") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-provisioned_size_gib.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/6/then/properties/parameters/properties/data/properties/provisioned_size_gib") ### provisioned\_size\_gib Type @@ -254,7 +254,7 @@ Node size for IQ readers. * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-reader_type.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/6/then/properties/parameters/properties/data/properties/reader_type") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-reader_type.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/6/then/properties/parameters/properties/data/properties/reader_type") ### reader\_type Type @@ -284,7 +284,7 @@ Describes if the system should be running or stopped * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-servicestopped.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/6/then/properties/parameters/properties/data/properties/serviceStopped") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-servicestopped.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/6/then/properties/parameters/properties/data/properties/serviceStopped") ### serviceStopped Type @@ -302,7 +302,7 @@ The storage service provider to use. * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-storage_service_provider.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/6/then/properties/parameters/properties/data/properties/storage_service_provider") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-storage_service_provider.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/6/then/properties/parameters/properties/data/properties/storage_service_provider") ### storage\_service\_provider Type @@ -320,7 +320,7 @@ The storage service tier to use. * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-storage_service_tier.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/6/then/properties/parameters/properties/data/properties/storage_service_tier") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-storage_service_tier.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/6/then/properties/parameters/properties/data/properties/storage_service_tier") ### storage\_service\_tier Type @@ -338,7 +338,7 @@ Password to be set for tenant * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-systempassword.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/6/then/properties/parameters/properties/data/properties/systempassword") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-systempassword.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/6/then/properties/parameters/properties/data/properties/systempassword") ### systempassword Type @@ -360,7 +360,7 @@ Preferred behaviour for iq version upgrade * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-updatestrategy.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/6/then/properties/parameters/properties/data/properties/updateStrategy") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-updatestrategy.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/6/then/properties/parameters/properties/data/properties/updateStrategy") ### updateStrategy Type @@ -387,7 +387,7 @@ The version of the service to use * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-versionindicator.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/6/then/properties/parameters/properties/data/properties/versionIndicator") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-versionindicator.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/6/then/properties/parameters/properties/data/properties/versionIndicator") ### versionIndicator Type @@ -405,7 +405,7 @@ The version of the service to use * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-whitelistips.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/6/then/properties/parameters/properties/data/properties/whitelistIPs") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-whitelistips.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/6/then/properties/parameters/properties/data/properties/whitelistIPs") ### whitelistIPs Type @@ -427,7 +427,7 @@ Node size for IQ writers. * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-writer_type.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/6/then/properties/parameters/properties/data/properties/writer_type") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data-properties-writer_type.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/6/then/properties/parameters/properties/data/properties/writer_type") ### writer\_type Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-metadata-propertynames.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-metadata-propertynames.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-metadata-propertynames.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-metadata-propertynames.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-metadata.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-metadata.md similarity index 87% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-metadata.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-metadata.md index 1b1395f1..fcc405cb 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-metadata.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-metadata.md @@ -1,6 +1,6 @@ ## metadata Type -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-metadata.md)) +`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-metadata.md)) # metadata Properties diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters.md similarity index 72% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters.md index 3b74f084..9739ab1b 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters.md @@ -1,13 +1,13 @@ ## parameters Type -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters.md)) +`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters.md)) # parameters Properties | Property | Type | Required | Nullable | Defined by | | :-------------------- | :------- | :------- | :------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [data](#data) | `object` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/6/then/properties/parameters/properties/data") | -| [metadata](#metadata) | `object` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-metadata.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/6/then/properties/parameters/properties/metadata") | +| [data](#data) | `object` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/6/then/properties/parameters/properties/data") | +| [metadata](#metadata) | `object` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-metadata.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/6/then/properties/parameters/properties/metadata") | ## data @@ -17,15 +17,15 @@ * is required -* Type: `object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data.md)) +* Type: `object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data.md)) * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/6/then/properties/parameters/properties/data") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/6/then/properties/parameters/properties/data") ### data Type -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data.md)) +`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-data.md)) ## metadata @@ -35,12 +35,12 @@ * is optional -* Type: `object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-metadata.md)) +* Type: `object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-metadata.md)) * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-metadata.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/6/then/properties/parameters/properties/metadata") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-metadata.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/6/then/properties/parameters/properties/metadata") ### metadata Type -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-metadata.md)) +`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters-properties-metadata.md)) diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then.md index 64bb65b2..02792c14 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then.md @@ -4,34 +4,34 @@ unknown # then Properties -| Property | Type | Required | Nullable | Defined by | -| :------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/6/then/properties/plan") | +| Property | Type | Required | Nullable | Defined by | +| :------------------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/6/then/properties/plan") | +| [parameters](#parameters) | `object` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/6/then/properties/parameters") | ## plan -service plan >256premium< for >hana-db< is available in data centers: +service plan >relational-data-lake< for >hana-cloud< is available in data centers: -* {'region': 'ae1', 'name': 'UAE (Dubai)'} -* {'region': 'ap1', 'name': 'Australia (Sydney)'} +* {'region': 'ap10', 'name': 'Australia (Sydney)'} +* {'region': 'ap11', 'name': 'Singapore'} +* {'region': 'ap12', 'name': 'South Korea (Seoul)'} * {'region': 'ap20', 'name': 'Australia (Sydney) Azure'} * {'region': 'ap21', 'name': 'Singapore'} -* {'region': 'br1', 'name': 'Brazil (Sao Paulo)'} -* {'region': 'ca1', 'name': 'Canada (Toronto)'} -* {'region': 'cn1', 'name': 'China (Shanghai)'} -* {'region': 'eu1', 'name': 'Europe (Rot)'} -* {'region': 'eu2', 'name': 'Europe (Frankfurt)'} +* {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} +* {'region': 'ca10', 'name': 'Canada (Montreal)'} +* {'region': 'ch20', 'name': 'cf-ch20'} +* {'region': 'eu10', 'name': 'Europe (Frankfurt)'} +* {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} * {'region': 'eu20', 'name': 'Europe (Netherlands)'} -* {'region': 'eu3', 'name': 'Europe (Amsterdam)'} -* {'region': 'jp1', 'name': 'Japan (Tokyo)'} +* {'region': 'eu30', 'name': 'Europe (Frankfurt)'} +* {'region': 'in30', 'name': 'India (Mumbai)'} +* {'region': 'jp10', 'name': 'Japan (Tokyo)'} * {'region': 'jp20', 'name': 'Japan (Tokyo)'} -* {'region': 'sa1', 'name': 'KSA (Riyadh)'} -* {'region': 'us1', 'name': 'US East (Ashburn)'} -* {'region': 'us2', 'name': 'US West (Chandler)'} +* {'region': 'us10', 'name': 'US East (VA)'} * {'region': 'us20', 'name': 'US West (WA)'} * {'region': 'us21', 'name': 'US East (VA)'} -* {'region': 'us3', 'name': 'US East (Sterling)'} -* {'region': 'us4', 'name': 'US West (Colorado Springs)'} +* {'region': 'us30', 'name': 'US Central (IA)'} `plan` @@ -46,3 +46,21 @@ service plan >256premium< for >hana-db< is available in data centers: ### plan Type unknown + +## parameters + + + +`parameters` + +* is required + +* Type: `object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters.md)) + +* cannot be null + +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/6/then/properties/parameters") + +### parameters Type + +`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-6-then-properties-parameters.md)) diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-if-properties-plan.md index 22087157..fc6a8616 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"256standard" +"relational-data-lake-free" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-if.md index cc5b6f6b..d7431c8d 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"256standard" +"relational-data-lake-free" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters-properties-data-properties-coordinator_type.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters-properties-data-properties-coordinator_type.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters-properties-data-properties-coordinator_type.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters-properties-data-properties-coordinator_type.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters-properties-data-properties-initoptions-properties-blankpadding.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters-properties-data-properties-initoptions-properties-blankpadding.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters-properties-data-properties-initoptions-properties-blankpadding.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters-properties-data-properties-initoptions-properties-blankpadding.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters-properties-data-properties-initoptions-properties-casesensitivity.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters-properties-data-properties-initoptions-properties-casesensitivity.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters-properties-data-properties-initoptions-properties-casesensitivity.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters-properties-data-properties-initoptions-properties-casesensitivity.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters-properties-data-properties-initoptions-properties-collation.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters-properties-data-properties-initoptions-properties-collation.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters-properties-data-properties-initoptions-properties-collation.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters-properties-data-properties-initoptions-properties-collation.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters-properties-data-properties-initoptions-properties-ncharaccentsensitivity.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters-properties-data-properties-initoptions-properties-ncharaccentsensitivity.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters-properties-data-properties-initoptions-properties-ncharaccentsensitivity.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters-properties-data-properties-initoptions-properties-ncharaccentsensitivity.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters-properties-data-properties-initoptions-properties-ncharcasesensitivity.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters-properties-data-properties-initoptions-properties-ncharcasesensitivity.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters-properties-data-properties-initoptions-properties-ncharcasesensitivity.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters-properties-data-properties-initoptions-properties-ncharcasesensitivity.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters-properties-data-properties-initoptions-properties-ncharcollation.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters-properties-data-properties-initoptions-properties-ncharcollation.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters-properties-data-properties-initoptions-properties-ncharcollation.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters-properties-data-properties-initoptions-properties-ncharcollation.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters-properties-data-properties-initoptions-properties-ncharlocale.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters-properties-data-properties-initoptions-properties-ncharlocale.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters-properties-data-properties-initoptions-properties-ncharlocale.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters-properties-data-properties-initoptions-properties-ncharlocale.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters-properties-data-properties-initoptions-properties-ncharpunctuationsensitivity.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters-properties-data-properties-initoptions-properties-ncharpunctuationsensitivity.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters-properties-data-properties-initoptions-properties-ncharpunctuationsensitivity.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters-properties-data-properties-initoptions-properties-ncharpunctuationsensitivity.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters-properties-data-properties-initoptions-properties-ncharsorttype.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters-properties-data-properties-initoptions-properties-ncharsorttype.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters-properties-data-properties-initoptions-properties-ncharsorttype.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters-properties-data-properties-initoptions-properties-ncharsorttype.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters-properties-data-properties-initoptions.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters-properties-data-properties-initoptions.md similarity index 89% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters-properties-data-properties-initoptions.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters-properties-data-properties-initoptions.md index 75bbd732..36580906 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters-properties-data-properties-initoptions.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters-properties-data-properties-initoptions.md @@ -1,20 +1,20 @@ ## initOptions Type -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters-properties-data-properties-initoptions.md)) +`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters-properties-data-properties-initoptions.md)) # initOptions Properties | Property | Type | Required | Nullable | Defined by | | :---------------------------------------------------------- | :------- | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [blankPadding](#blankpadding) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters-properties-data-properties-initoptions-properties-blankpadding.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/7/then/properties/parameters/properties/data/properties/initOptions/properties/blankPadding") | -| [caseSensitivity](#casesensitivity) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters-properties-data-properties-initoptions-properties-casesensitivity.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/7/then/properties/parameters/properties/data/properties/initOptions/properties/caseSensitivity") | -| [collation](#collation) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters-properties-data-properties-initoptions-properties-collation.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/7/then/properties/parameters/properties/data/properties/initOptions/properties/collation") | -| [ncharAccentSensitivity](#ncharaccentsensitivity) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters-properties-data-properties-initoptions-properties-ncharaccentsensitivity.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/7/then/properties/parameters/properties/data/properties/initOptions/properties/ncharAccentSensitivity") | -| [ncharCaseSensitivity](#ncharcasesensitivity) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters-properties-data-properties-initoptions-properties-ncharcasesensitivity.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/7/then/properties/parameters/properties/data/properties/initOptions/properties/ncharCaseSensitivity") | -| [ncharCollation](#ncharcollation) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters-properties-data-properties-initoptions-properties-ncharcollation.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/7/then/properties/parameters/properties/data/properties/initOptions/properties/ncharCollation") | -| [ncharLocale](#ncharlocale) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters-properties-data-properties-initoptions-properties-ncharlocale.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/7/then/properties/parameters/properties/data/properties/initOptions/properties/ncharLocale") | -| [ncharPunctuationSensitivity](#ncharpunctuationsensitivity) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters-properties-data-properties-initoptions-properties-ncharpunctuationsensitivity.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/7/then/properties/parameters/properties/data/properties/initOptions/properties/ncharPunctuationSensitivity") | -| [ncharSortType](#ncharsorttype) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters-properties-data-properties-initoptions-properties-ncharsorttype.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/7/then/properties/parameters/properties/data/properties/initOptions/properties/ncharSortType") | +| [blankPadding](#blankpadding) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters-properties-data-properties-initoptions-properties-blankpadding.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/7/then/properties/parameters/properties/data/properties/initOptions/properties/blankPadding") | +| [caseSensitivity](#casesensitivity) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters-properties-data-properties-initoptions-properties-casesensitivity.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/7/then/properties/parameters/properties/data/properties/initOptions/properties/caseSensitivity") | +| [collation](#collation) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters-properties-data-properties-initoptions-properties-collation.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/7/then/properties/parameters/properties/data/properties/initOptions/properties/collation") | +| [ncharAccentSensitivity](#ncharaccentsensitivity) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters-properties-data-properties-initoptions-properties-ncharaccentsensitivity.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/7/then/properties/parameters/properties/data/properties/initOptions/properties/ncharAccentSensitivity") | +| [ncharCaseSensitivity](#ncharcasesensitivity) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters-properties-data-properties-initoptions-properties-ncharcasesensitivity.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/7/then/properties/parameters/properties/data/properties/initOptions/properties/ncharCaseSensitivity") | +| [ncharCollation](#ncharcollation) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters-properties-data-properties-initoptions-properties-ncharcollation.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/7/then/properties/parameters/properties/data/properties/initOptions/properties/ncharCollation") | +| [ncharLocale](#ncharlocale) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters-properties-data-properties-initoptions-properties-ncharlocale.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/7/then/properties/parameters/properties/data/properties/initOptions/properties/ncharLocale") | +| [ncharPunctuationSensitivity](#ncharpunctuationsensitivity) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters-properties-data-properties-initoptions-properties-ncharpunctuationsensitivity.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/7/then/properties/parameters/properties/data/properties/initOptions/properties/ncharPunctuationSensitivity") | +| [ncharSortType](#ncharsorttype) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters-properties-data-properties-initoptions-properties-ncharsorttype.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/7/then/properties/parameters/properties/data/properties/initOptions/properties/ncharSortType") | ## blankPadding @@ -28,7 +28,7 @@ blank padding to be set in HDL * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters-properties-data-properties-initoptions-properties-blankpadding.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/7/then/properties/parameters/properties/data/properties/initOptions/properties/blankPadding") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters-properties-data-properties-initoptions-properties-blankpadding.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/7/then/properties/parameters/properties/data/properties/initOptions/properties/blankPadding") ### blankPadding Type @@ -55,7 +55,7 @@ case sensitivity to be set in HDL * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters-properties-data-properties-initoptions-properties-casesensitivity.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/7/then/properties/parameters/properties/data/properties/initOptions/properties/caseSensitivity") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters-properties-data-properties-initoptions-properties-casesensitivity.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/7/then/properties/parameters/properties/data/properties/initOptions/properties/caseSensitivity") ### caseSensitivity Type @@ -82,7 +82,7 @@ collation to be set in HDL * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters-properties-data-properties-initoptions-properties-collation.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/7/then/properties/parameters/properties/data/properties/initOptions/properties/collation") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters-properties-data-properties-initoptions-properties-collation.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/7/then/properties/parameters/properties/data/properties/initOptions/properties/collation") ### collation Type @@ -138,7 +138,7 @@ AccentSensitivity to be used in nchar UCA collation to be set in HDL * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters-properties-data-properties-initoptions-properties-ncharaccentsensitivity.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/7/then/properties/parameters/properties/data/properties/initOptions/properties/ncharAccentSensitivity") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters-properties-data-properties-initoptions-properties-ncharaccentsensitivity.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/7/then/properties/parameters/properties/data/properties/initOptions/properties/ncharAccentSensitivity") ### ncharAccentSensitivity Type @@ -166,7 +166,7 @@ CaseSensitivity to be used in nchar UCA collation to be set in HDL * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters-properties-data-properties-initoptions-properties-ncharcasesensitivity.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/7/then/properties/parameters/properties/data/properties/initOptions/properties/ncharCaseSensitivity") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters-properties-data-properties-initoptions-properties-ncharcasesensitivity.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/7/then/properties/parameters/properties/data/properties/initOptions/properties/ncharCaseSensitivity") ### ncharCaseSensitivity Type @@ -195,7 +195,7 @@ nchar collation to be set in HDL * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters-properties-data-properties-initoptions-properties-ncharcollation.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/7/then/properties/parameters/properties/data/properties/initOptions/properties/ncharCollation") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters-properties-data-properties-initoptions-properties-ncharcollation.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/7/then/properties/parameters/properties/data/properties/initOptions/properties/ncharCollation") ### ncharCollation Type @@ -222,7 +222,7 @@ locale to be used in nchar UCA collation to be set in HDL * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters-properties-data-properties-initoptions-properties-ncharlocale.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/7/then/properties/parameters/properties/data/properties/initOptions/properties/ncharLocale") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters-properties-data-properties-initoptions-properties-ncharlocale.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/7/then/properties/parameters/properties/data/properties/initOptions/properties/ncharLocale") ### ncharLocale Type @@ -452,7 +452,7 @@ PunctuationSensitivity to be used in nchar UCA collation to be set in HDL * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters-properties-data-properties-initoptions-properties-ncharpunctuationsensitivity.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/7/then/properties/parameters/properties/data/properties/initOptions/properties/ncharPunctuationSensitivity") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters-properties-data-properties-initoptions-properties-ncharpunctuationsensitivity.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/7/then/properties/parameters/properties/data/properties/initOptions/properties/ncharPunctuationSensitivity") ### ncharPunctuationSensitivity Type @@ -480,7 +480,7 @@ SortType to be used in nchar UCA collation to be set in HDL * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters-properties-data-properties-initoptions-properties-ncharsorttype.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/7/then/properties/parameters/properties/data/properties/initOptions/properties/ncharSortType") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters-properties-data-properties-initoptions-properties-ncharsorttype.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/7/then/properties/parameters/properties/data/properties/initOptions/properties/ncharSortType") ### ncharSortType Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters-properties-data-properties-iqenabled.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters-properties-data-properties-iqenabled.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters-properties-data-properties-iqenabled.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters-properties-data-properties-iqenabled.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters-properties-data-properties-num_coordinators.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters-properties-data-properties-num_coordinators.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters-properties-data-properties-num_coordinators.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters-properties-data-properties-num_coordinators.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters-properties-data-properties-num_readers.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters-properties-data-properties-num_readers.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters-properties-data-properties-num_readers.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters-properties-data-properties-num_readers.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters-properties-data-properties-num_writers.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters-properties-data-properties-num_writers.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters-properties-data-properties-num_writers.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters-properties-data-properties-num_writers.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters-properties-data-properties-provisioned_size_gib.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters-properties-data-properties-provisioned_size_gib.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters-properties-data-properties-provisioned_size_gib.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters-properties-data-properties-provisioned_size_gib.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters-properties-data-properties-reader_type.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters-properties-data-properties-reader_type.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters-properties-data-properties-reader_type.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters-properties-data-properties-reader_type.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters-properties-data-properties-servicestopped.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters-properties-data-properties-servicestopped.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters-properties-data-properties-servicestopped.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters-properties-data-properties-servicestopped.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters-properties-data-properties-storage_service_provider.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters-properties-data-properties-storage_service_provider.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters-properties-data-properties-storage_service_provider.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters-properties-data-properties-storage_service_provider.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters-properties-data-properties-storage_service_tier.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters-properties-data-properties-storage_service_tier.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters-properties-data-properties-storage_service_tier.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters-properties-data-properties-storage_service_tier.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters-properties-data-properties-systempassword.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters-properties-data-properties-systempassword.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters-properties-data-properties-systempassword.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters-properties-data-properties-systempassword.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters-properties-data-properties-updatestrategy.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters-properties-data-properties-updatestrategy.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters-properties-data-properties-updatestrategy.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters-properties-data-properties-updatestrategy.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters-properties-data-properties-versionindicator.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters-properties-data-properties-versionindicator.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters-properties-data-properties-versionindicator.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters-properties-data-properties-versionindicator.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters-properties-data-properties-whitelistips-items.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters-properties-data-properties-whitelistips-items.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters-properties-data-properties-whitelistips-items.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters-properties-data-properties-whitelistips-items.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters-properties-data-properties-whitelistips.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters-properties-data-properties-whitelistips.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters-properties-data-properties-whitelistips.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters-properties-data-properties-whitelistips.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters-properties-data-properties-writer_type.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters-properties-data-properties-writer_type.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters-properties-data-properties-writer_type.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters-properties-data-properties-writer_type.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters-properties-data.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters-properties-data.md similarity index 76% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters-properties-data.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters-properties-data.md index ac79ea41..43d92873 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters-properties-data.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters-properties-data.md @@ -1,27 +1,27 @@ ## data Type -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters-properties-data.md)) +`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters-properties-data.md)) # data Properties | Property | Type | Required | Nullable | Defined by | | :------------------------------------------------------ | :------------ | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| [coordinator\_type](#coordinator_type) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters-properties-data-properties-coordinator_type.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/7/then/properties/parameters/properties/data/properties/coordinator_type") | -| [initOptions](#initoptions) | `object` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters-properties-data-properties-initoptions.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/7/then/properties/parameters/properties/data/properties/initOptions") | -| [iqEnabled](#iqenabled) | `boolean` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters-properties-data-properties-iqenabled.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/7/then/properties/parameters/properties/data/properties/iqEnabled") | -| [num\_coordinators](#num_coordinators) | `integer` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters-properties-data-properties-num_coordinators.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/7/then/properties/parameters/properties/data/properties/num_coordinators") | -| [num\_readers](#num_readers) | `integer` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters-properties-data-properties-num_readers.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/7/then/properties/parameters/properties/data/properties/num_readers") | -| [num\_writers](#num_writers) | `integer` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters-properties-data-properties-num_writers.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/7/then/properties/parameters/properties/data/properties/num_writers") | -| [provisioned\_size\_gib](#provisioned_size_gib) | `integer` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters-properties-data-properties-provisioned_size_gib.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/7/then/properties/parameters/properties/data/properties/provisioned_size_gib") | -| [reader\_type](#reader_type) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters-properties-data-properties-reader_type.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/7/then/properties/parameters/properties/data/properties/reader_type") | -| [serviceStopped](#servicestopped) | `boolean` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters-properties-data-properties-servicestopped.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/7/then/properties/parameters/properties/data/properties/serviceStopped") | -| [storage\_service\_provider](#storage_service_provider) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters-properties-data-properties-storage_service_provider.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/7/then/properties/parameters/properties/data/properties/storage_service_provider") | -| [storage\_service\_tier](#storage_service_tier) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters-properties-data-properties-storage_service_tier.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/7/then/properties/parameters/properties/data/properties/storage_service_tier") | -| [systempassword](#systempassword) | `string` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters-properties-data-properties-systempassword.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/7/then/properties/parameters/properties/data/properties/systempassword") | -| [updateStrategy](#updatestrategy) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters-properties-data-properties-updatestrategy.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/7/then/properties/parameters/properties/data/properties/updateStrategy") | -| [versionIndicator](#versionindicator) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters-properties-data-properties-versionindicator.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/7/then/properties/parameters/properties/data/properties/versionIndicator") | -| [whitelistIPs](#whitelistips) | `array` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters-properties-data-properties-whitelistips.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/7/then/properties/parameters/properties/data/properties/whitelistIPs") | -| [writer\_type](#writer_type) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters-properties-data-properties-writer_type.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/7/then/properties/parameters/properties/data/properties/writer_type") | +| [coordinator\_type](#coordinator_type) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters-properties-data-properties-coordinator_type.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/7/then/properties/parameters/properties/data/properties/coordinator_type") | +| [initOptions](#initoptions) | `object` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters-properties-data-properties-initoptions.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/7/then/properties/parameters/properties/data/properties/initOptions") | +| [iqEnabled](#iqenabled) | `boolean` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters-properties-data-properties-iqenabled.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/7/then/properties/parameters/properties/data/properties/iqEnabled") | +| [num\_coordinators](#num_coordinators) | `integer` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters-properties-data-properties-num_coordinators.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/7/then/properties/parameters/properties/data/properties/num_coordinators") | +| [num\_readers](#num_readers) | `integer` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters-properties-data-properties-num_readers.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/7/then/properties/parameters/properties/data/properties/num_readers") | +| [num\_writers](#num_writers) | `integer` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters-properties-data-properties-num_writers.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/7/then/properties/parameters/properties/data/properties/num_writers") | +| [provisioned\_size\_gib](#provisioned_size_gib) | `integer` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters-properties-data-properties-provisioned_size_gib.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/7/then/properties/parameters/properties/data/properties/provisioned_size_gib") | +| [reader\_type](#reader_type) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters-properties-data-properties-reader_type.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/7/then/properties/parameters/properties/data/properties/reader_type") | +| [serviceStopped](#servicestopped) | `boolean` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters-properties-data-properties-servicestopped.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/7/then/properties/parameters/properties/data/properties/serviceStopped") | +| [storage\_service\_provider](#storage_service_provider) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters-properties-data-properties-storage_service_provider.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/7/then/properties/parameters/properties/data/properties/storage_service_provider") | +| [storage\_service\_tier](#storage_service_tier) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters-properties-data-properties-storage_service_tier.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/7/then/properties/parameters/properties/data/properties/storage_service_tier") | +| [systempassword](#systempassword) | `string` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters-properties-data-properties-systempassword.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/7/then/properties/parameters/properties/data/properties/systempassword") | +| [updateStrategy](#updatestrategy) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters-properties-data-properties-updatestrategy.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/7/then/properties/parameters/properties/data/properties/updateStrategy") | +| [versionIndicator](#versionindicator) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters-properties-data-properties-versionindicator.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/7/then/properties/parameters/properties/data/properties/versionIndicator") | +| [whitelistIPs](#whitelistips) | `array` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters-properties-data-properties-whitelistips.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/7/then/properties/parameters/properties/data/properties/whitelistIPs") | +| [writer\_type](#writer_type) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters-properties-data-properties-writer_type.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/7/then/properties/parameters/properties/data/properties/writer_type") | ## coordinator\_type @@ -35,7 +35,7 @@ Node type for IQ co-ordinators. * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters-properties-data-properties-coordinator_type.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/7/then/properties/parameters/properties/data/properties/coordinator_type") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters-properties-data-properties-coordinator_type.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/7/then/properties/parameters/properties/data/properties/coordinator_type") ### coordinator\_type Type @@ -57,15 +57,15 @@ unknown * is optional -* Type: `object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters-properties-data-properties-initoptions.md)) +* Type: `object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters-properties-data-properties-initoptions.md)) * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters-properties-data-properties-initoptions.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/7/then/properties/parameters/properties/data/properties/initOptions") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters-properties-data-properties-initoptions.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/7/then/properties/parameters/properties/data/properties/initOptions") ### initOptions Type -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters-properties-data-properties-initoptions.md)) +`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters-properties-data-properties-initoptions.md)) ## iqEnabled @@ -79,7 +79,7 @@ Whether to provision an iq instance for the datalake or not. * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters-properties-data-properties-iqenabled.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/7/then/properties/parameters/properties/data/properties/iqEnabled") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters-properties-data-properties-iqenabled.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/7/then/properties/parameters/properties/data/properties/iqEnabled") ### iqEnabled Type @@ -97,7 +97,7 @@ Whether to provision an iq instance for the datalake or not. * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters-properties-data-properties-num_coordinators.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/7/then/properties/parameters/properties/data/properties/num_coordinators") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters-properties-data-properties-num_coordinators.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/7/then/properties/parameters/properties/data/properties/num_coordinators") ### num\_coordinators Type @@ -121,7 +121,7 @@ Whether to provision an iq instance for the datalake or not. * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters-properties-data-properties-num_readers.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/7/then/properties/parameters/properties/data/properties/num_readers") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters-properties-data-properties-num_readers.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/7/then/properties/parameters/properties/data/properties/num_readers") ### num\_readers Type @@ -145,7 +145,7 @@ Whether to provision an iq instance for the datalake or not. * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters-properties-data-properties-num_writers.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/7/then/properties/parameters/properties/data/properties/num_writers") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters-properties-data-properties-num_writers.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/7/then/properties/parameters/properties/data/properties/num_writers") ### num\_writers Type @@ -169,7 +169,7 @@ Size of IQ persistence in GB * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters-properties-data-properties-provisioned_size_gib.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/7/then/properties/parameters/properties/data/properties/provisioned_size_gib") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters-properties-data-properties-provisioned_size_gib.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/7/then/properties/parameters/properties/data/properties/provisioned_size_gib") ### provisioned\_size\_gib Type @@ -193,7 +193,7 @@ Node size for IQ readers. * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters-properties-data-properties-reader_type.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/7/then/properties/parameters/properties/data/properties/reader_type") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters-properties-data-properties-reader_type.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/7/then/properties/parameters/properties/data/properties/reader_type") ### reader\_type Type @@ -219,7 +219,7 @@ Describes if the system should be running or stopped * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters-properties-data-properties-servicestopped.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/7/then/properties/parameters/properties/data/properties/serviceStopped") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters-properties-data-properties-servicestopped.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/7/then/properties/parameters/properties/data/properties/serviceStopped") ### serviceStopped Type @@ -237,7 +237,7 @@ The storage service provider to use. * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters-properties-data-properties-storage_service_provider.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/7/then/properties/parameters/properties/data/properties/storage_service_provider") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters-properties-data-properties-storage_service_provider.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/7/then/properties/parameters/properties/data/properties/storage_service_provider") ### storage\_service\_provider Type @@ -255,7 +255,7 @@ The storage service tier to use. * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters-properties-data-properties-storage_service_tier.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/7/then/properties/parameters/properties/data/properties/storage_service_tier") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters-properties-data-properties-storage_service_tier.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/7/then/properties/parameters/properties/data/properties/storage_service_tier") ### storage\_service\_tier Type @@ -273,7 +273,7 @@ Password to be set for tenant * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters-properties-data-properties-systempassword.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/7/then/properties/parameters/properties/data/properties/systempassword") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters-properties-data-properties-systempassword.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/7/then/properties/parameters/properties/data/properties/systempassword") ### systempassword Type @@ -295,7 +295,7 @@ Preferred behaviour for iq version upgrade * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters-properties-data-properties-updatestrategy.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/7/then/properties/parameters/properties/data/properties/updateStrategy") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters-properties-data-properties-updatestrategy.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/7/then/properties/parameters/properties/data/properties/updateStrategy") ### updateStrategy Type @@ -322,7 +322,7 @@ The version of the service to use * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters-properties-data-properties-versionindicator.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/7/then/properties/parameters/properties/data/properties/versionIndicator") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters-properties-data-properties-versionindicator.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/7/then/properties/parameters/properties/data/properties/versionIndicator") ### versionIndicator Type @@ -340,7 +340,7 @@ The version of the service to use * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters-properties-data-properties-whitelistips.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/7/then/properties/parameters/properties/data/properties/whitelistIPs") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters-properties-data-properties-whitelistips.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/7/then/properties/parameters/properties/data/properties/whitelistIPs") ### whitelistIPs Type @@ -362,7 +362,7 @@ Node size for IQ writers. * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters-properties-data-properties-writer_type.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/7/then/properties/parameters/properties/data/properties/writer_type") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters-properties-data-properties-writer_type.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/7/then/properties/parameters/properties/data/properties/writer_type") ### writer\_type Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters-properties-metadata-propertynames.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters-properties-metadata-propertynames.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters-properties-metadata-propertynames.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters-properties-metadata-propertynames.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-metadata.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters-properties-metadata.md similarity index 87% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-metadata.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters-properties-metadata.md index d24d1296..1cc433f5 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-metadata.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters-properties-metadata.md @@ -1,6 +1,6 @@ ## metadata Type -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-2-then-properties-parameters-properties-metadata.md)) +`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters-properties-metadata.md)) # metadata Properties diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters.md similarity index 72% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters.md index 978fe43a..5c4646b3 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters.md @@ -1,13 +1,13 @@ ## parameters Type -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters.md)) +`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters.md)) # parameters Properties | Property | Type | Required | Nullable | Defined by | | :-------------------- | :------- | :------- | :------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [data](#data) | `object` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters-properties-data.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/7/then/properties/parameters/properties/data") | -| [metadata](#metadata) | `object` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters-properties-metadata.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/7/then/properties/parameters/properties/metadata") | +| [data](#data) | `object` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters-properties-data.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/7/then/properties/parameters/properties/data") | +| [metadata](#metadata) | `object` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters-properties-metadata.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/7/then/properties/parameters/properties/metadata") | ## data @@ -17,15 +17,15 @@ * is required -* Type: `object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters-properties-data.md)) +* Type: `object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters-properties-data.md)) * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters-properties-data.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/7/then/properties/parameters/properties/data") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters-properties-data.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/7/then/properties/parameters/properties/data") ### data Type -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters-properties-data.md)) +`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters-properties-data.md)) ## metadata @@ -35,12 +35,12 @@ * is optional -* Type: `object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters-properties-metadata.md)) +* Type: `object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters-properties-metadata.md)) * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters-properties-metadata.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/7/then/properties/parameters/properties/metadata") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters-properties-metadata.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/7/then/properties/parameters/properties/metadata") ### metadata Type -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-parameters-properties-metadata.md)) +`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters-properties-metadata.md)) diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then.md index d24fe7da..8f8d809a 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then.md @@ -4,34 +4,29 @@ unknown # then Properties -| Property | Type | Required | Nullable | Defined by | -| :------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/7/then/properties/plan") | +| Property | Type | Required | Nullable | Defined by | +| :------------------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/7/then/properties/plan") | +| [parameters](#parameters) | `object` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/7/then/properties/parameters") | ## plan -service plan >256standard< for >hana-db< is available in data centers: +service plan >relational-data-lake-free< for >hana-cloud< is available in data centers: -* {'region': 'ae1', 'name': 'UAE (Dubai)'} -* {'region': 'ap1', 'name': 'Australia (Sydney)'} +* {'region': 'ap10', 'name': 'Australia (Sydney)'} +* {'region': 'ap11', 'name': 'Singapore'} +* {'region': 'ap12', 'name': 'South Korea (Seoul)'} * {'region': 'ap20', 'name': 'Australia (Sydney) Azure'} * {'region': 'ap21', 'name': 'Singapore'} -* {'region': 'br1', 'name': 'Brazil (Sao Paulo)'} -* {'region': 'ca1', 'name': 'Canada (Toronto)'} -* {'region': 'cn1', 'name': 'China (Shanghai)'} -* {'region': 'eu1', 'name': 'Europe (Rot)'} -* {'region': 'eu2', 'name': 'Europe (Frankfurt)'} +* {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} +* {'region': 'ca10', 'name': 'Canada (Montreal)'} +* {'region': 'ch20', 'name': 'cf-ch20'} * {'region': 'eu20', 'name': 'Europe (Netherlands)'} -* {'region': 'eu3', 'name': 'Europe (Amsterdam)'} -* {'region': 'jp1', 'name': 'Japan (Tokyo)'} +* {'region': 'jp10', 'name': 'Japan (Tokyo)'} * {'region': 'jp20', 'name': 'Japan (Tokyo)'} -* {'region': 'sa1', 'name': 'KSA (Riyadh)'} -* {'region': 'us1', 'name': 'US East (Ashburn)'} -* {'region': 'us2', 'name': 'US West (Chandler)'} +* {'region': 'us10', 'name': 'US East (VA)'} * {'region': 'us20', 'name': 'US West (WA)'} * {'region': 'us21', 'name': 'US East (VA)'} -* {'region': 'us3', 'name': 'US East (Sterling)'} -* {'region': 'us4', 'name': 'US West (Colorado Springs)'} `plan` @@ -46,3 +41,21 @@ service plan >256standard< for >hana-db< is available in data centers: ### plan Type unknown + +## parameters + + + +`parameters` + +* is required + +* Type: `object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters.md)) + +* cannot be null + +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/7/then/properties/parameters") + +### parameters Type + +`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7-then-properties-parameters.md)) diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-properties-plan.md index cefb1752..d135fb42 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-properties-plan.md @@ -6,19 +6,13 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :--------------- | :---------- | -| `"1024premium"` | | -| `"1024standard"` | | -| `"128premium"` | | -| `"128standard"` | | -| `"2048premium"` | | -| `"2048standard"` | | -| `"256premium"` | | -| `"256standard"` | | -| `"512premium"` | | -| `"512standard"` | | -| `"64premium"` | | -| `"64standard"` | | -| `"enterprise"` | | -| `"standard"` | | +| Value | Explanation | +| :----------------------------------------- | :---------- | +| `"adaptive-server-enterprise"` | | +| `"adaptive-server-enterprise-replication"` | | +| `"hana"` | | +| `"hana-cloud-connection"` | | +| `"hana-cloud-connection-free"` | | +| `"hana-free"` | | +| `"relational-data-lake"` | | +| `"relational-data-lake-free"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then.md index bdb484e6..c58dc88a 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then.md @@ -20,18 +20,6 @@ all of * [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-7.md "check type definition") -* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-8.md "check type definition") - -* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-9.md "check type definition") - -* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-10.md "check type definition") - -* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-11.md "check type definition") - -* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-12.md "check type definition") - -* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-13.md "check type definition") - # then Properties | Property | Type | Required | Nullable | Defined by | @@ -61,26 +49,20 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :--------------- | :---------- | -| `"1024premium"` | | -| `"1024standard"` | | -| `"128premium"` | | -| `"128standard"` | | -| `"2048premium"` | | -| `"2048standard"` | | -| `"256premium"` | | -| `"256standard"` | | -| `"512premium"` | | -| `"512standard"` | | -| `"64premium"` | | -| `"64standard"` | | -| `"enterprise"` | | -| `"standard"` | | +| Value | Explanation | +| :----------------------------------------- | :---------- | +| `"adaptive-server-enterprise"` | | +| `"adaptive-server-enterprise-replication"` | | +| `"hana"` | | +| `"hana-cloud-connection"` | | +| `"hana-cloud-connection-free"` | | +| `"hana-free"` | | +| `"relational-data-lake"` | | +| `"relational-data-lake-free"` | | ## name -SAP HANA service for SAP BTP: The SAP HANA service allows you to leverage the in-memory data processing capabilities of SAP HANA in the cloud. As a managed database service, backups are fully automated and service availability guaranteed. Using the SAP HANA service, you can set up and manage SAP HANA databases and bind them to applications running on SAP Business Technology Platform. You can access SAP HANA databases using a variety of languages and interfaces, as well as build applications and models using tools provided with SAP HANA. +SAP HANA Cloud: SAP HANA Cloud provides a single place to access, store, and process all enterprise data in real time. It is a cloud-native platform that reduces the complexity of multi-cloud or hybrid system landscapes. SAP HANA Cloud provides all of the advanced SAP HANA technologies for multi-model data processing in-memory or on disk. You can benefit from cloud qualities such as automatic software updates, elasticity, and low total cost of ownership by using SAP HANA Cloud either as a stand-alone solution or as an extension to your existing on-premise environment. `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-if-properties-name.md index ffa1de15..55099391 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"hana-tenant-db" +"hana-db" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-if.md index f0a1f9d1..907892e5 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"hana-tenant-db" +"hana-db" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-0-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-0-if-properties-plan.md index 126392b1..87a53216 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-0-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-0-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"standard" +"1024premium" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-0-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-0-if.md index 5dc0afc9..e2ca0223 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-0-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-0-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"standard" +"1024premium" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-0-then.md index 8659af4d..84a0acc8 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-0-then.md @@ -10,13 +10,28 @@ unknown ## plan -service plan >standard< for >hana-tenant-db< is available in data centers: +service plan >1024premium< for >hana-db< is available in data centers: +* {'region': 'ae1', 'name': 'UAE (Dubai)'} +* {'region': 'ap1', 'name': 'Australia (Sydney)'} +* {'region': 'ap20', 'name': 'Australia (Sydney) Azure'} * {'region': 'ap21', 'name': 'Singapore'} +* {'region': 'br1', 'name': 'Brazil (Sao Paulo)'} +* {'region': 'ca1', 'name': 'Canada (Toronto)'} +* {'region': 'cn1', 'name': 'China (Shanghai)'} +* {'region': 'eu1', 'name': 'Europe (Rot)'} +* {'region': 'eu2', 'name': 'Europe (Frankfurt)'} * {'region': 'eu20', 'name': 'Europe (Netherlands)'} +* {'region': 'eu3', 'name': 'Europe (Amsterdam)'} +* {'region': 'jp1', 'name': 'Japan (Tokyo)'} * {'region': 'jp20', 'name': 'Japan (Tokyo)'} +* {'region': 'sa1', 'name': 'KSA (Riyadh)'} +* {'region': 'us1', 'name': 'US East (Ashburn)'} +* {'region': 'us2', 'name': 'US West (Chandler)'} * {'region': 'us20', 'name': 'US West (WA)'} * {'region': 'us21', 'name': 'US East (VA)'} +* {'region': 'us3', 'name': 'US East (Sterling)'} +* {'region': 'us4', 'name': 'US West (Colorado Springs)'} `plan` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-1-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-1-if-properties-plan.md new file mode 100644 index 00000000..30f91bfd --- /dev/null +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-1-if-properties-plan.md @@ -0,0 +1,11 @@ +## plan Type + +unknown + +## plan Constraints + +**constant**: the value of this property must be equal to: + +```json +"1024standard" +``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-39-then-allof-3-then-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-1-if-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-39-then-allof-3-then-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-1-if-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-1-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-1-if.md new file mode 100644 index 00000000..e55af970 --- /dev/null +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-1-if.md @@ -0,0 +1,35 @@ +## if Type + +unknown + +# if Properties + +| Property | Type | Required | Nullable | Defined by | +| :------------ | :------------ | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/42/then/allOf/1/if/properties/plan") | + +## plan + + + +`plan` + +* is optional + +* Type: unknown + +* cannot be null + +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/42/then/allOf/1/if/properties/plan") + +### plan Type + +unknown + +### plan Constraints + +**constant**: the value of this property must be equal to: + +```json +"1024standard" +``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-39-then-allof-2-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-1-then-properties-plan.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-39-then-allof-2-then-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-1-then-properties-plan.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-4-if-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-1-then-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-4-if-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-1-then-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-1-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-1-then.md new file mode 100644 index 00000000..f3dfd94b --- /dev/null +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-1-then.md @@ -0,0 +1,48 @@ +## then Type + +unknown + +# then Properties + +| Property | Type | Required | Nullable | Defined by | +| :------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/42/then/allOf/1/then/properties/plan") | + +## plan + +service plan >1024standard< for >hana-db< is available in data centers: + +* {'region': 'ae1', 'name': 'UAE (Dubai)'} +* {'region': 'ap1', 'name': 'Australia (Sydney)'} +* {'region': 'ap20', 'name': 'Australia (Sydney) Azure'} +* {'region': 'ap21', 'name': 'Singapore'} +* {'region': 'br1', 'name': 'Brazil (Sao Paulo)'} +* {'region': 'ca1', 'name': 'Canada (Toronto)'} +* {'region': 'cn1', 'name': 'China (Shanghai)'} +* {'region': 'eu1', 'name': 'Europe (Rot)'} +* {'region': 'eu2', 'name': 'Europe (Frankfurt)'} +* {'region': 'eu20', 'name': 'Europe (Netherlands)'} +* {'region': 'eu3', 'name': 'Europe (Amsterdam)'} +* {'region': 'jp1', 'name': 'Japan (Tokyo)'} +* {'region': 'jp20', 'name': 'Japan (Tokyo)'} +* {'region': 'sa1', 'name': 'KSA (Riyadh)'} +* {'region': 'us1', 'name': 'US East (Ashburn)'} +* {'region': 'us2', 'name': 'US West (Chandler)'} +* {'region': 'us20', 'name': 'US West (WA)'} +* {'region': 'us21', 'name': 'US East (VA)'} +* {'region': 'us3', 'name': 'US East (Sterling)'} +* {'region': 'us4', 'name': 'US West (Colorado Springs)'} + +`plan` + +* is optional + +* Type: unknown + +* cannot be null + +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/42/then/allOf/1/then/properties/plan") + +### plan Type + +unknown diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-1.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-1.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-38-then-allof-1.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-1.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-10-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-10-if-properties-plan.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-10-if-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-10-if-properties-plan.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-4-then-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-10-if-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-4-then-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-10-if-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-10-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-10-if.md similarity index 83% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-10-if.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-10-if.md index 7abcec80..fbafcfd6 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-10-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-10-if.md @@ -6,7 +6,7 @@ unknown | Property | Type | Required | Nullable | Defined by | | :------------ | :------------ | :------- | :------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-10-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/10/if/properties/plan") | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-10-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/42/then/allOf/10/if/properties/plan") | ## plan @@ -20,7 +20,7 @@ unknown * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-10-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/10/if/properties/plan") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-10-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/42/then/allOf/10/if/properties/plan") ### plan Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-39-then-allof-3-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-10-then-properties-plan.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-39-then-allof-3-then-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-10-then-properties-plan.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-5-if-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-10-then-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-5-if-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-10-then-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-10-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-10-then.md similarity index 88% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-10-then.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-10-then.md index 4b175e26..9183480d 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-10-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-10-then.md @@ -6,7 +6,7 @@ unknown | Property | Type | Required | Nullable | Defined by | | :------------ | :------------ | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-10-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/10/then/properties/plan") | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-10-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/42/then/allOf/10/then/properties/plan") | ## plan @@ -35,7 +35,7 @@ service plan >64premium< for >hana-db< is available in data centers: * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-10-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/10/then/properties/plan") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-10-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/42/then/allOf/10/then/properties/plan") ### plan Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-10.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-10.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-10.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-10.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-11-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-11-if-properties-plan.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-11-if-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-11-if-properties-plan.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-5-then-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-11-if-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-5-then-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-11-if-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-11-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-11-if.md similarity index 83% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-11-if.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-11-if.md index 8f7271f9..9a03f57b 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-11-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-11-if.md @@ -6,7 +6,7 @@ unknown | Property | Type | Required | Nullable | Defined by | | :------------ | :------------ | :------- | :------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-11-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/11/if/properties/plan") | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-11-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/42/then/allOf/11/if/properties/plan") | ## plan @@ -20,7 +20,7 @@ unknown * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-11-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/11/if/properties/plan") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-11-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/42/then/allOf/11/if/properties/plan") ### plan Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-4-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-11-then-properties-plan.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-4-then-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-11-then-properties-plan.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-if-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-11-then-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-if-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-11-then-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-11-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-11-then.md similarity index 88% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-11-then.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-11-then.md index 7e15846b..5a11aedf 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-11-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-11-then.md @@ -6,7 +6,7 @@ unknown | Property | Type | Required | Nullable | Defined by | | :------------ | :------------ | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-11-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/11/then/properties/plan") | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-11-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/42/then/allOf/11/then/properties/plan") | ## plan @@ -35,7 +35,7 @@ service plan >64standard< for >hana-db< is available in data centers: * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-11-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/11/then/properties/plan") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-11-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/42/then/allOf/11/then/properties/plan") ### plan Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-11.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-11.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-11.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-11.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-12-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-12-if-properties-plan.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-12-if-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-12-if-properties-plan.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-capabilities-properties-homedirectories-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-12-if-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-parameters-properties-data-properties-filecontainer-properties-capabilities-properties-homedirectories-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-12-if-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-12-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-12-if.md similarity index 83% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-12-if.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-12-if.md index c0f888e4..68a42929 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-12-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-12-if.md @@ -6,7 +6,7 @@ unknown | Property | Type | Required | Nullable | Defined by | | :------------ | :------------ | :------- | :------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-12-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/12/if/properties/plan") | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-12-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/42/then/allOf/12/if/properties/plan") | ## plan @@ -20,7 +20,7 @@ unknown * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-12-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/12/if/properties/plan") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-12-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/42/then/allOf/12/if/properties/plan") ### plan Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-5-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-12-then-properties-plan.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-5-then-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-12-then-properties-plan.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-12-then-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-12-then-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-12-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-12-then.md similarity index 86% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-12-then.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-12-then.md index 0ed54d23..16042d68 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-12-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-12-then.md @@ -6,7 +6,7 @@ unknown | Property | Type | Required | Nullable | Defined by | | :------------ | :------------ | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-12-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/12/then/properties/plan") | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-12-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/42/then/allOf/12/then/properties/plan") | ## plan @@ -28,7 +28,7 @@ service plan >enterprise< for >hana-db< is available in data centers: * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-12-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/12/then/properties/plan") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-12-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/42/then/allOf/12/then/properties/plan") ### plan Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-12.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-12.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-12.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-12.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-13-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-13-if-properties-plan.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-13-if-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-13-if-properties-plan.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-if-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-13-if-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-if-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-13-if-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-13-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-13-if.md similarity index 83% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-13-if.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-13-if.md index 4f6f7da0..4d92a963 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-13-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-13-if.md @@ -6,7 +6,7 @@ unknown | Property | Type | Required | Nullable | Defined by | | :------------ | :------------ | :------- | :------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-13-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/13/if/properties/plan") | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-13-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/42/then/allOf/13/if/properties/plan") | ## plan @@ -20,7 +20,7 @@ unknown * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-13-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/13/if/properties/plan") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-13-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/42/then/allOf/13/if/properties/plan") ### plan Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-13-then-properties-plan.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-then-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-13-then-properties-plan.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-13-then-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-13-then-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-13-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-13-then.md similarity index 86% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-13-then.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-13-then.md index c39c4225..e1f702ef 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-13-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-13-then.md @@ -6,7 +6,7 @@ unknown | Property | Type | Required | Nullable | Defined by | | :------------ | :------------ | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-13-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/13/then/properties/plan") | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-13-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/42/then/allOf/13/then/properties/plan") | ## plan @@ -28,7 +28,7 @@ service plan >standard< for >hana-db< is available in data centers: * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-13-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/13/then/properties/plan") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-13-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/42/then/allOf/13/then/properties/plan") ### plan Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-13.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-13.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-13.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-13.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-2-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-2-if-properties-plan.md new file mode 100644 index 00000000..923352f4 --- /dev/null +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-2-if-properties-plan.md @@ -0,0 +1,11 @@ +## plan Type + +unknown + +## plan Constraints + +**constant**: the value of this property must be equal to: + +```json +"128premium" +``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-10-if-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-2-if-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-10-if-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-2-if-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-2-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-2-if.md new file mode 100644 index 00000000..2e068d49 --- /dev/null +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-2-if.md @@ -0,0 +1,35 @@ +## if Type + +unknown + +# if Properties + +| Property | Type | Required | Nullable | Defined by | +| :------------ | :------------ | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-2-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/42/then/allOf/2/if/properties/plan") | + +## plan + + + +`plan` + +* is optional + +* Type: unknown + +* cannot be null + +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-2-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/42/then/allOf/2/if/properties/plan") + +### plan Type + +unknown + +### plan Constraints + +**constant**: the value of this property must be equal to: + +```json +"128premium" +``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-2-then-properties-plan.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-then-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-2-then-properties-plan.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-10-then-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-2-then-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-10-then-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-2-then-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-2-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-2-then.md new file mode 100644 index 00000000..fc0eefc0 --- /dev/null +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-2-then.md @@ -0,0 +1,42 @@ +## then Type + +unknown + +# then Properties + +| Property | Type | Required | Nullable | Defined by | +| :------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-2-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/42/then/allOf/2/then/properties/plan") | + +## plan + +service plan >128premium< for >hana-db< is available in data centers: + +* {'region': 'ae1', 'name': 'UAE (Dubai)'} +* {'region': 'ap1', 'name': 'Australia (Sydney)'} +* {'region': 'br1', 'name': 'Brazil (Sao Paulo)'} +* {'region': 'ca1', 'name': 'Canada (Toronto)'} +* {'region': 'cn1', 'name': 'China (Shanghai)'} +* {'region': 'eu1', 'name': 'Europe (Rot)'} +* {'region': 'eu2', 'name': 'Europe (Frankfurt)'} +* {'region': 'eu3', 'name': 'Europe (Amsterdam)'} +* {'region': 'jp1', 'name': 'Japan (Tokyo)'} +* {'region': 'sa1', 'name': 'KSA (Riyadh)'} +* {'region': 'us1', 'name': 'US East (Ashburn)'} +* {'region': 'us2', 'name': 'US West (Chandler)'} +* {'region': 'us3', 'name': 'US East (Sterling)'} +* {'region': 'us4', 'name': 'US West (Colorado Springs)'} + +`plan` + +* is optional + +* Type: unknown + +* cannot be null + +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-2-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/42/then/allOf/2/then/properties/plan") + +### plan Type + +unknown diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-39-then-allof-2.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-2.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-39-then-allof-2.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-2.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-39-then-allof-3-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-3-if-properties-plan.md similarity index 89% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-39-then-allof-3-if-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-3-if-properties-plan.md index 49810752..0870f555 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-39-then-allof-3-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-3-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"securestore" +"128standard" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-11-if-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-3-if-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-11-if-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-3-if-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-39-then-allof-3-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-3-if.md similarity index 82% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-39-then-allof-3-if.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-3-if.md index 101590b5..5b5e196e 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-39-then-allof-3-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-3-if.md @@ -6,7 +6,7 @@ unknown | Property | Type | Required | Nullable | Defined by | | :------------ | :------------ | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-39-then-allof-3-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/39/then/allOf/3/if/properties/plan") | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-3-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/42/then/allOf/3/if/properties/plan") | ## plan @@ -20,7 +20,7 @@ unknown * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-39-then-allof-3-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/39/then/allOf/3/if/properties/plan") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-3-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/42/then/allOf/3/if/properties/plan") ### plan Type @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"securestore" +"128standard" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-10-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-3-then-properties-plan.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-10-then-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-3-then-properties-plan.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-11-then-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-3-then-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-11-then-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-3-then-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-3-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-3-then.md new file mode 100644 index 00000000..55f84d69 --- /dev/null +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-3-then.md @@ -0,0 +1,42 @@ +## then Type + +unknown + +# then Properties + +| Property | Type | Required | Nullable | Defined by | +| :------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-3-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/42/then/allOf/3/then/properties/plan") | + +## plan + +service plan >128standard< for >hana-db< is available in data centers: + +* {'region': 'ae1', 'name': 'UAE (Dubai)'} +* {'region': 'ap1', 'name': 'Australia (Sydney)'} +* {'region': 'br1', 'name': 'Brazil (Sao Paulo)'} +* {'region': 'ca1', 'name': 'Canada (Toronto)'} +* {'region': 'cn1', 'name': 'China (Shanghai)'} +* {'region': 'eu1', 'name': 'Europe (Rot)'} +* {'region': 'eu2', 'name': 'Europe (Frankfurt)'} +* {'region': 'eu3', 'name': 'Europe (Amsterdam)'} +* {'region': 'jp1', 'name': 'Japan (Tokyo)'} +* {'region': 'sa1', 'name': 'KSA (Riyadh)'} +* {'region': 'us1', 'name': 'US East (Ashburn)'} +* {'region': 'us2', 'name': 'US West (Chandler)'} +* {'region': 'us3', 'name': 'US East (Sterling)'} +* {'region': 'us4', 'name': 'US West (Colorado Springs)'} + +`plan` + +* is optional + +* Type: unknown + +* cannot be null + +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-3-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/42/then/allOf/3/then/properties/plan") + +### plan Type + +unknown diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-39-then-allof-3.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-3.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-39-then-allof-3.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-3.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-4-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-4-if-properties-plan.md new file mode 100644 index 00000000..d796f348 --- /dev/null +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-4-if-properties-plan.md @@ -0,0 +1,11 @@ +## plan Type + +unknown + +## plan Constraints + +**constant**: the value of this property must be equal to: + +```json +"2048premium" +``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-12-if-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-4-if-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-12-if-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-4-if-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-4-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-4-if.md similarity index 81% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-4-if.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-4-if.md index c2300ff7..e7e1f05b 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-4-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-4-if.md @@ -6,7 +6,7 @@ unknown | Property | Type | Required | Nullable | Defined by | | :------------ | :------------ | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-4-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/4/if/properties/plan") | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-4-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/42/then/allOf/4/if/properties/plan") | ## plan @@ -20,7 +20,7 @@ unknown * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-4-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/4/if/properties/plan") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-4-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/42/then/allOf/4/if/properties/plan") ### plan Type @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"hana-cloud-connection-free" +"2048premium" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-11-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-4-then-properties-plan.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-11-then-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-4-then-properties-plan.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-12-then-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-4-then-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-12-then-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-4-then-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-4-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-4-then.md new file mode 100644 index 00000000..c5568760 --- /dev/null +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-4-then.md @@ -0,0 +1,34 @@ +## then Type + +unknown + +# then Properties + +| Property | Type | Required | Nullable | Defined by | +| :------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-4-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/42/then/allOf/4/then/properties/plan") | + +## plan + +service plan >2048premium< for >hana-db< is available in data centers: + +* {'region': 'ap20', 'name': 'Australia (Sydney) Azure'} +* {'region': 'ap21', 'name': 'Singapore'} +* {'region': 'eu20', 'name': 'Europe (Netherlands)'} +* {'region': 'jp20', 'name': 'Japan (Tokyo)'} +* {'region': 'us20', 'name': 'US West (WA)'} +* {'region': 'us21', 'name': 'US East (VA)'} + +`plan` + +* is optional + +* Type: unknown + +* cannot be null + +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-4-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/42/then/allOf/4/then/properties/plan") + +### plan Type + +unknown diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-4.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-4.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-4.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-4.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-5-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-5-if-properties-plan.md new file mode 100644 index 00000000..fe555115 --- /dev/null +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-5-if-properties-plan.md @@ -0,0 +1,11 @@ +## plan Type + +unknown + +## plan Constraints + +**constant**: the value of this property must be equal to: + +```json +"2048standard" +``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-13-if-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-5-if-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-13-if-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-5-if-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-5-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-5-if.md similarity index 82% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-5-if.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-5-if.md index e978fae2..df5caabb 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-5-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-5-if.md @@ -6,7 +6,7 @@ unknown | Property | Type | Required | Nullable | Defined by | | :------------ | :------------ | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-5-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/5/if/properties/plan") | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-5-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/42/then/allOf/5/if/properties/plan") | ## plan @@ -20,7 +20,7 @@ unknown * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-5-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/5/if/properties/plan") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-5-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/42/then/allOf/5/if/properties/plan") ### plan Type @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"hana-free" +"2048standard" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-12-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-5-then-properties-plan.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-12-then-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-5-then-properties-plan.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-13-then-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-5-then-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-13-then-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-5-then-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-5-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-5-then.md new file mode 100644 index 00000000..2061ee73 --- /dev/null +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-5-then.md @@ -0,0 +1,34 @@ +## then Type + +unknown + +# then Properties + +| Property | Type | Required | Nullable | Defined by | +| :------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-5-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/42/then/allOf/5/then/properties/plan") | + +## plan + +service plan >2048standard< for >hana-db< is available in data centers: + +* {'region': 'ap20', 'name': 'Australia (Sydney) Azure'} +* {'region': 'ap21', 'name': 'Singapore'} +* {'region': 'eu20', 'name': 'Europe (Netherlands)'} +* {'region': 'jp20', 'name': 'Japan (Tokyo)'} +* {'region': 'us20', 'name': 'US West (WA)'} +* {'region': 'us21', 'name': 'US East (VA)'} + +`plan` + +* is optional + +* Type: unknown + +* cannot be null + +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-5-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/42/then/allOf/5/then/properties/plan") + +### plan Type + +unknown diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-5.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-5.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-5.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-5.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-6-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-6-if-properties-plan.md new file mode 100644 index 00000000..b530f720 --- /dev/null +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-6-if-properties-plan.md @@ -0,0 +1,11 @@ +## plan Type + +unknown + +## plan Constraints + +**constant**: the value of this property must be equal to: + +```json +"256premium" +``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-8-if-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-6-if-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-8-if-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-6-if-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-6-if.md similarity index 81% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-if.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-6-if.md index a6c99dbe..7b7997e8 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-6-if.md @@ -6,7 +6,7 @@ unknown | Property | Type | Required | Nullable | Defined by | | :------------ | :------------ | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/6/if/properties/plan") | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-6-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/42/then/allOf/6/if/properties/plan") | ## plan @@ -20,7 +20,7 @@ unknown * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/6/if/properties/plan") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-6-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/42/then/allOf/6/if/properties/plan") ### plan Type @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"relational-data-lake" +"256premium" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-13-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-6-then-properties-plan.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-13-then-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-6-then-properties-plan.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-8-then-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-6-then-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-8-then-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-6-then-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-6-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-6-then.md new file mode 100644 index 00000000..d9bc59d9 --- /dev/null +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-6-then.md @@ -0,0 +1,48 @@ +## then Type + +unknown + +# then Properties + +| Property | Type | Required | Nullable | Defined by | +| :------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-6-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/42/then/allOf/6/then/properties/plan") | + +## plan + +service plan >256premium< for >hana-db< is available in data centers: + +* {'region': 'ae1', 'name': 'UAE (Dubai)'} +* {'region': 'ap1', 'name': 'Australia (Sydney)'} +* {'region': 'ap20', 'name': 'Australia (Sydney) Azure'} +* {'region': 'ap21', 'name': 'Singapore'} +* {'region': 'br1', 'name': 'Brazil (Sao Paulo)'} +* {'region': 'ca1', 'name': 'Canada (Toronto)'} +* {'region': 'cn1', 'name': 'China (Shanghai)'} +* {'region': 'eu1', 'name': 'Europe (Rot)'} +* {'region': 'eu2', 'name': 'Europe (Frankfurt)'} +* {'region': 'eu20', 'name': 'Europe (Netherlands)'} +* {'region': 'eu3', 'name': 'Europe (Amsterdam)'} +* {'region': 'jp1', 'name': 'Japan (Tokyo)'} +* {'region': 'jp20', 'name': 'Japan (Tokyo)'} +* {'region': 'sa1', 'name': 'KSA (Riyadh)'} +* {'region': 'us1', 'name': 'US East (Ashburn)'} +* {'region': 'us2', 'name': 'US West (Chandler)'} +* {'region': 'us20', 'name': 'US West (WA)'} +* {'region': 'us21', 'name': 'US East (VA)'} +* {'region': 'us3', 'name': 'US East (Sterling)'} +* {'region': 'us4', 'name': 'US West (Colorado Springs)'} + +`plan` + +* is optional + +* Type: unknown + +* cannot be null + +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-6-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/42/then/allOf/6/then/properties/plan") + +### plan Type + +unknown diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-6.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-6.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-6.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-7-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-7-if-properties-plan.md new file mode 100644 index 00000000..22087157 --- /dev/null +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-7-if-properties-plan.md @@ -0,0 +1,11 @@ +## plan Type + +unknown + +## plan Constraints + +**constant**: the value of this property must be equal to: + +```json +"256standard" +``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-9-if-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-7-if-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-9-if-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-7-if-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-7-if.md similarity index 81% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-if.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-7-if.md index c9b87bc7..dd494094 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-7-if.md @@ -6,7 +6,7 @@ unknown | Property | Type | Required | Nullable | Defined by | | :------------ | :------------ | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/7/if/properties/plan") | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-7-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/42/then/allOf/7/if/properties/plan") | ## plan @@ -20,7 +20,7 @@ unknown * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/40/then/allOf/7/if/properties/plan") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-7-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/42/then/allOf/7/if/properties/plan") ### plan Type @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"relational-data-lake-free" +"256standard" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-8-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-7-then-properties-plan.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-8-then-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-7-then-properties-plan.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-9-then-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-7-then-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-9-then-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-7-then-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-7-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-7-then.md new file mode 100644 index 00000000..c9635c63 --- /dev/null +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-7-then.md @@ -0,0 +1,48 @@ +## then Type + +unknown + +# then Properties + +| Property | Type | Required | Nullable | Defined by | +| :------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-7-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/42/then/allOf/7/then/properties/plan") | + +## plan + +service plan >256standard< for >hana-db< is available in data centers: + +* {'region': 'ae1', 'name': 'UAE (Dubai)'} +* {'region': 'ap1', 'name': 'Australia (Sydney)'} +* {'region': 'ap20', 'name': 'Australia (Sydney) Azure'} +* {'region': 'ap21', 'name': 'Singapore'} +* {'region': 'br1', 'name': 'Brazil (Sao Paulo)'} +* {'region': 'ca1', 'name': 'Canada (Toronto)'} +* {'region': 'cn1', 'name': 'China (Shanghai)'} +* {'region': 'eu1', 'name': 'Europe (Rot)'} +* {'region': 'eu2', 'name': 'Europe (Frankfurt)'} +* {'region': 'eu20', 'name': 'Europe (Netherlands)'} +* {'region': 'eu3', 'name': 'Europe (Amsterdam)'} +* {'region': 'jp1', 'name': 'Japan (Tokyo)'} +* {'region': 'jp20', 'name': 'Japan (Tokyo)'} +* {'region': 'sa1', 'name': 'KSA (Riyadh)'} +* {'region': 'us1', 'name': 'US East (Ashburn)'} +* {'region': 'us2', 'name': 'US West (Chandler)'} +* {'region': 'us20', 'name': 'US West (WA)'} +* {'region': 'us21', 'name': 'US East (VA)'} +* {'region': 'us3', 'name': 'US East (Sterling)'} +* {'region': 'us4', 'name': 'US West (Colorado Springs)'} + +`plan` + +* is optional + +* Type: unknown + +* cannot be null + +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-7-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/42/then/allOf/7/then/properties/plan") + +### plan Type + +unknown diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-7.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-40-then-allof-7.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-7.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-8-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-8-if-properties-plan.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-8-if-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-8-if-properties-plan.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-43-then-allof-1-if-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-8-if-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-43-then-allof-1-if-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-8-if-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-8-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-8-if.md similarity index 83% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-8-if.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-8-if.md index 52b59562..8d7c3177 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-8-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-8-if.md @@ -6,7 +6,7 @@ unknown | Property | Type | Required | Nullable | Defined by | | :------------ | :------------ | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-8-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/8/if/properties/plan") | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-8-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/42/then/allOf/8/if/properties/plan") | ## plan @@ -20,7 +20,7 @@ unknown * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-8-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/8/if/properties/plan") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-8-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/42/then/allOf/8/if/properties/plan") ### plan Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-9-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-8-then-properties-plan.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-9-then-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-8-then-properties-plan.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-43-then-allof-1-then-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-8-then-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-43-then-allof-1-then-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-8-then-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-8-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-8-then.md similarity index 89% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-8-then.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-8-then.md index 66fcc502..ef466650 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-8-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-8-then.md @@ -6,7 +6,7 @@ unknown | Property | Type | Required | Nullable | Defined by | | :------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-8-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/8/then/properties/plan") | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-8-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/42/then/allOf/8/then/properties/plan") | ## plan @@ -41,7 +41,7 @@ service plan >512premium< for >hana-db< is available in data centers: * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-8-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/8/then/properties/plan") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-8-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/42/then/allOf/8/then/properties/plan") ### plan Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-8.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-8.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-8.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-8.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-9-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-9-if-properties-plan.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-9-if-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-9-if-properties-plan.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-52-then-allof-1-if-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-9-if-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-52-then-allof-1-if-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-9-if-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-9-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-9-if.md similarity index 83% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-9-if.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-9-if.md index 8cbbd276..2cc9984f 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-9-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-9-if.md @@ -6,7 +6,7 @@ unknown | Property | Type | Required | Nullable | Defined by | | :------------ | :------------ | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-9-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/9/if/properties/plan") | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-9-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/42/then/allOf/9/if/properties/plan") | ## plan @@ -20,7 +20,7 @@ unknown * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-9-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/9/if/properties/plan") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-9-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/42/then/allOf/9/if/properties/plan") ### plan Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-43-then-allof-1-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-9-then-properties-plan.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-43-then-allof-1-then-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-9-then-properties-plan.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-52-then-allof-1-then-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-9-then-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-52-then-allof-1-then-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-9-then-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-9-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-9-then.md similarity index 89% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-9-then.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-9-then.md index b60684c0..90627459 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-9-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-9-then.md @@ -6,7 +6,7 @@ unknown | Property | Type | Required | Nullable | Defined by | | :------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-9-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/9/then/properties/plan") | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-9-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/42/then/allOf/9/then/properties/plan") | ## plan @@ -41,7 +41,7 @@ service plan >512standard< for >hana-db< is available in data centers: * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-9-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/41/then/allOf/9/then/properties/plan") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-9-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/42/then/allOf/9/then/properties/plan") ### plan Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-9.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-9.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-41-then-allof-9.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-9.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-properties-plan.md index 248cb3df..cefb1752 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-properties-plan.md @@ -6,6 +6,19 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :----------- | :---------- | -| `"standard"` | | +| Value | Explanation | +| :--------------- | :---------- | +| `"1024premium"` | | +| `"1024standard"` | | +| `"128premium"` | | +| `"128standard"` | | +| `"2048premium"` | | +| `"2048standard"` | | +| `"256premium"` | | +| `"256standard"` | | +| `"512premium"` | | +| `"512standard"` | | +| `"64premium"` | | +| `"64standard"` | | +| `"enterprise"` | | +| `"standard"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then.md index b8c3f2de..c122621a 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-42-then.md @@ -6,6 +6,32 @@ all of * [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-0.md "check type definition") +* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-1.md "check type definition") + +* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-2.md "check type definition") + +* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-3.md "check type definition") + +* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-4.md "check type definition") + +* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-5.md "check type definition") + +* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-6.md "check type definition") + +* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-7.md "check type definition") + +* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-8.md "check type definition") + +* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-9.md "check type definition") + +* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-10.md "check type definition") + +* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-11.md "check type definition") + +* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-12.md "check type definition") + +* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-42-then-allof-13.md "check type definition") + # then Properties | Property | Type | Required | Nullable | Defined by | @@ -35,13 +61,26 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :----------- | :---------- | -| `"standard"` | | +| Value | Explanation | +| :--------------- | :---------- | +| `"1024premium"` | | +| `"1024standard"` | | +| `"128premium"` | | +| `"128standard"` | | +| `"2048premium"` | | +| `"2048standard"` | | +| `"256premium"` | | +| `"256standard"` | | +| `"512premium"` | | +| `"512standard"` | | +| `"64premium"` | | +| `"64standard"` | | +| `"enterprise"` | | +| `"standard"` | | ## name -SAP HANA Tenant Database: SAP HANA Tenant Database +SAP HANA service for SAP BTP: The SAP HANA service allows you to leverage the in-memory data processing capabilities of SAP HANA in the cloud. As a managed database service, backups are fully automated and service availability guaranteed. Using the SAP HANA service, you can set up and manage SAP HANA databases and bind them to applications running on SAP Business Technology Platform. You can access SAP HANA databases using a variety of languages and interfaces, as well as build applications and models using tools provided with SAP HANA. `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-43-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-43-if-properties-name.md index 0bf58abd..ffa1de15 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-43-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-43-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"html5-apps-repo" +"hana-tenant-db" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-43-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-43-if.md index 2cd251f4..7134fe82 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-43-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-43-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"html5-apps-repo" +"hana-tenant-db" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-43-then-allof-0-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-43-then-allof-0-if-properties-plan.md index cc988076..126392b1 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-43-then-allof-0-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-43-then-allof-0-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"app-host" +"standard" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-43-then-allof-0-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-43-then-allof-0-if.md index 9daed5c7..a974a707 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-43-then-allof-0-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-43-then-allof-0-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"app-host" +"standard" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-43-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-43-then-allof-0-then.md index 86cb8b61..397bcf8d 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-43-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-43-then-allof-0-then.md @@ -10,27 +10,13 @@ unknown ## plan -service plan >app-host< for >html5-apps-repo< is available in data centers: +service plan >standard< for >hana-tenant-db< is available in data centers: -* {'region': 'ap10', 'name': 'Australia (Sydney)'} -* {'region': 'ap11', 'name': 'Singapore'} -* {'region': 'ap12', 'name': 'South Korea (Seoul)'} -* {'region': 'ap20', 'name': 'Australia (Sydney) Azure'} * {'region': 'ap21', 'name': 'Singapore'} -* {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} -* {'region': 'ca10', 'name': 'Canada (Montreal)'} -* {'region': 'ch20', 'name': 'cf-ch20'} -* {'region': 'eu10', 'name': 'Europe (Frankfurt)'} -* {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} * {'region': 'eu20', 'name': 'Europe (Netherlands)'} -* {'region': 'eu30', 'name': 'Europe (Frankfurt)'} -* {'region': 'in30', 'name': 'India (Mumbai)'} -* {'region': 'jp10', 'name': 'Japan (Tokyo)'} * {'region': 'jp20', 'name': 'Japan (Tokyo)'} -* {'region': 'us10', 'name': 'US East (VA)'} * {'region': 'us20', 'name': 'US West (WA)'} * {'region': 'us21', 'name': 'US East (VA)'} -* {'region': 'us30', 'name': 'US Central (IA)'} `plan` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-43-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-43-then-properties-plan.md index 37b62c76..248cb3df 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-43-then-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-43-then-properties-plan.md @@ -6,7 +6,6 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :-------------- | :---------- | -| `"app-host"` | | -| `"app-runtime"` | | +| Value | Explanation | +| :----------- | :---------- | +| `"standard"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-43-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-43-then.md index d80d04fd..38bcda68 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-43-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-43-then.md @@ -6,8 +6,6 @@ all of * [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-43-then-allof-0.md "check type definition") -* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-43-then-allof-1.md "check type definition") - # then Properties | Property | Type | Required | Nullable | Defined by | @@ -37,14 +35,13 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :-------------- | :---------- | -| `"app-host"` | | -| `"app-runtime"` | | +| Value | Explanation | +| :----------- | :---------- | +| `"standard"` | | ## name -SAP HTML5 Application Repository service for SAP BTP: The HTML5 Application Repository service for SAP BTP enables central storage of HTML5 applications on SAP BTP. The service allows application developers to manage the lifecycle of their HTML5 applications. In runtime, the service enables the consuming application, typically the application router, to access HTML5 application static content in a secure and efficient manner. +SAP HANA Tenant Database: SAP HANA Tenant Database `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-44-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-44-if-properties-name.md index 92af2b9c..0bf58abd 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-44-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-44-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"ibanservice" +"html5-apps-repo" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-44-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-44-if.md index 00f64c77..6ad794e9 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-44-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-44-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"ibanservice" +"html5-apps-repo" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-44-then-allof-0-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-44-then-allof-0-if-properties-plan.md index 4f94ce99..cc988076 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-44-then-allof-0-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-44-then-allof-0-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"default" +"app-host" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-44-then-allof-0-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-44-then-allof-0-if.md index cb45b634..38ccc1ef 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-44-then-allof-0-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-44-then-allof-0-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"default" +"app-host" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-44-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-44-then-allof-0-then.md index 6ee86689..77229e83 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-44-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-44-then-allof-0-then.md @@ -10,10 +10,27 @@ unknown ## plan -service plan >default< for >ibanservice< is available in data centers: - +service plan >app-host< for >html5-apps-repo< is available in data centers: + +* {'region': 'ap10', 'name': 'Australia (Sydney)'} +* {'region': 'ap11', 'name': 'Singapore'} +* {'region': 'ap12', 'name': 'South Korea (Seoul)'} +* {'region': 'ap20', 'name': 'Australia (Sydney) Azure'} +* {'region': 'ap21', 'name': 'Singapore'} +* {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} +* {'region': 'ca10', 'name': 'Canada (Montreal)'} +* {'region': 'ch20', 'name': 'cf-ch20'} * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} +* {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} +* {'region': 'eu20', 'name': 'Europe (Netherlands)'} +* {'region': 'eu30', 'name': 'Europe (Frankfurt)'} +* {'region': 'in30', 'name': 'India (Mumbai)'} +* {'region': 'jp10', 'name': 'Japan (Tokyo)'} +* {'region': 'jp20', 'name': 'Japan (Tokyo)'} * {'region': 'us10', 'name': 'US East (VA)'} +* {'region': 'us20', 'name': 'US West (WA)'} +* {'region': 'us21', 'name': 'US East (VA)'} +* {'region': 'us30', 'name': 'US Central (IA)'} `plan` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-43-then-allof-1-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-44-then-allof-1-if-properties-plan.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-43-then-allof-1-if-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-44-then-allof-1-if-properties-plan.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-55-then-allof-1-if-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-44-then-allof-1-if-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-55-then-allof-1-if-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-44-then-allof-1-if-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-43-then-allof-1-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-44-then-allof-1-if.md similarity index 83% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-43-then-allof-1-if.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-44-then-allof-1-if.md index a27497fe..f9c73ad3 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-43-then-allof-1-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-44-then-allof-1-if.md @@ -6,7 +6,7 @@ unknown | Property | Type | Required | Nullable | Defined by | | :------------ | :------------ | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-43-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/43/then/allOf/1/if/properties/plan") | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-44-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/44/then/allOf/1/if/properties/plan") | ## plan @@ -20,7 +20,7 @@ unknown * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-43-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/43/then/allOf/1/if/properties/plan") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-44-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/44/then/allOf/1/if/properties/plan") ### plan Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-52-then-allof-1-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-44-then-allof-1-then-properties-plan.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-52-then-allof-1-then-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-44-then-allof-1-then-properties-plan.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-55-then-allof-1-then-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-44-then-allof-1-then-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-55-then-allof-1-then-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-44-then-allof-1-then-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-43-then-allof-1-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-44-then-allof-1-then.md similarity index 89% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-43-then-allof-1-then.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-44-then-allof-1-then.md index 64026c9a..780676c6 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-43-then-allof-1-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-44-then-allof-1-then.md @@ -6,7 +6,7 @@ unknown | Property | Type | Required | Nullable | Defined by | | :------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-43-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/43/then/allOf/1/then/properties/plan") | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-44-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/44/then/allOf/1/then/properties/plan") | ## plan @@ -40,7 +40,7 @@ service plan >app-runtime< for >html5-apps-repo< is available in data centers: * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-43-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/43/then/allOf/1/then/properties/plan") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-44-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/44/then/allOf/1/then/properties/plan") ### plan Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-43-then-allof-1.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-44-then-allof-1.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-43-then-allof-1.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-44-then-allof-1.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-44-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-44-then-properties-plan.md index 916e7975..37b62c76 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-44-then-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-44-then-properties-plan.md @@ -6,6 +6,7 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :---------- | :---------- | -| `"default"` | | +| Value | Explanation | +| :-------------- | :---------- | +| `"app-host"` | | +| `"app-runtime"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-44-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-44-then.md index 1c186d4f..c8a4e11e 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-44-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-44-then.md @@ -6,6 +6,8 @@ all of * [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-44-then-allof-0.md "check type definition") +* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-44-then-allof-1.md "check type definition") + # then Properties | Property | Type | Required | Nullable | Defined by | @@ -35,13 +37,14 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :---------- | :---------- | -| `"default"` | | +| Value | Explanation | +| :-------------- | :---------- | +| `"app-host"` | | +| `"app-runtime"` | | ## name -IBAN service: Check validity and get details of given IBAN number. +SAP HTML5 Application Repository service for SAP BTP: The HTML5 Application Repository service for SAP BTP enables central storage of HTML5 applications on SAP BTP. The service allows application developers to manage the lifecycle of their HTML5 applications. In runtime, the service enables the consuming application, typically the application router, to access HTML5 application static content in a secure and efficient manner. `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-45-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-45-if-properties-name.md index 22aa95b1..92af2b9c 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-45-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-45-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"identity" +"ibanservice" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-45-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-45-if.md index f4b10fea..871e6db2 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-45-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-45-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"identity" +"ibanservice" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-45-then-allof-0-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-45-then-allof-0-if-properties-plan.md index 9ae791c7..4f94ce99 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-45-then-allof-0-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-45-then-allof-0-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"application" +"default" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-45-then-allof-0-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-45-then-allof-0-if.md index cddadac4..6572ce09 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-45-then-allof-0-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-45-then-allof-0-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"application" +"default" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-45-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-45-then-allof-0-then.md index a44ddb16..e4a3adda 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-45-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-45-then-allof-0-then.md @@ -10,27 +10,10 @@ unknown ## plan -service plan >application< for >identity< is available in data centers: - -* {'region': 'ap10', 'name': 'Australia (Sydney)'} -* {'region': 'ap11', 'name': 'Singapore'} -* {'region': 'ap12', 'name': 'South Korea (Seoul)'} -* {'region': 'ap20', 'name': 'Australia (Sydney) Azure'} -* {'region': 'ap21', 'name': 'Singapore'} -* {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} -* {'region': 'ca10', 'name': 'Canada (Montreal)'} -* {'region': 'ch20', 'name': 'cf-ch20'} +service plan >default< for >ibanservice< is available in data centers: + * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} -* {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} -* {'region': 'eu20', 'name': 'Europe (Netherlands)'} -* {'region': 'eu30', 'name': 'Europe (Frankfurt)'} -* {'region': 'in30', 'name': 'India (Mumbai)'} -* {'region': 'jp10', 'name': 'Japan (Tokyo)'} -* {'region': 'jp20', 'name': 'Japan (Tokyo)'} * {'region': 'us10', 'name': 'US East (VA)'} -* {'region': 'us20', 'name': 'US West (WA)'} -* {'region': 'us21', 'name': 'US East (VA)'} -* {'region': 'us30', 'name': 'US Central (IA)'} `plan` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-45-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-45-then-properties-plan.md index c582c964..916e7975 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-45-then-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-45-then-properties-plan.md @@ -6,6 +6,6 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :-------------- | :---------- | -| `"application"` | | +| Value | Explanation | +| :---------- | :---------- | +| `"default"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-45-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-45-then.md index dee3b1eb..d17ee295 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-45-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-45-then.md @@ -35,13 +35,13 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :-------------- | :---------- | -| `"application"` | | +| Value | Explanation | +| :---------- | :---------- | +| `"default"` | | ## name -SAP Cloud Identity Services: Cloud Identity Services provide basic capabilities for user authentication. +IBAN service: Check validity and get details of given IBAN number. `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-46-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-46-if-properties-name.md index 7d83ff62..22aa95b1 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-46-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-46-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"INFRA" +"identity" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-46-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-46-if.md index fcf36811..eab87264 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-46-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-46-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"INFRA" +"identity" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-46-then-allof-0-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-46-then-allof-0-if-properties-plan.md index e12e52d2..9ae791c7 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-46-then-allof-0-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-46-then-allof-0-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"custom_domains" +"application" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-46-then-allof-0-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-46-then-allof-0-if.md index 089f5e20..04919b86 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-46-then-allof-0-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-46-then-allof-0-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"custom_domains" +"application" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-46-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-46-then-allof-0-then.md index 46d20bf5..13486a97 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-46-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-46-then-allof-0-then.md @@ -10,7 +10,7 @@ unknown ## plan -service plan >custom\_domains< for >INFRA< is available in data centers: +service plan >application< for >identity< is available in data centers: * {'region': 'ap10', 'name': 'Australia (Sydney)'} * {'region': 'ap11', 'name': 'Singapore'} diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-46-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-46-then-properties-plan.md index 275f9d3c..c582c964 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-46-then-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-46-then-properties-plan.md @@ -6,6 +6,6 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :----------------- | :---------- | -| `"custom_domains"` | | +| Value | Explanation | +| :-------------- | :---------- | +| `"application"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-46-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-46-then.md index 59ecc169..d215194c 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-46-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-46-then.md @@ -35,13 +35,13 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :----------------- | :---------- | -| `"custom_domains"` | | +| Value | Explanation | +| :-------------- | :---------- | +| `"application"` | | ## name -SAP Custom Domain service: The SAP Business Technology Platform Custom Domain service lets you configure your own custom domain to expose publicly your SAP Business Technology Platform application instead of using the default subdomain. +SAP Cloud Identity Services: Cloud Identity Services provide basic capabilities for user authentication. `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-47-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-47-if-properties-name.md index a44a87f5..7d83ff62 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-47-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-47-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"integration-assessment" +"INFRA" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-47-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-47-if.md index f9a4faff..5f0db67c 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-47-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-47-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"integration-assessment" +"INFRA" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-47-then-allof-0-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-47-then-allof-0-if-properties-plan.md index 4f94ce99..e12e52d2 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-47-then-allof-0-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-47-then-allof-0-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"default" +"custom_domains" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-47-then-allof-0-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-47-then-allof-0-if.md index 41a34c34..54d8a294 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-47-then-allof-0-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-47-then-allof-0-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"default" +"custom_domains" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-47-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-47-then-allof-0-then.md index c9290da3..90f12558 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-47-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-47-then-allof-0-then.md @@ -10,7 +10,7 @@ unknown ## plan -service plan >default< for >integration-assessment< is available in data centers: +service plan >custom\_domains< for >INFRA< is available in data centers: * {'region': 'ap10', 'name': 'Australia (Sydney)'} * {'region': 'ap11', 'name': 'Singapore'} diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-47-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-47-then-properties-plan.md index 916e7975..275f9d3c 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-47-then-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-47-then-properties-plan.md @@ -6,6 +6,6 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :---------- | :---------- | -| `"default"` | | +| Value | Explanation | +| :----------------- | :---------- | +| `"custom_domains"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-47-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-47-then.md index c8920bd7..241f98e6 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-47-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-47-then.md @@ -35,13 +35,13 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :---------- | :---------- | -| `"default"` | | +| Value | Explanation | +| :----------------- | :---------- | +| `"custom_domains"` | | ## name -Integration Assessment: Provides technical access to Integration Assessment. +SAP Custom Domain service: The SAP Business Technology Platform Custom Domain service lets you configure your own custom domain to expose publicly your SAP Business Technology Platform application instead of using the default subdomain. `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-48-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-48-if-properties-name.md index 75b9563e..a44a87f5 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-48-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-48-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"integrationsuite" +"integration-assessment" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-48-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-48-if.md index 33827333..ca60d4d0 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-48-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-48-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"integrationsuite" +"integration-assessment" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-48-then-allof-0-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-48-then-allof-0-if-properties-plan.md index a7c1794a..4f94ce99 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-48-then-allof-0-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-48-then-allof-0-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"messages" +"default" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-48-then-allof-0-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-48-then-allof-0-if.md index b4579333..5a5560fe 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-48-then-allof-0-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-48-then-allof-0-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"messages" +"default" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-48-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-48-then-allof-0-then.md index e4037300..649bf5f4 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-48-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-48-then-allof-0-then.md @@ -10,14 +10,18 @@ unknown ## plan -service plan >messages< for >integrationsuite< is available in data centers: +service plan >default< for >integration-assessment< is available in data centers: * {'region': 'ap10', 'name': 'Australia (Sydney)'} * {'region': 'ap11', 'name': 'Singapore'} +* {'region': 'ap12', 'name': 'South Korea (Seoul)'} +* {'region': 'ap20', 'name': 'Australia (Sydney) Azure'} * {'region': 'ap21', 'name': 'Singapore'} * {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} * {'region': 'ca10', 'name': 'Canada (Montreal)'} +* {'region': 'ch20', 'name': 'cf-ch20'} * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} +* {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} * {'region': 'eu20', 'name': 'Europe (Netherlands)'} * {'region': 'eu30', 'name': 'Europe (Frankfurt)'} * {'region': 'in30', 'name': 'India (Mumbai)'} @@ -26,6 +30,7 @@ service plan >messages< for >integrationsuite< is available in data centers: * {'region': 'us10', 'name': 'US East (VA)'} * {'region': 'us20', 'name': 'US West (WA)'} * {'region': 'us21', 'name': 'US East (VA)'} +* {'region': 'us30', 'name': 'US Central (IA)'} `plan` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-48-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-48-then-properties-plan.md index b88c9edc..916e7975 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-48-then-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-48-then-properties-plan.md @@ -6,6 +6,6 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :----------- | :---------- | -| `"messages"` | | +| Value | Explanation | +| :---------- | :---------- | +| `"default"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-48-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-48-then.md index 5e6ddd5a..76b1e9e8 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-48-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-48-then.md @@ -35,13 +35,13 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :----------- | :---------- | -| `"messages"` | | +| Value | Explanation | +| :---------- | :---------- | +| `"default"` | | ## name -SAP Integration Suite: The SAP Integration Suite helps you to quickly develop and manage reliable communication between applications, services, and systems across heterogeneous landscapes. +Integration Assessment: Provides technical access to Integration Assessment. `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-49-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-49-if-properties-name.md index 9a68c4d5..75b9563e 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-49-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-49-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"intercompany-reconciliation" +"integrationsuite" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-49-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-49-if.md index b541a921..6b04bcc1 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-49-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-49-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"intercompany-reconciliation" +"integrationsuite" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-49-then-allof-0-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-49-then-allof-0-if-properties-plan.md index 126392b1..a7c1794a 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-49-then-allof-0-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-49-then-allof-0-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"standard" +"messages" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-49-then-allof-0-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-49-then-allof-0-if.md index 37bc0ba0..00044b61 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-49-then-allof-0-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-49-then-allof-0-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"standard" +"messages" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-49-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-49-then-allof-0-then.md index 386eb9d1..66ad3b3f 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-49-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-49-then-allof-0-then.md @@ -10,9 +10,22 @@ unknown ## plan -service plan >standard< for >intercompany-reconciliation< is available in data centers: +service plan >messages< for >integrationsuite< is available in data centers: +* {'region': 'ap10', 'name': 'Australia (Sydney)'} +* {'region': 'ap11', 'name': 'Singapore'} +* {'region': 'ap21', 'name': 'Singapore'} +* {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} +* {'region': 'ca10', 'name': 'Canada (Montreal)'} * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} +* {'region': 'eu20', 'name': 'Europe (Netherlands)'} +* {'region': 'eu30', 'name': 'Europe (Frankfurt)'} +* {'region': 'in30', 'name': 'India (Mumbai)'} +* {'region': 'jp10', 'name': 'Japan (Tokyo)'} +* {'region': 'jp20', 'name': 'Japan (Tokyo)'} +* {'region': 'us10', 'name': 'US East (VA)'} +* {'region': 'us20', 'name': 'US West (WA)'} +* {'region': 'us21', 'name': 'US East (VA)'} `plan` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-49-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-49-then-properties-plan.md index 248cb3df..b88c9edc 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-49-then-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-49-then-properties-plan.md @@ -8,4 +8,4 @@ unknown | Value | Explanation | | :----------- | :---------- | -| `"standard"` | | +| `"messages"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-49-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-49-then.md index b0b7acdf..79cfe508 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-49-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-49-then.md @@ -37,11 +37,11 @@ unknown | Value | Explanation | | :----------- | :---------- | -| `"standard"` | | +| `"messages"` | | ## name -SAP S/4HANA Cloud for intelligent intercompany reconciliation: Intelligent Intercompany Reconciliation is introduced to speed up your intercompany reconciliation process from company close to corporate close. The service is based on Artificial Intelligence in order to reconcile your financial data with high accuracy. +SAP Integration Suite: The SAP Integration Suite helps you to quickly develop and manage reliable communication between applications, services, and systems across heterogeneous landscapes. `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-50-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-50-if-properties-name.md index bd7b8c1c..9a68c4d5 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-50-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-50-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"invoice-object-recommendation" +"intercompany-reconciliation" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-50-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-50-if.md index e7d86164..e7aacb60 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-50-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-50-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"invoice-object-recommendation" +"intercompany-reconciliation" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-50-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-50-then-allof-0-then.md index 72d3b304..fa7975f8 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-50-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-50-then-allof-0-then.md @@ -10,7 +10,7 @@ unknown ## plan -service plan >standard< for >invoice-object-recommendation< is available in data centers: +service plan >standard< for >intercompany-reconciliation< is available in data centers: * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-50-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-50-then.md index d16d1010..064dde03 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-50-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-50-then.md @@ -41,7 +41,7 @@ unknown ## name -Invoice Object Recommendation: The Invoice Object Recommendation services provides the functionality to train a machine learning model with customer specific data that can give recommendations on G/L Accounts for incoming invoices without a purchase order reference attached. The service therefore provides a training call as described and an inference call that gives back recommendations based on a trained model to semi-automate the invoice processing in the area of accounts payable. +SAP S/4HANA Cloud for intelligent intercompany reconciliation: Intelligent Intercompany Reconciliation is introduced to speed up your intercompany reconciliation process from company close to corporate close. The service is based on Artificial Intelligence in order to reconcile your financial data with high accuracy. `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-51-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-51-if-properties-name.md index fb231876..bd7b8c1c 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-51-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-51-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"iot" +"invoice-object-recommendation" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-51-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-51-if.md index d3ed414d..15b538a6 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-51-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-51-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"iot" +"invoice-object-recommendation" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-51-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-51-then-allof-0-then.md index b4c5cbad..9296b5dc 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-51-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-51-then-allof-0-then.md @@ -10,10 +10,9 @@ unknown ## plan -service plan >standard< for >iot< is available in data centers: +service plan >standard< for >invoice-object-recommendation< is available in data centers: * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} -* {'region': 'us10', 'name': 'US East (VA)'} `plan` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-51-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-51-then.md index 956dd607..d6549929 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-51-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-51-then.md @@ -41,7 +41,7 @@ unknown ## name -Internet of Things: The SAP Business Technology Platform Internet of Things service for the Cloud Foundry environment connects devices to SAP Business Technology Platform to provide scalable ingestion of IoT data and device management. The respective services provide a secure connection to remote devices using a broad variety of IoT protocols and manage the device lifecycle from onboarding to decommissioning. +Invoice Object Recommendation: The Invoice Object Recommendation services provides the functionality to train a machine learning model with customer specific data that can give recommendations on G/L Accounts for incoming invoices without a purchase order reference attached. The service therefore provides a training call as described and an inference call that gives back recommendations based on a trained model to semi-automate the invoice processing in the area of accounts payable. `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-52-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-52-if-properties-name.md index 6bc5cd71..fb231876 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-52-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-52-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"iotae" +"iot" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-52-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-52-if.md index 23d0c0d2..d69d38c7 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-52-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-52-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"iotae" +"iot" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-52-then-allof-0-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-52-then-allof-0-if-properties-plan.md index 4f94ce99..126392b1 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-52-then-allof-0-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-52-then-allof-0-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"default" +"standard" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-52-then-allof-0-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-52-then-allof-0-if.md index 72f721b0..69b12fb0 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-52-then-allof-0-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-52-then-allof-0-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"default" +"standard" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-52-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-52-then-allof-0-then.md index 4679e4ee..bc0015f7 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-52-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-52-then-allof-0-then.md @@ -10,12 +10,10 @@ unknown ## plan -service plan >default< for >iotae< is available in data centers: +service plan >standard< for >iot< is available in data centers: * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} -* {'region': 'eu20', 'name': 'Europe (Netherlands)'} * {'region': 'us10', 'name': 'US East (VA)'} -* {'region': 'us20', 'name': 'US West (WA)'} `plan` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-52-then-allof-1-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-52-then-allof-1-if.md deleted file mode 100644 index 4183418b..00000000 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-52-then-allof-1-if.md +++ /dev/null @@ -1,35 +0,0 @@ -## if Type - -unknown - -# if Properties - -| Property | Type | Required | Nullable | Defined by | -| :------------ | :------------ | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-52-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/52/then/allOf/1/if/properties/plan") | - -## plan - - - -`plan` - -* is optional - -* Type: unknown - -* cannot be null - -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-52-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/52/then/allOf/1/if/properties/plan") - -### plan Type - -unknown - -### plan Constraints - -**constant**: the value of this property must be equal to: - -```json -"standard" -``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-52-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-52-then-properties-plan.md index 51a8736c..248cb3df 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-52-then-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-52-then-properties-plan.md @@ -8,5 +8,4 @@ unknown | Value | Explanation | | :----------- | :---------- | -| `"default"` | | | `"standard"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-52-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-52-then.md index c55ffe80..f24f2606 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-52-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-52-then.md @@ -6,8 +6,6 @@ all of * [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-52-then-allof-0.md "check type definition") -* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-52-then-allof-1.md "check type definition") - # then Properties | Property | Type | Required | Nullable | Defined by | @@ -39,12 +37,11 @@ unknown | Value | Explanation | | :----------- | :---------- | -| `"default"` | | | `"standard"` | | ## name -SAP IoT: SAP IoT business services allow you to put raw sensor data into business object context and then use query models, rules, events and actions to leverage the data near real-time in analytical or transactional business applications. +Internet of Things: The SAP Business Technology Platform Internet of Things service for the Cloud Foundry environment connects devices to SAP Business Technology Platform to provide scalable ingestion of IoT data and device management. The respective services provide a secure connection to remote devices using a broad variety of IoT protocols and manage the device lifecycle from onboarding to decommissioning. `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-53-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-53-if-properties-name.md index a3a86dc4..6bc5cd71 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-53-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-53-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"IRPA" +"iotae" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-53-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-53-if.md index 26a5f986..5208781d 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-53-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-53-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"IRPA" +"iotae" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-53-then-allof-0-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-53-then-allof-0-if-properties-plan.md index 34245c81..4f94ce99 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-53-then-allof-0-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-53-then-allof-0-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"concurrent-attended" +"default" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-53-then-allof-0-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-53-then-allof-0-if.md index 6b819d55..0b81e3af 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-53-then-allof-0-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-53-then-allof-0-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"concurrent-attended" +"default" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-53-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-53-then-allof-0-then.md index 0f086b57..7354bfd8 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-53-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-53-then-allof-0-then.md @@ -10,12 +10,10 @@ unknown ## plan -service plan >concurrent-attended< for >IRPA< is available in data centers: +service plan >default< for >iotae< is available in data centers: -* {'region': 'ap10', 'name': 'Australia (Sydney)'} * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} -* {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} -* {'region': 'jp10', 'name': 'Japan (Tokyo)'} +* {'region': 'eu20', 'name': 'Europe (Netherlands)'} * {'region': 'us10', 'name': 'US East (VA)'} * {'region': 'us20', 'name': 'US West (WA)'} diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-53-then-allof-1-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-53-then-allof-1-if-properties-plan.md index 09299cc6..126392b1 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-53-then-allof-1-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-53-then-allof-1-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"concurrent-unattended" +"standard" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-53-then-allof-1-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-53-then-allof-1-if.md index 1b58d46e..4d5ba59f 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-53-then-allof-1-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-53-then-allof-1-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"concurrent-unattended" +"standard" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-53-then-allof-1-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-53-then-allof-1-then.md index bfb9492c..a0b4e29d 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-53-then-allof-1-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-53-then-allof-1-then.md @@ -10,14 +10,10 @@ unknown ## plan -service plan >concurrent-unattended< for >IRPA< is available in data centers: +service plan >standard< for >iotae< is available in data centers: -* {'region': 'ap10', 'name': 'Australia (Sydney)'} * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} -* {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} -* {'region': 'jp10', 'name': 'Japan (Tokyo)'} -* {'region': 'us10', 'name': 'US East (VA)'} -* {'region': 'us20', 'name': 'US West (WA)'} +* {'region': 'eu20', 'name': 'Europe (Netherlands)'} `plan` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-53-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-53-then-properties-plan.md index 7ba708c9..51a8736c 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-53-then-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-53-then-properties-plan.md @@ -6,7 +6,7 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :------------------------ | :---------- | -| `"concurrent-attended"` | | -| `"concurrent-unattended"` | | +| Value | Explanation | +| :----------- | :---------- | +| `"default"` | | +| `"standard"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-53-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-53-then.md index f2f8e6e1..30556829 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-53-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-53-then.md @@ -37,14 +37,14 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :------------------------ | :---------- | -| `"concurrent-attended"` | | -| `"concurrent-unattended"` | | +| Value | Explanation | +| :----------- | :---------- | +| `"default"` | | +| `"standard"` | | ## name -SAP Intelligent Robotic Process Automation: SAP Intelligent Robotic Process Automation lets you automate enterprise business processes. Design process automations with the Desktop Studio by creating end-to-end scenarios. Import these scenarios into the cloud Factory to configure and execute them with Agents. An Agent can work as a Digital Assistant (attended automation) or as a Digital Worker (unattended automation). +SAP IoT: SAP IoT business services allow you to put raw sensor data into business object context and then use query models, rules, events and actions to leverage the data near real-time in analytical or transactional business applications. `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-54-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-54-if-properties-name.md index 4feb0b8d..a3a86dc4 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-54-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-54-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"irpa-service" +"IRPA" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-54-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-54-if.md index e89f5564..a0b24e52 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-54-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-54-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"irpa-service" +"IRPA" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-54-then-allof-0-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-54-then-allof-0-if-properties-plan.md index 126392b1..34245c81 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-54-then-allof-0-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-54-then-allof-0-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"standard" +"concurrent-attended" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-54-then-allof-0-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-54-then-allof-0-if.md index 68f43501..a899b57c 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-54-then-allof-0-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-54-then-allof-0-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"standard" +"concurrent-attended" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-54-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-54-then-allof-0-then.md index 90312ce9..c972d6ce 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-54-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-54-then-allof-0-then.md @@ -10,13 +10,14 @@ unknown ## plan -service plan >standard< for >irpa-service< is available in data centers: +service plan >concurrent-attended< for >IRPA< is available in data centers: * {'region': 'ap10', 'name': 'Australia (Sydney)'} * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} * {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} * {'region': 'jp10', 'name': 'Japan (Tokyo)'} * {'region': 'us10', 'name': 'US East (VA)'} +* {'region': 'us20', 'name': 'US West (WA)'} `plan` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-105-then-allof-2-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-54-then-allof-1-if-properties-plan.md similarity index 82% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-105-then-allof-2-if-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-54-then-allof-1-if-properties-plan.md index 5afc6021..09299cc6 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-105-then-allof-2-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-54-then-allof-1-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"subaccount-admin" +"concurrent-unattended" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-58-then-allof-1-if-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-54-then-allof-1-if-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-58-then-allof-1-if-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-54-then-allof-1-if-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-54-then-allof-1-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-54-then-allof-1-if.md new file mode 100644 index 00000000..f0bb35ec --- /dev/null +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-54-then-allof-1-if.md @@ -0,0 +1,35 @@ +## if Type + +unknown + +# if Properties + +| Property | Type | Required | Nullable | Defined by | +| :------------ | :------------ | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-54-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/54/then/allOf/1/if/properties/plan") | + +## plan + + + +`plan` + +* is optional + +* Type: unknown + +* cannot be null + +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-54-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/54/then/allOf/1/if/properties/plan") + +### plan Type + +unknown + +### plan Constraints + +**constant**: the value of this property must be equal to: + +```json +"concurrent-unattended" +``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-55-then-allof-1-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-54-then-allof-1-then-properties-plan.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-55-then-allof-1-then-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-54-then-allof-1-then-properties-plan.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-58-then-allof-1-then-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-54-then-allof-1-then-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-58-then-allof-1-then-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-54-then-allof-1-then-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-16-then-allof-1-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-54-then-allof-1-then.md similarity index 78% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-16-then-allof-1-then.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-54-then-allof-1-then.md index 038db1d2..dd984e96 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-16-then-allof-1-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-54-then-allof-1-then.md @@ -6,17 +6,18 @@ unknown | Property | Type | Required | Nullable | Defined by | | :------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-16-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/16/then/allOf/1/then/properties/plan") | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-54-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/54/then/allOf/1/then/properties/plan") | ## plan -service plan >standard< for >business-entity-recognition< is available in data centers: +service plan >concurrent-unattended< for >IRPA< is available in data centers: * {'region': 'ap10', 'name': 'Australia (Sydney)'} * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} * {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} * {'region': 'jp10', 'name': 'Japan (Tokyo)'} * {'region': 'us10', 'name': 'US East (VA)'} +* {'region': 'us20', 'name': 'US West (WA)'} `plan` @@ -26,7 +27,7 @@ service plan >standard< for >business-entity-recognition< is available in data c * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-16-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/16/then/allOf/1/then/properties/plan") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-54-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/54/then/allOf/1/then/properties/plan") ### plan Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-52-then-allof-1.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-54-then-allof-1.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-52-then-allof-1.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-54-then-allof-1.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-54-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-54-then-properties-plan.md index 248cb3df..7ba708c9 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-54-then-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-54-then-properties-plan.md @@ -6,6 +6,7 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :----------- | :---------- | -| `"standard"` | | +| Value | Explanation | +| :------------------------ | :---------- | +| `"concurrent-attended"` | | +| `"concurrent-unattended"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-54-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-54-then.md index d0f18d17..13457799 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-54-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-54-then.md @@ -6,6 +6,8 @@ all of * [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-54-then-allof-0.md "check type definition") +* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-54-then-allof-1.md "check type definition") + # then Properties | Property | Type | Required | Nullable | Defined by | @@ -35,13 +37,14 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :----------- | :---------- | -| `"standard"` | | +| Value | Explanation | +| :------------------------ | :---------- | +| `"concurrent-attended"` | | +| `"concurrent-unattended"` | | ## name -SAP Intelligent Robotic Process Automation: SAP Intelligent Robotic Process Automation (SAP Intelligent RPA) lets you automate enterprise business processes. Design process automations with the Desktop Studio by creating end-to-end scenarios. Import these scenarios into the cloud Factory powered by SAP Business Technology Platform to configure and execute them with Agents. Agents running on workstations can work as a Digital Assistant (attended automation) or as a Digital Worker (unattended automation). +SAP Intelligent Robotic Process Automation: SAP Intelligent Robotic Process Automation lets you automate enterprise business processes. Design process automations with the Desktop Studio by creating end-to-end scenarios. Import these scenarios into the cloud Factory to configure and execute them with Agents. An Agent can work as a Digital Assistant (attended automation) or as a Digital Worker (unattended automation). `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-55-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-55-if-properties-name.md index ca8a117d..4feb0b8d 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-55-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-55-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"it-rt" +"irpa-service" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-55-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-55-if.md index a27544cc..5db5ee42 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-55-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-55-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"it-rt" +"irpa-service" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-55-then-allof-0-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-55-then-allof-0-if-properties-plan.md index ea600e6d..126392b1 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-55-then-allof-0-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-55-then-allof-0-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"api" +"standard" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-55-then-allof-0-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-55-then-allof-0-if.md index 5e77de1c..e3d5572c 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-55-then-allof-0-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-55-then-allof-0-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"api" +"standard" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-55-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-55-then-allof-0-then.md index d78f56e7..783ec960 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-55-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-55-then-allof-0-then.md @@ -4,34 +4,19 @@ unknown # then Properties -| Property | Type | Required | Nullable | Defined by | -| :------------------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-55-then-allof-0-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/55/then/allOf/0/then/properties/plan") | -| [parameters](#parameters) | `object` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-55-then-allof-0-then-properties-parameters.md "undefined#/properties/services/items/allOf/1/then/allOf/55/then/allOf/0/then/properties/parameters") | +| Property | Type | Required | Nullable | Defined by | +| :------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-55-then-allof-0-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/55/then/allOf/0/then/properties/plan") | ## plan -service plan >api< for >it-rt< is available in data centers: +service plan >standard< for >irpa-service< is available in data centers: * {'region': 'ap10', 'name': 'Australia (Sydney)'} -* {'region': 'ap11', 'name': 'Singapore'} -* {'region': 'ap12', 'name': 'South Korea (Seoul)'} -* {'region': 'ap20', 'name': 'Australia (Sydney) Azure'} -* {'region': 'ap21', 'name': 'Singapore'} -* {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} -* {'region': 'ca10', 'name': 'Canada (Montreal)'} -* {'region': 'ch20', 'name': 'cf-ch20'} * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} * {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} -* {'region': 'eu20', 'name': 'Europe (Netherlands)'} -* {'region': 'eu30', 'name': 'Europe (Frankfurt)'} -* {'region': 'in30', 'name': 'India (Mumbai)'} * {'region': 'jp10', 'name': 'Japan (Tokyo)'} -* {'region': 'jp20', 'name': 'Japan (Tokyo)'} * {'region': 'us10', 'name': 'US East (VA)'} -* {'region': 'us20', 'name': 'US West (WA)'} -* {'region': 'us21', 'name': 'US East (VA)'} -* {'region': 'us30', 'name': 'US Central (IA)'} `plan` @@ -46,21 +31,3 @@ service plan >api< for >it-rt< is available in data centers: ### plan Type unknown - -## parameters - - - -`parameters` - -* is required - -* Type: `object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-55-then-allof-0-then-properties-parameters.md)) - -* cannot be null - -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-55-then-allof-0-then-properties-parameters.md "undefined#/properties/services/items/allOf/1/then/allOf/55/then/allOf/0/then/properties/parameters") - -### parameters Type - -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-55-then-allof-0-then-properties-parameters.md)) diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-55-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-55-then-properties-plan.md index 2e539149..248cb3df 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-55-then-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-55-then-properties-plan.md @@ -6,7 +6,6 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :------------------- | :---------- | -| `"api"` | | -| `"integration-flow"` | | +| Value | Explanation | +| :----------- | :---------- | +| `"standard"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-55-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-55-then.md index 9e4d29ce..f1e8120f 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-55-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-55-then.md @@ -6,8 +6,6 @@ all of * [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-55-then-allof-0.md "check type definition") -* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-55-then-allof-1.md "check type definition") - # then Properties | Property | Type | Required | Nullable | Defined by | @@ -37,14 +35,13 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :------------------- | :---------- | -| `"api"` | | -| `"integration-flow"` | | +| Value | Explanation | +| :----------- | :---------- | +| `"standard"` | | ## name -Process Integration Runtime: Provides access to the integration flow endpoints and public APIs of the Cloud Integration capability of Integration Suite. You need this service instance only if you want to execute the integration flows or access Cloud Integration resources via APIs. +SAP Intelligent Robotic Process Automation: SAP Intelligent Robotic Process Automation (SAP Intelligent RPA) lets you automate enterprise business processes. Design process automations with the Desktop Studio by creating end-to-end scenarios. Import these scenarios into the cloud Factory powered by SAP Business Technology Platform to configure and execute them with Agents. Agents running on workstations can work as a Digital Assistant (attended automation) or as a Digital Worker (unattended automation). `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-56-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-56-if-properties-name.md index bb705c33..ca8a117d 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-56-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-56-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"jobscheduler" +"it-rt" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-56-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-56-if.md index 6dafd9e3..61834103 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-56-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-56-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"jobscheduler" +"it-rt" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-56-then-allof-0-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-56-then-allof-0-if-properties-plan.md index 126392b1..ea600e6d 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-56-then-allof-0-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-56-then-allof-0-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"standard" +"api" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-56-then-allof-0-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-56-then-allof-0-if.md index 77aa39dc..a6f34267 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-56-then-allof-0-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-56-then-allof-0-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"standard" +"api" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-55-then-allof-0-then-properties-parameters-properties-access-token-validity-in-seconds.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-56-then-allof-0-then-properties-parameters-properties-access-token-validity-in-seconds.md similarity index 86% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-55-then-allof-0-then-properties-parameters-properties-access-token-validity-in-seconds.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-56-then-allof-0-then-properties-parameters-properties-access-token-validity-in-seconds.md index eda0eb74..febe7d6c 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-55-then-allof-0-then-properties-parameters-properties-access-token-validity-in-seconds.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-56-then-allof-0-then-properties-parameters-properties-access-token-validity-in-seconds.md @@ -1,6 +1,6 @@ ## token-validity Type -`integer` ([Access Token Validity (in seconds)](btpsa-usecase-properties-services-items-allof-1-then-allof-55-then-allof-0-then-properties-parameters-properties-access-token-validity-in-seconds.md)) +`integer` ([Access Token Validity (in seconds)](btpsa-usecase-properties-services-items-allof-1-then-allof-56-then-allof-0-then-properties-parameters-properties-access-token-validity-in-seconds.md)) ## token-validity Constraints diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-55-then-allof-0-then-properties-parameters-properties-grant-types-items-_enumdisplayname.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-56-then-allof-0-then-properties-parameters-properties-grant-types-items-_enumdisplayname.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-55-then-allof-0-then-properties-parameters-properties-grant-types-items-_enumdisplayname.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-56-then-allof-0-then-properties-parameters-properties-grant-types-items-_enumdisplayname.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-55-then-allof-0-then-properties-parameters-properties-grant-types-items.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-56-then-allof-0-then-properties-parameters-properties-grant-types-items.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-55-then-allof-0-then-properties-parameters-properties-grant-types-items.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-56-then-allof-0-then-properties-parameters-properties-grant-types-items.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-55-then-allof-0-then-properties-parameters-properties-grant-types.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-56-then-allof-0-then-properties-parameters-properties-grant-types.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-55-then-allof-0-then-properties-parameters-properties-grant-types.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-56-then-allof-0-then-properties-parameters-properties-grant-types.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-55-then-allof-0-then-properties-parameters-properties-redirect-uris-items.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-56-then-allof-0-then-properties-parameters-properties-redirect-uris-items.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-55-then-allof-0-then-properties-parameters-properties-redirect-uris-items.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-56-then-allof-0-then-properties-parameters-properties-redirect-uris-items.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-55-then-allof-0-then-properties-parameters-properties-redirect-uris.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-56-then-allof-0-then-properties-parameters-properties-redirect-uris.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-55-then-allof-0-then-properties-parameters-properties-redirect-uris.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-56-then-allof-0-then-properties-parameters-properties-redirect-uris.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-55-then-allof-0-then-properties-parameters-properties-roles-items.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-56-then-allof-0-then-properties-parameters-properties-roles-items.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-55-then-allof-0-then-properties-parameters-properties-roles-items.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-56-then-allof-0-then-properties-parameters-properties-roles-items.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-55-then-allof-0-then-properties-parameters-properties-roles.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-56-then-allof-0-then-properties-parameters-properties-roles.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-55-then-allof-0-then-properties-parameters-properties-roles.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-56-then-allof-0-then-properties-parameters-properties-roles.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-55-then-allof-0-then-properties-parameters.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-56-then-allof-0-then-properties-parameters.md similarity index 79% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-55-then-allof-0-then-properties-parameters.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-56-then-allof-0-then-properties-parameters.md index 72fb0c70..df580376 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-55-then-allof-0-then-properties-parameters.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-56-then-allof-0-then-properties-parameters.md @@ -1,15 +1,15 @@ ## parameters Type -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-55-then-allof-0-then-properties-parameters.md)) +`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-56-then-allof-0-then-properties-parameters.md)) # parameters Properties | Property | Type | Required | Nullable | Defined by | | :-------------------------------- | :-------- | :------- | :------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [grant-types](#grant-types) | `array` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-55-then-allof-0-then-properties-parameters-properties-grant-types.md "undefined#/properties/services/items/allOf/1/then/allOf/55/then/allOf/0/then/properties/parameters/properties/grant-types") | -| [redirect-uris](#redirect-uris) | `array` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-55-then-allof-0-then-properties-parameters-properties-redirect-uris.md "undefined#/properties/services/items/allOf/1/then/allOf/55/then/allOf/0/then/properties/parameters/properties/redirect-uris") | -| [roles](#roles) | `array` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-55-then-allof-0-then-properties-parameters-properties-roles.md "undefined#/properties/services/items/allOf/1/then/allOf/55/then/allOf/0/then/properties/parameters/properties/roles") | -| [token-validity](#token-validity) | `integer` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-55-then-allof-0-then-properties-parameters-properties-access-token-validity-in-seconds.md "undefined#/properties/services/items/allOf/1/then/allOf/55/then/allOf/0/then/properties/parameters/properties/token-validity") | +| [grant-types](#grant-types) | `array` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-56-then-allof-0-then-properties-parameters-properties-grant-types.md "undefined#/properties/services/items/allOf/1/then/allOf/56/then/allOf/0/then/properties/parameters/properties/grant-types") | +| [redirect-uris](#redirect-uris) | `array` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-56-then-allof-0-then-properties-parameters-properties-redirect-uris.md "undefined#/properties/services/items/allOf/1/then/allOf/56/then/allOf/0/then/properties/parameters/properties/redirect-uris") | +| [roles](#roles) | `array` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-56-then-allof-0-then-properties-parameters-properties-roles.md "undefined#/properties/services/items/allOf/1/then/allOf/56/then/allOf/0/then/properties/parameters/properties/roles") | +| [token-validity](#token-validity) | `integer` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-56-then-allof-0-then-properties-parameters-properties-access-token-validity-in-seconds.md "undefined#/properties/services/items/allOf/1/then/allOf/56/then/allOf/0/then/properties/parameters/properties/token-validity") | ## grant-types @@ -23,7 +23,7 @@ Grant-types related to the service instance * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-55-then-allof-0-then-properties-parameters-properties-grant-types.md "undefined#/properties/services/items/allOf/1/then/allOf/55/then/allOf/0/then/properties/parameters/properties/grant-types") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-56-then-allof-0-then-properties-parameters-properties-grant-types.md "undefined#/properties/services/items/allOf/1/then/allOf/56/then/allOf/0/then/properties/parameters/properties/grant-types") ### grant-types Type @@ -57,7 +57,7 @@ Redirect-Uris for authorization code grant-type * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-55-then-allof-0-then-properties-parameters-properties-redirect-uris.md "undefined#/properties/services/items/allOf/1/then/allOf/55/then/allOf/0/then/properties/parameters/properties/redirect-uris") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-56-then-allof-0-then-properties-parameters-properties-redirect-uris.md "undefined#/properties/services/items/allOf/1/then/allOf/56/then/allOf/0/then/properties/parameters/properties/redirect-uris") ### redirect-uris Type @@ -89,7 +89,7 @@ Roles granted to the service instance. For details please check standard< for >jobscheduler< is available in data centers: +service plan >api< for >it-rt< is available in data centers: * {'region': 'ap10', 'name': 'Australia (Sydney)'} * {'region': 'ap11', 'name': 'Singapore'} @@ -45,3 +46,21 @@ service plan >standard< for >jobscheduler< is available in data centers: ### plan Type unknown + +## parameters + + + +`parameters` + +* is required + +* Type: `object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-56-then-allof-0-then-properties-parameters.md)) + +* cannot be null + +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-56-then-allof-0-then-properties-parameters.md "undefined#/properties/services/items/allOf/1/then/allOf/56/then/allOf/0/then/properties/parameters") + +### parameters Type + +`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-56-then-allof-0-then-properties-parameters.md)) diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-55-then-allof-1-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-56-then-allof-1-if-properties-plan.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-55-then-allof-1-if-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-56-then-allof-1-if-properties-plan.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-75-then-allof-1-if-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-56-then-allof-1-if-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-75-then-allof-1-if-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-56-then-allof-1-if-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-55-then-allof-1-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-56-then-allof-1-if.md similarity index 83% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-55-then-allof-1-if.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-56-then-allof-1-if.md index 6362ad6d..1f0b69b3 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-55-then-allof-1-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-56-then-allof-1-if.md @@ -6,7 +6,7 @@ unknown | Property | Type | Required | Nullable | Defined by | | :------------ | :------------ | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-55-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/55/then/allOf/1/if/properties/plan") | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-56-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/56/then/allOf/1/if/properties/plan") | ## plan @@ -20,7 +20,7 @@ unknown * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-55-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/55/then/allOf/1/if/properties/plan") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-56-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/56/then/allOf/1/if/properties/plan") ### plan Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-55-then-allof-1-then-properties-parameters-properties-access-token-validity-in-seconds.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-56-then-allof-1-then-properties-parameters-properties-access-token-validity-in-seconds.md similarity index 86% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-55-then-allof-1-then-properties-parameters-properties-access-token-validity-in-seconds.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-56-then-allof-1-then-properties-parameters-properties-access-token-validity-in-seconds.md index 94460f72..4ed1cc79 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-55-then-allof-1-then-properties-parameters-properties-access-token-validity-in-seconds.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-56-then-allof-1-then-properties-parameters-properties-access-token-validity-in-seconds.md @@ -1,6 +1,6 @@ ## token-validity Type -`integer` ([Access Token Validity (in seconds)](btpsa-usecase-properties-services-items-allof-1-then-allof-55-then-allof-1-then-properties-parameters-properties-access-token-validity-in-seconds.md)) +`integer` ([Access Token Validity (in seconds)](btpsa-usecase-properties-services-items-allof-1-then-allof-56-then-allof-1-then-properties-parameters-properties-access-token-validity-in-seconds.md)) ## token-validity Constraints diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-55-then-allof-1-then-properties-parameters-properties-grant-types-items-_enumdisplayname.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-56-then-allof-1-then-properties-parameters-properties-grant-types-items-_enumdisplayname.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-55-then-allof-1-then-properties-parameters-properties-grant-types-items-_enumdisplayname.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-56-then-allof-1-then-properties-parameters-properties-grant-types-items-_enumdisplayname.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-55-then-allof-1-then-properties-parameters-properties-grant-types-items.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-56-then-allof-1-then-properties-parameters-properties-grant-types-items.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-55-then-allof-1-then-properties-parameters-properties-grant-types-items.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-56-then-allof-1-then-properties-parameters-properties-grant-types-items.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-55-then-allof-1-then-properties-parameters-properties-grant-types.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-56-then-allof-1-then-properties-parameters-properties-grant-types.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-55-then-allof-1-then-properties-parameters-properties-grant-types.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-56-then-allof-1-then-properties-parameters-properties-grant-types.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-55-then-allof-1-then-properties-parameters-properties-redirect-uris-items.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-56-then-allof-1-then-properties-parameters-properties-redirect-uris-items.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-55-then-allof-1-then-properties-parameters-properties-redirect-uris-items.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-56-then-allof-1-then-properties-parameters-properties-redirect-uris-items.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-55-then-allof-1-then-properties-parameters-properties-redirect-uris.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-56-then-allof-1-then-properties-parameters-properties-redirect-uris.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-55-then-allof-1-then-properties-parameters-properties-redirect-uris.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-56-then-allof-1-then-properties-parameters-properties-redirect-uris.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-55-then-allof-1-then-properties-parameters-properties-roles-items.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-56-then-allof-1-then-properties-parameters-properties-roles-items.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-55-then-allof-1-then-properties-parameters-properties-roles-items.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-56-then-allof-1-then-properties-parameters-properties-roles-items.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-55-then-allof-1-then-properties-parameters-properties-roles.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-56-then-allof-1-then-properties-parameters-properties-roles.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-55-then-allof-1-then-properties-parameters-properties-roles.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-56-then-allof-1-then-properties-parameters-properties-roles.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-55-then-allof-1-then-properties-parameters.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-56-then-allof-1-then-properties-parameters.md similarity index 79% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-55-then-allof-1-then-properties-parameters.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-56-then-allof-1-then-properties-parameters.md index da82c389..d0b61a87 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-55-then-allof-1-then-properties-parameters.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-56-then-allof-1-then-properties-parameters.md @@ -1,15 +1,15 @@ ## parameters Type -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-55-then-allof-1-then-properties-parameters.md)) +`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-56-then-allof-1-then-properties-parameters.md)) # parameters Properties | Property | Type | Required | Nullable | Defined by | | :-------------------------------- | :-------- | :------- | :------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [grant-types](#grant-types) | `array` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-55-then-allof-1-then-properties-parameters-properties-grant-types.md "undefined#/properties/services/items/allOf/1/then/allOf/55/then/allOf/1/then/properties/parameters/properties/grant-types") | -| [redirect-uris](#redirect-uris) | `array` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-55-then-allof-1-then-properties-parameters-properties-redirect-uris.md "undefined#/properties/services/items/allOf/1/then/allOf/55/then/allOf/1/then/properties/parameters/properties/redirect-uris") | -| [roles](#roles) | `array` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-55-then-allof-1-then-properties-parameters-properties-roles.md "undefined#/properties/services/items/allOf/1/then/allOf/55/then/allOf/1/then/properties/parameters/properties/roles") | -| [token-validity](#token-validity) | `integer` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-55-then-allof-1-then-properties-parameters-properties-access-token-validity-in-seconds.md "undefined#/properties/services/items/allOf/1/then/allOf/55/then/allOf/1/then/properties/parameters/properties/token-validity") | +| [grant-types](#grant-types) | `array` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-56-then-allof-1-then-properties-parameters-properties-grant-types.md "undefined#/properties/services/items/allOf/1/then/allOf/56/then/allOf/1/then/properties/parameters/properties/grant-types") | +| [redirect-uris](#redirect-uris) | `array` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-56-then-allof-1-then-properties-parameters-properties-redirect-uris.md "undefined#/properties/services/items/allOf/1/then/allOf/56/then/allOf/1/then/properties/parameters/properties/redirect-uris") | +| [roles](#roles) | `array` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-56-then-allof-1-then-properties-parameters-properties-roles.md "undefined#/properties/services/items/allOf/1/then/allOf/56/then/allOf/1/then/properties/parameters/properties/roles") | +| [token-validity](#token-validity) | `integer` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-56-then-allof-1-then-properties-parameters-properties-access-token-validity-in-seconds.md "undefined#/properties/services/items/allOf/1/then/allOf/56/then/allOf/1/then/properties/parameters/properties/token-validity") | ## grant-types @@ -23,7 +23,7 @@ Grant-types related to the service instance * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-55-then-allof-1-then-properties-parameters-properties-grant-types.md "undefined#/properties/services/items/allOf/1/then/allOf/55/then/allOf/1/then/properties/parameters/properties/grant-types") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-56-then-allof-1-then-properties-parameters-properties-grant-types.md "undefined#/properties/services/items/allOf/1/then/allOf/56/then/allOf/1/then/properties/parameters/properties/grant-types") ### grant-types Type @@ -57,7 +57,7 @@ Redirect-Uris for authorization code grant-type * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-55-then-allof-1-then-properties-parameters-properties-redirect-uris.md "undefined#/properties/services/items/allOf/1/then/allOf/55/then/allOf/1/then/properties/parameters/properties/redirect-uris") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-56-then-allof-1-then-properties-parameters-properties-redirect-uris.md "undefined#/properties/services/items/allOf/1/then/allOf/56/then/allOf/1/then/properties/parameters/properties/redirect-uris") ### redirect-uris Type @@ -89,7 +89,7 @@ Roles related to the service instance * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-55-then-allof-1-then-properties-parameters-properties-roles.md "undefined#/properties/services/items/allOf/1/then/allOf/55/then/allOf/1/then/properties/parameters/properties/roles") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-56-then-allof-1-then-properties-parameters-properties-roles.md "undefined#/properties/services/items/allOf/1/then/allOf/56/then/allOf/1/then/properties/parameters/properties/roles") ### roles Type @@ -119,15 +119,15 @@ Defines the validity of the access token * is optional -* Type: `integer` ([Access Token Validity (in seconds)](btpsa-usecase-properties-services-items-allof-1-then-allof-55-then-allof-1-then-properties-parameters-properties-access-token-validity-in-seconds.md)) +* Type: `integer` ([Access Token Validity (in seconds)](btpsa-usecase-properties-services-items-allof-1-then-allof-56-then-allof-1-then-properties-parameters-properties-access-token-validity-in-seconds.md)) * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-55-then-allof-1-then-properties-parameters-properties-access-token-validity-in-seconds.md "undefined#/properties/services/items/allOf/1/then/allOf/55/then/allOf/1/then/properties/parameters/properties/token-validity") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-56-then-allof-1-then-properties-parameters-properties-access-token-validity-in-seconds.md "undefined#/properties/services/items/allOf/1/then/allOf/56/then/allOf/1/then/properties/parameters/properties/token-validity") ### token-validity Type -`integer` ([Access Token Validity (in seconds)](btpsa-usecase-properties-services-items-allof-1-then-allof-55-then-allof-1-then-properties-parameters-properties-access-token-validity-in-seconds.md)) +`integer` ([Access Token Validity (in seconds)](btpsa-usecase-properties-services-items-allof-1-then-allof-56-then-allof-1-then-properties-parameters-properties-access-token-validity-in-seconds.md)) ### token-validity Constraints diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-58-then-allof-1-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-56-then-allof-1-then-properties-plan.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-58-then-allof-1-then-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-56-then-allof-1-then-properties-plan.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-75-then-allof-1-then-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-56-then-allof-1-then-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-75-then-allof-1-then-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-56-then-allof-1-then-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-55-then-allof-1-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-56-then-allof-1-then.md similarity index 81% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-55-then-allof-1-then.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-56-then-allof-1-then.md index c0f34445..c24943c7 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-55-then-allof-1-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-56-then-allof-1-then.md @@ -6,8 +6,8 @@ unknown | Property | Type | Required | Nullable | Defined by | | :------------------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-55-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/55/then/allOf/1/then/properties/plan") | -| [parameters](#parameters) | `object` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-55-then-allof-1-then-properties-parameters.md "undefined#/properties/services/items/allOf/1/then/allOf/55/then/allOf/1/then/properties/parameters") | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-56-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/56/then/allOf/1/then/properties/plan") | +| [parameters](#parameters) | `object` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-56-then-allof-1-then-properties-parameters.md "undefined#/properties/services/items/allOf/1/then/allOf/56/then/allOf/1/then/properties/parameters") | ## plan @@ -41,7 +41,7 @@ service plan >integration-flow< for >it-rt< is available in data centers: * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-55-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/55/then/allOf/1/then/properties/plan") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-56-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/56/then/allOf/1/then/properties/plan") ### plan Type @@ -55,12 +55,12 @@ unknown * is required -* Type: `object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-55-then-allof-1-then-properties-parameters.md)) +* Type: `object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-56-then-allof-1-then-properties-parameters.md)) * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-55-then-allof-1-then-properties-parameters.md "undefined#/properties/services/items/allOf/1/then/allOf/55/then/allOf/1/then/properties/parameters") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-56-then-allof-1-then-properties-parameters.md "undefined#/properties/services/items/allOf/1/then/allOf/56/then/allOf/1/then/properties/parameters") ### parameters Type -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-55-then-allof-1-then-properties-parameters.md)) +`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-56-then-allof-1-then-properties-parameters.md)) diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-55-then-allof-1.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-56-then-allof-1.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-55-then-allof-1.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-56-then-allof-1.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-56-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-56-then-properties-plan.md index 248cb3df..2e539149 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-56-then-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-56-then-properties-plan.md @@ -6,6 +6,7 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :----------- | :---------- | -| `"standard"` | | +| Value | Explanation | +| :------------------- | :---------- | +| `"api"` | | +| `"integration-flow"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-56-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-56-then.md index 0208a0a2..5cb53bba 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-56-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-56-then.md @@ -6,6 +6,8 @@ all of * [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-56-then-allof-0.md "check type definition") +* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-56-then-allof-1.md "check type definition") + # then Properties | Property | Type | Required | Nullable | Defined by | @@ -35,13 +37,14 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :----------- | :---------- | -| `"standard"` | | +| Value | Explanation | +| :------------------- | :---------- | +| `"api"` | | +| `"integration-flow"` | | ## name -SAP Job Scheduling service: The Job Scheduling Service allows you to define and manage jobs that run once or on recurring schedules. Use this runtime-agnostic service to schedule REST endpoint actions in your application or to schedule long-running processes using Cloud Foundry tasks. Use REST APIs to schedule your jobs, including long-running jobs asynchronously, and create multiple schedule formats for both simple and complex recurring schedules. The service dashboard is a web interface that lets you manage jobs and schedules. +Process Integration Runtime: Provides access to the integration flow endpoints and public APIs of the Cloud Integration capability of Integration Suite. You need this service instance only if you want to execute the integration flows or access Cloud Integration resources via APIs. `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-57-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-57-if-properties-name.md index fadf7708..bb705c33 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-57-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-57-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"malware-scanner" +"jobscheduler" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-57-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-57-if.md index 6a0d8587..f8e763e2 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-57-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-57-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"malware-scanner" +"jobscheduler" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-57-then-allof-0-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-57-then-allof-0-if-properties-plan.md index ef43dcad..126392b1 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-57-then-allof-0-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-57-then-allof-0-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"clamav" +"standard" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-57-then-allof-0-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-57-then-allof-0-if.md index edf955a0..53a775a1 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-57-then-allof-0-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-57-then-allof-0-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"clamav" +"standard" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-57-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-57-then-allof-0-then.md index 285884b6..1a20df7c 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-57-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-57-then-allof-0-then.md @@ -10,7 +10,7 @@ unknown ## plan -service plan >clamav< for >malware-scanner< is available in data centers: +service plan >standard< for >jobscheduler< is available in data centers: * {'region': 'ap10', 'name': 'Australia (Sydney)'} * {'region': 'ap11', 'name': 'Singapore'} diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-57-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-57-then-properties-plan.md index 9c55ca2a..248cb3df 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-57-then-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-57-then-properties-plan.md @@ -6,6 +6,6 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :--------- | :---------- | -| `"clamav"` | | +| Value | Explanation | +| :----------- | :---------- | +| `"standard"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-57-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-57-then.md index d2c2a34a..c0dac344 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-57-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-57-then.md @@ -35,13 +35,13 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :--------- | :---------- | -| `"clamav"` | | +| Value | Explanation | +| :----------- | :---------- | +| `"standard"` | | ## name -SAP Malware Scanning service: Use SAP Malware Scanning service to scan business documents for malware. Integrate this service with your custom-developed apps running on Cloud Foundry. When your apps upload business documents, your apps can call the SAP Malware Scanning service to check for viruses or other malware. +SAP Job Scheduling service: The Job Scheduling Service allows you to define and manage jobs that run once or on recurring schedules. Use this runtime-agnostic service to schedule REST endpoint actions in your application or to schedule long-running processes using Cloud Foundry tasks. Use REST APIs to schedule your jobs, including long-running jobs asynchronously, and create multiple schedule formats for both simple and complex recurring schedules. The service dashboard is a web interface that lets you manage jobs and schedules. `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-58-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-58-if-properties-name.md index 8df85e93..fadf7708 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-58-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-58-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"market-rates-byor" +"malware-scanner" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-58-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-58-if.md index 91fdb33c..70809307 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-58-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-58-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"market-rates-byor" +"malware-scanner" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-58-then-allof-0-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-58-then-allof-0-if-properties-plan.md index 4f94ce99..ef43dcad 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-58-then-allof-0-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-58-then-allof-0-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"default" +"clamav" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-58-then-allof-0-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-58-then-allof-0-if.md index bb183a4e..0ae59241 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-58-then-allof-0-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-58-then-allof-0-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"default" +"clamav" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-58-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-58-then-allof-0-then.md index f9c70b3c..25d0fe84 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-58-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-58-then-allof-0-then.md @@ -10,10 +10,27 @@ unknown ## plan -service plan >default< for >market-rates-byor< is available in data centers: - +service plan >clamav< for >malware-scanner< is available in data centers: + +* {'region': 'ap10', 'name': 'Australia (Sydney)'} +* {'region': 'ap11', 'name': 'Singapore'} +* {'region': 'ap12', 'name': 'South Korea (Seoul)'} +* {'region': 'ap20', 'name': 'Australia (Sydney) Azure'} +* {'region': 'ap21', 'name': 'Singapore'} +* {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} +* {'region': 'ca10', 'name': 'Canada (Montreal)'} +* {'region': 'ch20', 'name': 'cf-ch20'} * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} +* {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} +* {'region': 'eu20', 'name': 'Europe (Netherlands)'} +* {'region': 'eu30', 'name': 'Europe (Frankfurt)'} +* {'region': 'in30', 'name': 'India (Mumbai)'} +* {'region': 'jp10', 'name': 'Japan (Tokyo)'} +* {'region': 'jp20', 'name': 'Japan (Tokyo)'} * {'region': 'us10', 'name': 'US East (VA)'} +* {'region': 'us20', 'name': 'US West (WA)'} +* {'region': 'us21', 'name': 'US East (VA)'} +* {'region': 'us30', 'name': 'US Central (IA)'} `plan` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-58-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-58-then-properties-plan.md index 5c4db72d..9c55ca2a 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-58-then-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-58-then-properties-plan.md @@ -6,7 +6,6 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :---------- | :---------- | -| `"default"` | | -| `"free"` | | +| Value | Explanation | +| :--------- | :---------- | +| `"clamav"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-58-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-58-then.md index 6c78e035..34c65d5d 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-58-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-58-then.md @@ -6,8 +6,6 @@ all of * [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-58-then-allof-0.md "check type definition") -* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-58-then-allof-1.md "check type definition") - # then Properties | Property | Type | Required | Nullable | Defined by | @@ -37,14 +35,13 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :---------- | :---------- | -| `"default"` | | -| `"free"` | | +| Value | Explanation | +| :--------- | :---------- | +| `"clamav"` | | ## name -SAP Market Rates Management: The SAP Market Rates Management, Bring Your Own Rates data option allows you to upload and download your own market rates licensed from third party data providers. It includes upload and download APIs that enable you to upload and download market data in a format compatible with an SAP S/4HANA system. +SAP Malware Scanning service: Use SAP Malware Scanning service to scan business documents for malware. Integrate this service with your custom-developed apps running on Cloud Foundry. When your apps upload business documents, your apps can call the SAP Malware Scanning service to check for viruses or other malware. `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-59-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-59-if-properties-name.md index 8fce5b82..8df85e93 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-59-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-59-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"market-rates-thr" +"market-rates-byor" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-59-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-59-if.md index 81b4317a..827d1d63 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-59-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-59-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"market-rates-thr" +"market-rates-byor" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-59-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-59-then-allof-0-then.md index 00c8fed5..51b8658a 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-59-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-59-then-allof-0-then.md @@ -10,7 +10,7 @@ unknown ## plan -service plan >default< for >market-rates-thr< is available in data centers: +service plan >default< for >market-rates-byor< is available in data centers: * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} * {'region': 'us10', 'name': 'US East (VA)'} diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-59-then-allof-1-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-59-then-allof-1-if-properties-plan.md index 126392b1..c97f5143 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-59-then-allof-1-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-59-then-allof-1-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"standard" +"free" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-59-then-allof-1-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-59-then-allof-1-if.md index 47511f78..154ad240 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-59-then-allof-1-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-59-then-allof-1-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"standard" +"free" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-59-then-allof-1-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-59-then-allof-1-then.md index 94130c2c..91e07f0f 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-59-then-allof-1-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-59-then-allof-1-then.md @@ -10,7 +10,7 @@ unknown ## plan -service plan >standard< for >market-rates-thr< is available in data centers: +service plan >free< for >market-rates-byor< is available in data centers: * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} * {'region': 'us10', 'name': 'US East (VA)'} diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-59-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-59-then-properties-plan.md index 51a8736c..5c4db72d 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-59-then-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-59-then-properties-plan.md @@ -6,7 +6,7 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :----------- | :---------- | -| `"default"` | | -| `"standard"` | | +| Value | Explanation | +| :---------- | :---------- | +| `"default"` | | +| `"free"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-59-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-59-then.md index 4cbdf536..b0d6f306 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-59-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-59-then.md @@ -37,14 +37,14 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :----------- | :---------- | -| `"default"` | | -| `"standard"` | | +| Value | Explanation | +| :---------- | :---------- | +| `"default"` | | +| `"free"` | | ## name -Market Rates, Refinitiv: The Refinitiv data option for SAP Market Rates Management provides market rates on a daily basis or for a specified date range that you can use in SAP S/4HANA systems. It includes the Download Market Data service, which is a reuse service that allows you to import market data. +SAP Market Rates Management: The SAP Market Rates Management, Bring Your Own Rates data option allows you to upload and download your own market rates licensed from third party data providers. It includes upload and download APIs that enable you to upload and download market data in a format compatible with an SAP S/4HANA system. `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-60-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-60-if-properties-name.md index c4f27236..8fce5b82 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-60-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-60-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"MDMBusinessPartnerService" +"market-rates-thr" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-60-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-60-if.md index be906b41..89c7a739 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-60-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-60-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"MDMBusinessPartnerService" +"market-rates-thr" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-60-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-60-then-allof-0-then.md index 02c755a0..bb54929f 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-60-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-60-then-allof-0-then.md @@ -10,7 +10,7 @@ unknown ## plan -service plan >default< for >MDMBusinessPartnerService< is available in data centers: +service plan >default< for >market-rates-thr< is available in data centers: * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} * {'region': 'us10', 'name': 'US East (VA)'} diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-52-then-allof-1-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-60-then-allof-1-if-properties-plan.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-52-then-allof-1-if-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-60-then-allof-1-if-properties-plan.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-75-then-allof-2-if-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-60-then-allof-1-if-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-75-then-allof-2-if-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-60-then-allof-1-if-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-60-then-allof-1-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-60-then-allof-1-if.md new file mode 100644 index 00000000..e659a2f5 --- /dev/null +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-60-then-allof-1-if.md @@ -0,0 +1,35 @@ +## if Type + +unknown + +# if Properties + +| Property | Type | Required | Nullable | Defined by | +| :------------ | :------------ | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-60-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/60/then/allOf/1/if/properties/plan") | + +## plan + + + +`plan` + +* is optional + +* Type: unknown + +* cannot be null + +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-60-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/60/then/allOf/1/if/properties/plan") + +### plan Type + +unknown + +### plan Constraints + +**constant**: the value of this property must be equal to: + +```json +"standard" +``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-75-then-allof-1-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-60-then-allof-1-then-properties-plan.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-75-then-allof-1-then-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-60-then-allof-1-then-properties-plan.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-75-then-allof-2-then-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-60-then-allof-1-then-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-75-then-allof-2-then-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-60-then-allof-1-then-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-58-then-allof-1-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-60-then-allof-1-then.md similarity index 78% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-58-then-allof-1-then.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-60-then-allof-1-then.md index a04f34f6..fd8a4676 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-58-then-allof-1-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-60-then-allof-1-then.md @@ -6,11 +6,11 @@ unknown | Property | Type | Required | Nullable | Defined by | | :------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-58-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/58/then/allOf/1/then/properties/plan") | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-60-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/60/then/allOf/1/then/properties/plan") | ## plan -service plan >free< for >market-rates-byor< is available in data centers: +service plan >standard< for >market-rates-thr< is available in data centers: * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} * {'region': 'us10', 'name': 'US East (VA)'} @@ -23,7 +23,7 @@ service plan >free< for >market-rates-byor< is available in data centers: * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-58-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/58/then/allOf/1/then/properties/plan") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-60-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/60/then/allOf/1/then/properties/plan") ### plan Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-58-then-allof-1.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-60-then-allof-1.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-58-then-allof-1.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-60-then-allof-1.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-60-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-60-then-properties-plan.md index 916e7975..51a8736c 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-60-then-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-60-then-properties-plan.md @@ -6,6 +6,7 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :---------- | :---------- | -| `"default"` | | +| Value | Explanation | +| :----------- | :---------- | +| `"default"` | | +| `"standard"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-60-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-60-then.md index f8d9ab23..3ed0afa8 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-60-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-60-then.md @@ -6,6 +6,8 @@ all of * [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-60-then-allof-0.md "check type definition") +* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-60-then-allof-1.md "check type definition") + # then Properties | Property | Type | Required | Nullable | Defined by | @@ -35,13 +37,14 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :---------- | :---------- | -| `"default"` | | +| Value | Explanation | +| :----------- | :---------- | +| `"default"` | | +| `"standard"` | | ## name -SAP Master Data service for business partners: SAP Business Partner Service +Market Rates, Refinitiv: The Refinitiv data option for SAP Market Rates Management provides market rates on a daily basis or for a specified date range that you can use in SAP S/4HANA systems. It includes the Download Market Data service, which is a reuse service that allows you to import market data. `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-61-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-61-if-properties-name.md index d7bc93dc..c4f27236 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-61-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-61-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"ml-foundation" +"MDMBusinessPartnerService" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-61-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-61-if.md index e73f4290..9ccd9aef 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-61-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-61-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"ml-foundation" +"MDMBusinessPartnerService" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-61-then-allof-0-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-61-then-allof-0-if-properties-plan.md index 126392b1..4f94ce99 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-61-then-allof-0-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-61-then-allof-0-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"standard" +"default" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-61-then-allof-0-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-61-then-allof-0-if.md index 481830b3..e3462670 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-61-then-allof-0-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-61-then-allof-0-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"standard" +"default" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-61-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-61-then-allof-0-then.md index e561aff3..54701882 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-61-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-61-then-allof-0-then.md @@ -10,13 +10,10 @@ unknown ## plan -service plan >standard< for >ml-foundation< is available in data centers: +service plan >default< for >MDMBusinessPartnerService< is available in data centers: * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} -* {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} -* {'region': 'jp10', 'name': 'Japan (Tokyo)'} * {'region': 'us10', 'name': 'US East (VA)'} -* {'region': 'us30', 'name': 'US Central (IA)'} `plan` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-61-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-61-then-properties-plan.md index 248cb3df..916e7975 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-61-then-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-61-then-properties-plan.md @@ -6,6 +6,6 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :----------- | :---------- | -| `"standard"` | | +| Value | Explanation | +| :---------- | :---------- | +| `"default"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-61-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-61-then.md index 2c7002b1..a874b5f1 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-61-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-61-then.md @@ -35,13 +35,13 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :----------- | :---------- | -| `"standard"` | | +| Value | Explanation | +| :---------- | :---------- | +| `"default"` | | ## name -SAP Leonardo ML Foundation: SAP Leonardo Machine Learning Foundation enables you to enhance business processes and software applications with intelligence. Unlock knowledge from structured and unstructured data such as images, text, time series and tabular data. By consuming easy-to-use APIs you can detect the content of pictures, extract keywords from natural language texts or analyze and forecast time-series data. All this can be done without prior investmentintospecial hardware or expertise in machine learning. Besides using pre-trained ML services you can also deploy custom ML models or tune existing models with your own training data. This allows you to easily serve customized ML models for critical business processes in a scalable and secure manner. +SAP Master Data service for business partners: SAP Business Partner Service `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-62-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-62-if-properties-name.md index d8305967..d7bc93dc 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-62-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-62-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"mobile-app-catalog" +"ml-foundation" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-62-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-62-if.md index 5757db56..8a675e65 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-62-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-62-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"mobile-app-catalog" +"ml-foundation" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-62-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-62-then-allof-0-then.md index 85900392..42728734 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-62-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-62-then-allof-0-then.md @@ -10,14 +10,13 @@ unknown ## plan -service plan >standard< for >mobile-app-catalog< is available in data centers: +service plan >standard< for >ml-foundation< is available in data centers: -* {'region': 'ap10', 'name': 'Australia (Sydney)'} -* {'region': 'ap11', 'name': 'Singapore'} -* {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} +* {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} * {'region': 'jp10', 'name': 'Japan (Tokyo)'} * {'region': 'us10', 'name': 'US East (VA)'} +* {'region': 'us30', 'name': 'US Central (IA)'} `plan` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-62-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-62-then.md index 0cd9fd9d..af446b2b 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-62-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-62-then.md @@ -41,7 +41,7 @@ unknown ## name -Mobile App Catalog: Mobile App Catalog +SAP Leonardo ML Foundation: SAP Leonardo Machine Learning Foundation enables you to enhance business processes and software applications with intelligence. Unlock knowledge from structured and unstructured data such as images, text, time series and tabular data. By consuming easy-to-use APIs you can detect the content of pictures, extract keywords from natural language texts or analyze and forecast time-series data. All this can be done without prior investmentintospecial hardware or expertise in machine learning. Besides using pre-trained ML services you can also deploy custom ML models or tune existing models with your own training data. This allows you to easily serve customized ML models for critical business processes in a scalable and secure manner. `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-63-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-63-if-properties-name.md index a8dd0214..d8305967 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-63-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-63-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"mobile-app-update" +"mobile-app-catalog" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-63-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-63-if.md index 13025567..31e311bf 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-63-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-63-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"mobile-app-update" +"mobile-app-catalog" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-63-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-63-then-allof-0-then.md index c23ab6cc..fc940e66 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-63-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-63-then-allof-0-then.md @@ -10,7 +10,7 @@ unknown ## plan -service plan >standard< for >mobile-app-update< is available in data centers: +service plan >standard< for >mobile-app-catalog< is available in data centers: * {'region': 'ap10', 'name': 'Australia (Sydney)'} * {'region': 'ap11', 'name': 'Singapore'} diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-63-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-63-then.md index 85c255f4..df0124ef 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-63-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-63-then.md @@ -41,7 +41,7 @@ unknown ## name -Mobile App Update: Mobile App Update +Mobile App Catalog: Mobile App Catalog `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-64-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-64-if-properties-name.md index 3d329890..a8dd0214 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-64-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-64-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"mobile-c2g" +"mobile-app-update" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-64-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-64-if.md index 5086ec0e..9d0ca582 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-64-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-64-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"mobile-c2g" +"mobile-app-update" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-64-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-64-then-allof-0-then.md index bb4f14df..28ea535c 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-64-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-64-then-allof-0-then.md @@ -10,7 +10,7 @@ unknown ## plan -service plan >standard< for >mobile-c2g< is available in data centers: +service plan >standard< for >mobile-app-update< is available in data centers: * {'region': 'ap10', 'name': 'Australia (Sydney)'} * {'region': 'ap11', 'name': 'Singapore'} diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-64-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-64-then.md index 35457c3a..4fa18ba2 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-64-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-64-then.md @@ -41,7 +41,7 @@ unknown ## name -Mobile Content: Mobile Content +Mobile App Update: Mobile App Update `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-65-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-65-if-properties-name.md index a34afa32..3d329890 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-65-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-65-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"mobile-cbms" +"mobile-c2g" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-65-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-65-if.md index fa380b9c..da742885 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-65-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-65-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"mobile-cbms" +"mobile-c2g" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-65-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-65-then-allof-0-then.md index 0edf8397..5cbbd60b 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-65-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-65-then-allof-0-then.md @@ -10,7 +10,7 @@ unknown ## plan -service plan >standard< for >mobile-cbms< is available in data centers: +service plan >standard< for >mobile-c2g< is available in data centers: * {'region': 'ap10', 'name': 'Australia (Sydney)'} * {'region': 'ap11', 'name': 'Singapore'} diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-65-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-65-then.md index b221ba48..919ac9a3 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-65-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-65-then.md @@ -41,7 +41,7 @@ unknown ## name -Mobile Cloud Build: Mobile Cloud Build +Mobile Content: Mobile Content `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-66-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-66-if-properties-name.md index 95e9c97f..a34afa32 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-66-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-66-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"mobile-client-log-upload" +"mobile-cbms" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-66-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-66-if.md index 08d6c956..ee3dd48c 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-66-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-66-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"mobile-client-log-upload" +"mobile-cbms" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-66-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-66-then-allof-0-then.md index 7ab44e92..ef3e5055 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-66-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-66-then-allof-0-then.md @@ -10,7 +10,7 @@ unknown ## plan -service plan >standard< for >mobile-client-log-upload< is available in data centers: +service plan >standard< for >mobile-cbms< is available in data centers: * {'region': 'ap10', 'name': 'Australia (Sydney)'} * {'region': 'ap11', 'name': 'Singapore'} diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-66-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-66-then.md index 91ac11e2..283b4890 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-66-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-66-then.md @@ -41,7 +41,7 @@ unknown ## name -Mobile Client Log Upload Service: Mobile Client Log Upload Service +Mobile Cloud Build: Mobile Cloud Build `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-67-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-67-if-properties-name.md index a12b2deb..95e9c97f 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-67-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-67-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"mobile-client-resource" +"mobile-client-log-upload" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-67-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-67-if.md index daa01b06..b7e6d853 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-67-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-67-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"mobile-client-resource" +"mobile-client-log-upload" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-67-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-67-then-allof-0-then.md index fdc75c01..3e8cf8ba 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-67-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-67-then-allof-0-then.md @@ -10,7 +10,7 @@ unknown ## plan -service plan >standard< for >mobile-client-resource< is available in data centers: +service plan >standard< for >mobile-client-log-upload< is available in data centers: * {'region': 'ap10', 'name': 'Australia (Sydney)'} * {'region': 'ap11', 'name': 'Singapore'} diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-67-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-67-then.md index 622057c4..089f3c8b 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-67-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-67-then.md @@ -41,7 +41,7 @@ unknown ## name -Mobile Client Resource Service: Mobile Client Resource Service +Mobile Client Log Upload Service: Mobile Client Log Upload Service `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-68-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-68-if-properties-name.md index 53509f22..a12b2deb 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-68-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-68-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"mobile-client-usage" +"mobile-client-resource" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-68-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-68-if.md index d2dcc808..9a27bca0 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-68-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-68-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"mobile-client-usage" +"mobile-client-resource" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-68-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-68-then-allof-0-then.md index b3a97edf..587273a8 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-68-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-68-then-allof-0-then.md @@ -10,7 +10,7 @@ unknown ## plan -service plan >standard< for >mobile-client-usage< is available in data centers: +service plan >standard< for >mobile-client-resource< is available in data centers: * {'region': 'ap10', 'name': 'Australia (Sydney)'} * {'region': 'ap11', 'name': 'Singapore'} diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-68-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-68-then.md index 61d5947a..6d61bca7 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-68-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-68-then.md @@ -41,7 +41,7 @@ unknown ## name -Mobile Client Usage Service: Mobile Client Usage Service +Mobile Client Resource Service: Mobile Client Resource Service `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-69-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-69-if-properties-name.md index bb14d844..53509f22 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-69-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-69-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"mobile-discovery" +"mobile-client-usage" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-69-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-69-if.md index 8af359fd..2ba7545d 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-69-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-69-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"mobile-discovery" +"mobile-client-usage" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-69-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-69-then-allof-0-then.md index be53eaa0..93d27de8 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-69-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-69-then-allof-0-then.md @@ -10,7 +10,7 @@ unknown ## plan -service plan >standard< for >mobile-discovery< is available in data centers: +service plan >standard< for >mobile-client-usage< is available in data centers: * {'region': 'ap10', 'name': 'Australia (Sydney)'} * {'region': 'ap11', 'name': 'Singapore'} diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-69-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-69-then.md index 436df816..40042d11 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-69-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-69-then.md @@ -41,7 +41,7 @@ unknown ## name -Mobile Discovery: Mobile Discovery +Mobile Client Usage Service: Mobile Client Usage Service `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-70-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-70-if-properties-name.md index ffe13bc7..bb14d844 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-70-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-70-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"mobile-network-trace" +"mobile-discovery" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-70-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-70-if.md index 185afb6e..7dee0096 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-70-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-70-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"mobile-network-trace" +"mobile-discovery" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-70-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-70-then-allof-0-then.md index 956e14fe..bd442c3e 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-70-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-70-then-allof-0-then.md @@ -10,7 +10,7 @@ unknown ## plan -service plan >standard< for >mobile-network-trace< is available in data centers: +service plan >standard< for >mobile-discovery< is available in data centers: * {'region': 'ap10', 'name': 'Australia (Sydney)'} * {'region': 'ap11', 'name': 'Singapore'} diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-70-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-70-then.md index 12ff54e3..9684a5d1 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-70-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-70-then.md @@ -41,7 +41,7 @@ unknown ## name -Mobile Network Trace: Mobile Network Trace +Mobile Discovery: Mobile Discovery `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-71-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-71-if-properties-name.md index 44a50d6b..ffe13bc7 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-71-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-71-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"mobile-offline" +"mobile-network-trace" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-71-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-71-if.md index b2518305..9f447c8b 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-71-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-71-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"mobile-offline" +"mobile-network-trace" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-71-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-71-then-allof-0-then.md index 16765bc1..a3f2afb2 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-71-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-71-then-allof-0-then.md @@ -10,7 +10,7 @@ unknown ## plan -service plan >standard< for >mobile-offline< is available in data centers: +service plan >standard< for >mobile-network-trace< is available in data centers: * {'region': 'ap10', 'name': 'Australia (Sydney)'} * {'region': 'ap11', 'name': 'Singapore'} diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-71-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-71-then.md index b3460664..04dfb9ae 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-71-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-71-then.md @@ -41,7 +41,7 @@ unknown ## name -Mobile Offline: Mobile Offline +Mobile Network Trace: Mobile Network Trace `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-72-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-72-if-properties-name.md index 9a50874f..44a50d6b 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-72-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-72-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"mobile-proxy" +"mobile-offline" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-72-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-72-if.md index eeba7e47..994483f2 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-72-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-72-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"mobile-proxy" +"mobile-offline" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-72-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-72-then-allof-0-then.md index e6b9a231..90aa22eb 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-72-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-72-then-allof-0-then.md @@ -10,7 +10,7 @@ unknown ## plan -service plan >standard< for >mobile-proxy< is available in data centers: +service plan >standard< for >mobile-offline< is available in data centers: * {'region': 'ap10', 'name': 'Australia (Sydney)'} * {'region': 'ap11', 'name': 'Singapore'} diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-72-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-72-then.md index 23f98ff4..6f05a484 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-72-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-72-then.md @@ -41,7 +41,7 @@ unknown ## name -Mobile Connectivity Service: Mobile Connectivity Service +Mobile Offline: Mobile Offline `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-73-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-73-if-properties-name.md index e483f81f..9a50874f 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-73-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-73-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"mobile-push" +"mobile-proxy" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-73-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-73-if.md index 657ddb16..19dec76c 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-73-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-73-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"mobile-push" +"mobile-proxy" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-73-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-73-then-allof-0-then.md index e48bbd74..3413689c 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-73-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-73-then-allof-0-then.md @@ -10,7 +10,7 @@ unknown ## plan -service plan >standard< for >mobile-push< is available in data centers: +service plan >standard< for >mobile-proxy< is available in data centers: * {'region': 'ap10', 'name': 'Australia (Sydney)'} * {'region': 'ap11', 'name': 'Singapore'} diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-73-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-73-then.md index 401448e7..22057366 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-73-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-73-then.md @@ -41,7 +41,7 @@ unknown ## name -Mobile Push Notification: Mobile Push Notification +Mobile Connectivity Service: Mobile Connectivity Service `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-74-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-74-if-properties-name.md index 4789dc75..e483f81f 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-74-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-74-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"mobile-sample-odata-v2-espm" +"mobile-push" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-74-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-74-if.md index ca18de8d..305821cb 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-74-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-74-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"mobile-sample-odata-v2-espm" +"mobile-push" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-74-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-74-then-allof-0-then.md index 4bdbb9f9..0b13cd3d 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-74-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-74-then-allof-0-then.md @@ -10,7 +10,7 @@ unknown ## plan -service plan >standard< for >mobile-sample-odata-v2-espm< is available in data centers: +service plan >standard< for >mobile-push< is available in data centers: * {'region': 'ap10', 'name': 'Australia (Sydney)'} * {'region': 'ap11', 'name': 'Singapore'} diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-74-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-74-then.md index 019d0f83..8daa9260 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-74-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-74-then.md @@ -41,7 +41,7 @@ unknown ## name -Mobile Sample OData: Mobile Sample OData +Mobile Push Notification: Mobile Push Notification `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-75-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-75-if-properties-name.md index 1f81d2bc..4789dc75 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-75-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-75-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"mobile-services" +"mobile-sample-odata-v2-espm" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-75-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-75-if.md index 116db7fe..2fd02645 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-75-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-75-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"mobile-services" +"mobile-sample-odata-v2-espm" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-75-then-allof-0-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-75-then-allof-0-if-properties-plan.md index 6c0d60ad..126392b1 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-75-then-allof-0-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-75-then-allof-0-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"b2c" +"standard" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-75-then-allof-0-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-75-then-allof-0-if.md index 4a34c9dd..b9acce7f 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-75-then-allof-0-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-75-then-allof-0-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"b2c" +"standard" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-75-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-75-then-allof-0-then.md index 801cabac..4ea3c25f 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-75-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-75-then-allof-0-then.md @@ -10,26 +10,14 @@ unknown ## plan -service plan >b2c< for >mobile-services< is available in data centers: +service plan >standard< for >mobile-sample-odata-v2-espm< is available in data centers: * {'region': 'ap10', 'name': 'Australia (Sydney)'} * {'region': 'ap11', 'name': 'Singapore'} -* {'region': 'ap12', 'name': 'South Korea (Seoul)'} -* {'region': 'ap20', 'name': 'Australia (Sydney) Azure'} -* {'region': 'ap21', 'name': 'Singapore'} * {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} -* {'region': 'ca10', 'name': 'Canada (Montreal)'} * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} -* {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} -* {'region': 'eu20', 'name': 'Europe (Netherlands)'} -* {'region': 'eu30', 'name': 'Europe (Frankfurt)'} -* {'region': 'in30', 'name': 'India (Mumbai)'} * {'region': 'jp10', 'name': 'Japan (Tokyo)'} -* {'region': 'jp20', 'name': 'Japan (Tokyo)'} * {'region': 'us10', 'name': 'US East (VA)'} -* {'region': 'us20', 'name': 'US West (WA)'} -* {'region': 'us21', 'name': 'US East (VA)'} -* {'region': 'us30', 'name': 'US Central (IA)'} `plan` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-75-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-75-then-properties-plan.md index 1a8d24fd..248cb3df 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-75-then-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-75-then-properties-plan.md @@ -6,9 +6,6 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :------------ | :---------- | -| `"b2c"` | | -| `"free"` | | -| `"resources"` | | -| `"standard"` | | +| Value | Explanation | +| :----------- | :---------- | +| `"standard"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-75-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-75-then.md index c8628b6c..5e2ae010 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-75-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-75-then.md @@ -6,12 +6,6 @@ all of * [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-75-then-allof-0.md "check type definition") -* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-75-then-allof-1.md "check type definition") - -* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-75-then-allof-2.md "check type definition") - -* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-75-then-allof-3.md "check type definition") - # then Properties | Property | Type | Required | Nullable | Defined by | @@ -41,16 +35,13 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :------------ | :---------- | -| `"b2c"` | | -| `"free"` | | -| `"resources"` | | -| `"standard"` | | +| Value | Explanation | +| :----------- | :---------- | +| `"standard"` | | ## name -SAP Mobile Services: Use Mobile Services to provide mobile access to enterprise information. Key features include app content lifecycle management, push notifications and support for offline apps, app security, app monitoring and usage reporting. Mobile Services can be used for native built apps, Mobile Development Kit apps and SAP Mobile Cards. Get started by clicking on the Support link below. +Mobile Sample OData: Mobile Sample OData `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-76-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-76-if-properties-name.md index 9c567340..1f81d2bc 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-76-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-76-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"mobile-services-preview" +"mobile-services" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-76-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-76-if.md index ad88a862..6c078ce2 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-76-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-76-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"mobile-services-preview" +"mobile-services" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-76-then-allof-0-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-76-then-allof-0-if-properties-plan.md index 126392b1..6c0d60ad 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-76-then-allof-0-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-76-then-allof-0-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"standard" +"b2c" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-76-then-allof-0-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-76-then-allof-0-if.md index 910b2758..25ad6316 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-76-then-allof-0-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-76-then-allof-0-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"standard" +"b2c" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-76-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-76-then-allof-0-then.md index 40f2bc47..0c0a113a 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-76-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-76-then-allof-0-then.md @@ -10,9 +10,27 @@ unknown ## plan -service plan >standard< for >mobile-services-preview< is available in data centers: - +service plan >b2c< for >mobile-services< is available in data centers: + +* {'region': 'ap10', 'name': 'Australia (Sydney)'} +* {'region': 'ap11', 'name': 'Singapore'} +* {'region': 'ap12', 'name': 'South Korea (Seoul)'} +* {'region': 'ap20', 'name': 'Australia (Sydney) Azure'} +* {'region': 'ap21', 'name': 'Singapore'} +* {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} +* {'region': 'ca10', 'name': 'Canada (Montreal)'} +* {'region': 'ch20', 'name': 'cf-ch20'} * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} +* {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} +* {'region': 'eu20', 'name': 'Europe (Netherlands)'} +* {'region': 'eu30', 'name': 'Europe (Frankfurt)'} +* {'region': 'in30', 'name': 'India (Mumbai)'} +* {'region': 'jp10', 'name': 'Japan (Tokyo)'} +* {'region': 'jp20', 'name': 'Japan (Tokyo)'} +* {'region': 'us10', 'name': 'US East (VA)'} +* {'region': 'us20', 'name': 'US West (WA)'} +* {'region': 'us21', 'name': 'US East (VA)'} +* {'region': 'us30', 'name': 'US Central (IA)'} `plan` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-75-then-allof-1-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-76-then-allof-1-if-properties-plan.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-75-then-allof-1-if-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-76-then-allof-1-if-properties-plan.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-75-then-allof-3-if-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-76-then-allof-1-if-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-75-then-allof-3-if-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-76-then-allof-1-if-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-75-then-allof-1-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-76-then-allof-1-if.md similarity index 83% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-75-then-allof-1-if.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-76-then-allof-1-if.md index d2abf05f..6ab0f776 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-75-then-allof-1-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-76-then-allof-1-if.md @@ -6,7 +6,7 @@ unknown | Property | Type | Required | Nullable | Defined by | | :------------ | :------------ | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-75-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/75/then/allOf/1/if/properties/plan") | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-76-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/76/then/allOf/1/if/properties/plan") | ## plan @@ -20,7 +20,7 @@ unknown * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-75-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/75/then/allOf/1/if/properties/plan") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-76-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/76/then/allOf/1/if/properties/plan") ### plan Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-75-then-allof-2-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-76-then-allof-1-then-properties-plan.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-75-then-allof-2-then-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-76-then-allof-1-then-properties-plan.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-75-then-allof-3-then-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-76-then-allof-1-then-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-75-then-allof-3-then-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-76-then-allof-1-then-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-75-then-allof-1-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-76-then-allof-1-then.md similarity index 87% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-75-then-allof-1-then.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-76-then-allof-1-then.md index 6e8f0b1f..53346f13 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-75-then-allof-1-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-76-then-allof-1-then.md @@ -6,7 +6,7 @@ unknown | Property | Type | Required | Nullable | Defined by | | :------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-75-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/75/then/allOf/1/then/properties/plan") | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-76-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/76/then/allOf/1/then/properties/plan") | ## plan @@ -19,6 +19,7 @@ service plan >free< for >mobile-services< is available in data centers: * {'region': 'ap21', 'name': 'Singapore'} * {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} * {'region': 'ca10', 'name': 'Canada (Montreal)'} +* {'region': 'ch20', 'name': 'cf-ch20'} * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} * {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} * {'region': 'eu20', 'name': 'Europe (Netherlands)'} @@ -39,7 +40,7 @@ service plan >free< for >mobile-services< is available in data centers: * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-75-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/75/then/allOf/1/then/properties/plan") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-76-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/76/then/allOf/1/then/properties/plan") ### plan Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-75-then-allof-1.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-76-then-allof-1.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-75-then-allof-1.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-76-then-allof-1.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-75-then-allof-2-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-76-then-allof-2-if-properties-plan.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-75-then-allof-2-if-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-76-then-allof-2-if-properties-plan.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-77-then-allof-1-if-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-76-then-allof-2-if-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-77-then-allof-1-if-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-76-then-allof-2-if-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-75-then-allof-2-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-76-then-allof-2-if.md similarity index 83% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-75-then-allof-2-if.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-76-then-allof-2-if.md index d2023829..21fb349b 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-75-then-allof-2-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-76-then-allof-2-if.md @@ -6,7 +6,7 @@ unknown | Property | Type | Required | Nullable | Defined by | | :------------ | :------------ | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-75-then-allof-2-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/75/then/allOf/2/if/properties/plan") | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-76-then-allof-2-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/76/then/allOf/2/if/properties/plan") | ## plan @@ -20,7 +20,7 @@ unknown * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-75-then-allof-2-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/75/then/allOf/2/if/properties/plan") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-76-then-allof-2-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/76/then/allOf/2/if/properties/plan") ### plan Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-75-then-allof-3-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-76-then-allof-2-then-properties-plan.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-75-then-allof-3-then-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-76-then-allof-2-then-properties-plan.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-77-then-allof-1-then-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-76-then-allof-2-then-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-77-then-allof-1-then-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-76-then-allof-2-then-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-75-then-allof-2-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-76-then-allof-2-then.md similarity index 88% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-75-then-allof-2-then.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-76-then-allof-2-then.md index 8a49bee4..f70171e7 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-75-then-allof-2-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-76-then-allof-2-then.md @@ -6,7 +6,7 @@ unknown | Property | Type | Required | Nullable | Defined by | | :------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-75-then-allof-2-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/75/then/allOf/2/then/properties/plan") | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-76-then-allof-2-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/76/then/allOf/2/then/properties/plan") | ## plan @@ -19,6 +19,7 @@ service plan >resources< for >mobile-services< is available in data centers: * {'region': 'ap21', 'name': 'Singapore'} * {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} * {'region': 'ca10', 'name': 'Canada (Montreal)'} +* {'region': 'ch20', 'name': 'cf-ch20'} * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} * {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} * {'region': 'eu20', 'name': 'Europe (Netherlands)'} @@ -39,7 +40,7 @@ service plan >resources< for >mobile-services< is available in data centers: * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-75-then-allof-2-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/75/then/allOf/2/then/properties/plan") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-76-then-allof-2-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/76/then/allOf/2/then/properties/plan") ### plan Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-75-then-allof-2.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-76-then-allof-2.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-75-then-allof-2.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-76-then-allof-2.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-75-then-allof-3-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-76-then-allof-3-if-properties-plan.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-75-then-allof-3-if-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-76-then-allof-3-if-properties-plan.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-78-then-allof-2-if-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-76-then-allof-3-if-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-78-then-allof-2-if-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-76-then-allof-3-if-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-75-then-allof-3-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-76-then-allof-3-if.md similarity index 83% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-75-then-allof-3-if.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-76-then-allof-3-if.md index e0385920..bcf92bcc 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-75-then-allof-3-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-76-then-allof-3-if.md @@ -6,7 +6,7 @@ unknown | Property | Type | Required | Nullable | Defined by | | :------------ | :------------ | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-75-then-allof-3-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/75/then/allOf/3/if/properties/plan") | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-76-then-allof-3-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/76/then/allOf/3/if/properties/plan") | ## plan @@ -20,7 +20,7 @@ unknown * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-75-then-allof-3-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/75/then/allOf/3/if/properties/plan") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-76-then-allof-3-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/76/then/allOf/3/if/properties/plan") ### plan Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-77-then-allof-1-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-76-then-allof-3-then-properties-plan.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-77-then-allof-1-then-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-76-then-allof-3-then-properties-plan.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-78-then-allof-2-then-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-76-then-allof-3-then-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-78-then-allof-2-then-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-76-then-allof-3-then-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-75-then-allof-3-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-76-then-allof-3-then.md similarity index 88% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-75-then-allof-3-then.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-76-then-allof-3-then.md index 6d126e63..11f7cdff 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-75-then-allof-3-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-76-then-allof-3-then.md @@ -6,7 +6,7 @@ unknown | Property | Type | Required | Nullable | Defined by | | :------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-75-then-allof-3-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/75/then/allOf/3/then/properties/plan") | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-76-then-allof-3-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/76/then/allOf/3/then/properties/plan") | ## plan @@ -19,6 +19,7 @@ service plan >standard< for >mobile-services< is available in data centers: * {'region': 'ap21', 'name': 'Singapore'} * {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} * {'region': 'ca10', 'name': 'Canada (Montreal)'} +* {'region': 'ch20', 'name': 'cf-ch20'} * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} * {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} * {'region': 'eu20', 'name': 'Europe (Netherlands)'} @@ -39,7 +40,7 @@ service plan >standard< for >mobile-services< is available in data centers: * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-75-then-allof-3-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/75/then/allOf/3/then/properties/plan") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-76-then-allof-3-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/76/then/allOf/3/then/properties/plan") ### plan Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-75-then-allof-3.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-76-then-allof-3.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-75-then-allof-3.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-76-then-allof-3.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-76-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-76-then-properties-plan.md index 248cb3df..1a8d24fd 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-76-then-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-76-then-properties-plan.md @@ -6,6 +6,9 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :----------- | :---------- | -| `"standard"` | | +| Value | Explanation | +| :------------ | :---------- | +| `"b2c"` | | +| `"free"` | | +| `"resources"` | | +| `"standard"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-76-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-76-then.md index 0885bb37..113b9094 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-76-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-76-then.md @@ -6,6 +6,12 @@ all of * [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-76-then-allof-0.md "check type definition") +* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-76-then-allof-1.md "check type definition") + +* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-76-then-allof-2.md "check type definition") + +* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-76-then-allof-3.md "check type definition") + # then Properties | Property | Type | Required | Nullable | Defined by | @@ -35,13 +41,16 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :----------- | :---------- | -| `"standard"` | | +| Value | Explanation | +| :------------ | :---------- | +| `"b2c"` | | +| `"free"` | | +| `"resources"` | | +| `"standard"` | | ## name -Mobile Services, preview: Mobile Services Preview gives you an opportunity to test new features a couple of weeks before their production release of Mobile Services. Mobile Services Preview is not intended as a production environment. Use Mobile Services Preview to provide mobile access to enterprise information. Key features include app content lifecycle management, push notifications and support for offline apps, app security, app monitoring and usage reporting. Mobile Services Preview can be used for native built apps, Mobile Development Kit apps and SAP Mobile Cards. Get started by clicking on the Support link below. +SAP Mobile Services: Use Mobile Services to provide mobile access to enterprise information. Key features include app content lifecycle management, push notifications and support for offline apps, app security, app monitoring and usage reporting. Mobile Services can be used for native built apps, Mobile Development Kit apps and SAP Mobile Cards. Get started by clicking on the Support link below. `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-77-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-77-if-properties-name.md index 2d8b3e35..9c567340 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-77-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-77-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"mobile-settings-exchange" +"mobile-services-preview" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-77-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-77-if.md index f74cba09..02bd705f 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-77-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-77-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"mobile-settings-exchange" +"mobile-services-preview" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-77-then-allof-0-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-77-then-allof-0-if-properties-plan.md index 6c0d60ad..126392b1 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-77-then-allof-0-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-77-then-allof-0-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"b2c" +"standard" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-77-then-allof-0-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-77-then-allof-0-if.md index 42f97fe5..663db0ac 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-77-then-allof-0-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-77-then-allof-0-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"b2c" +"standard" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-77-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-77-then-allof-0-then.md index 2c69f510..a3971ecf 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-77-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-77-then-allof-0-then.md @@ -10,14 +10,9 @@ unknown ## plan -service plan >b2c< for >mobile-settings-exchange< is available in data centers: +service plan >standard< for >mobile-services-preview< is available in data centers: -* {'region': 'ap10', 'name': 'Australia (Sydney)'} -* {'region': 'ap11', 'name': 'Singapore'} -* {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} -* {'region': 'jp10', 'name': 'Japan (Tokyo)'} -* {'region': 'us10', 'name': 'US East (VA)'} `plan` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-77-then-allof-1-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-77-then-allof-1-if.md deleted file mode 100644 index 1b0d12bf..00000000 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-77-then-allof-1-if.md +++ /dev/null @@ -1,35 +0,0 @@ -## if Type - -unknown - -# if Properties - -| Property | Type | Required | Nullable | Defined by | -| :------------ | :------------ | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-77-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/77/then/allOf/1/if/properties/plan") | - -## plan - - - -`plan` - -* is optional - -* Type: unknown - -* cannot be null - -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-77-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/77/then/allOf/1/if/properties/plan") - -### plan Type - -unknown - -### plan Constraints - -**constant**: the value of this property must be equal to: - -```json -"standard" -``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-77-then-allof-1-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-77-then-allof-1-then.md deleted file mode 100644 index 90ca731c..00000000 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-77-then-allof-1-then.md +++ /dev/null @@ -1,34 +0,0 @@ -## then Type - -unknown - -# then Properties - -| Property | Type | Required | Nullable | Defined by | -| :------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-77-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/77/then/allOf/1/then/properties/plan") | - -## plan - -service plan >standard< for >mobile-settings-exchange< is available in data centers: - -* {'region': 'ap10', 'name': 'Australia (Sydney)'} -* {'region': 'ap11', 'name': 'Singapore'} -* {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} -* {'region': 'eu10', 'name': 'Europe (Frankfurt)'} -* {'region': 'jp10', 'name': 'Japan (Tokyo)'} -* {'region': 'us10', 'name': 'US East (VA)'} - -`plan` - -* is optional - -* Type: unknown - -* cannot be null - -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-77-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/77/then/allOf/1/then/properties/plan") - -### plan Type - -unknown diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-77-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-77-then-properties-plan.md index a0720f73..248cb3df 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-77-then-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-77-then-properties-plan.md @@ -8,5 +8,4 @@ unknown | Value | Explanation | | :----------- | :---------- | -| `"b2c"` | | | `"standard"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-77-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-77-then.md index 1b74551b..c58975d1 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-77-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-77-then.md @@ -6,8 +6,6 @@ all of * [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-77-then-allof-0.md "check type definition") -* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-77-then-allof-1.md "check type definition") - # then Properties | Property | Type | Required | Nullable | Defined by | @@ -39,12 +37,11 @@ unknown | Value | Explanation | | :----------- | :---------- | -| `"b2c"` | | | `"standard"` | | ## name -Mobile Settings Exchange Service: Mobile Settings Exchange Service +Mobile Services, preview: Mobile Services Preview gives you an opportunity to test new features a couple of weeks before their production release of Mobile Services. Mobile Services Preview is not intended as a production environment. Use Mobile Services Preview to provide mobile access to enterprise information. Key features include app content lifecycle management, push notifications and support for offline apps, app security, app monitoring and usage reporting. Mobile Services Preview can be used for native built apps, Mobile Development Kit apps and SAP Mobile Cards. Get started by clicking on the Support link below. `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-78-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-78-if-properties-name.md index 6dca40c6..2d8b3e35 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-78-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-78-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"objectstore" +"mobile-settings-exchange" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-78-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-78-if.md index 94416f6d..40e27e11 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-78-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-78-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"objectstore" +"mobile-settings-exchange" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-78-then-allof-0-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-78-then-allof-0-if-properties-plan.md index 076001c7..6c0d60ad 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-78-then-allof-0-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-78-then-allof-0-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"azure-standard" +"b2c" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-78-then-allof-0-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-78-then-allof-0-if.md index e67e0f18..0322ddc4 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-78-then-allof-0-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-78-then-allof-0-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"azure-standard" +"b2c" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-78-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-78-then-allof-0-then.md index d33a5f71..b3339da9 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-78-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-78-then-allof-0-then.md @@ -10,15 +10,14 @@ unknown ## plan -service plan >azure-standard< for >objectstore< is available in data centers: - -* {'region': 'ap20', 'name': 'Australia (Sydney) Azure'} -* {'region': 'ap21', 'name': 'Singapore'} -* {'region': 'ch20', 'name': 'cf-ch20'} -* {'region': 'eu20', 'name': 'Europe (Netherlands)'} -* {'region': 'jp20', 'name': 'Japan (Tokyo)'} -* {'region': 'us20', 'name': 'US West (WA)'} -* {'region': 'us21', 'name': 'US East (VA)'} +service plan >b2c< for >mobile-settings-exchange< is available in data centers: + +* {'region': 'ap10', 'name': 'Australia (Sydney)'} +* {'region': 'ap11', 'name': 'Singapore'} +* {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} +* {'region': 'eu10', 'name': 'Europe (Frankfurt)'} +* {'region': 'jp10', 'name': 'Japan (Tokyo)'} +* {'region': 'us10', 'name': 'US East (VA)'} `plan` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-78-then-allof-1-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-78-then-allof-1-if-properties-plan.md index d5733f7e..126392b1 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-78-then-allof-1-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-78-then-allof-1-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"gcs-standard" +"standard" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-78-then-allof-1-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-78-then-allof-1-if.md index e68a8209..e1b597f7 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-78-then-allof-1-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-78-then-allof-1-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"gcs-standard" +"standard" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-78-then-allof-1-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-78-then-allof-1-then.md index 8ba72c3e..2d389931 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-78-then-allof-1-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-78-then-allof-1-then.md @@ -10,11 +10,14 @@ unknown ## plan -service plan >gcs-standard< for >objectstore< is available in data centers: - -* {'region': 'eu30', 'name': 'Europe (Frankfurt)'} -* {'region': 'in30', 'name': 'India (Mumbai)'} -* {'region': 'us30', 'name': 'US Central (IA)'} +service plan >standard< for >mobile-settings-exchange< is available in data centers: + +* {'region': 'ap10', 'name': 'Australia (Sydney)'} +* {'region': 'ap11', 'name': 'Singapore'} +* {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} +* {'region': 'eu10', 'name': 'Europe (Frankfurt)'} +* {'region': 'jp10', 'name': 'Japan (Tokyo)'} +* {'region': 'us10', 'name': 'US East (VA)'} `plan` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-78-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-78-then-properties-plan.md index 0528f920..a0720f73 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-78-then-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-78-then-properties-plan.md @@ -6,8 +6,7 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :----------------- | :---------- | -| `"azure-standard"` | | -| `"gcs-standard"` | | -| `"s3-standard"` | | +| Value | Explanation | +| :----------- | :---------- | +| `"b2c"` | | +| `"standard"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-78-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-78-then.md index a0361070..f6388935 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-78-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-78-then.md @@ -8,8 +8,6 @@ all of * [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-78-then-allof-1.md "check type definition") -* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-78-then-allof-2.md "check type definition") - # then Properties | Property | Type | Required | Nullable | Defined by | @@ -39,15 +37,14 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :----------------- | :---------- | -| `"azure-standard"` | | -| `"gcs-standard"` | | -| `"s3-standard"` | | +| Value | Explanation | +| :----------- | :---------- | +| `"b2c"` | | +| `"standard"` | | ## name -Object Store on SAP BTP: Object Store service on SAP BTP lets you store and manage objects, which involves creation, upload, download, and deletion. This service is specific to the IaaS layer such as Azure Blob Storage, Amazon Web Services, and Google Cloud Platform. +Mobile Settings Exchange Service: Mobile Settings Exchange Service `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-79-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-79-if-properties-name.md index 12ea36b6..6dca40c6 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-79-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-79-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"one-inbox-service" +"objectstore" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-79-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-79-if.md index a9fe843f..69c7cc6b 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-79-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-79-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"one-inbox-service" +"objectstore" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-79-then-allof-0-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-79-then-allof-0-if-properties-plan.md index 126392b1..076001c7 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-79-then-allof-0-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-79-then-allof-0-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"standard" +"azure-standard" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-79-then-allof-0-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-79-then-allof-0-if.md index 3907334d..77811379 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-79-then-allof-0-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-79-then-allof-0-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"standard" +"azure-standard" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-79-then-allof-0-then-properties-parameters.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-79-then-allof-0-then-properties-parameters.md deleted file mode 100644 index 6baf2105..00000000 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-79-then-allof-0-then-properties-parameters.md +++ /dev/null @@ -1,55 +0,0 @@ -## parameters Type - -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-79-then-allof-0-then-properties-parameters.md)) - -# parameters Properties - -| Property | Type | Required | Nullable | Defined by | -| :------------------------------------------------------------ | :------- | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| [authorities](#authorities) | `array` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-79-then-allof-0-then-properties-parameters-properties-authorities.md "undefined#/properties/services/items/allOf/1/then/allOf/79/then/allOf/0/then/properties/parameters/properties/authorities") | -| [defaultCollectionQueryFilter](#defaultcollectionqueryfilter) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-79-then-allof-0-then-properties-parameters-properties-defaultcollectionqueryfilter.md "undefined#/properties/services/items/allOf/1/then/allOf/79/then/allOf/0/then/properties/parameters/properties/defaultCollectionQueryFilter") | - -## authorities - -Configures scopes that are available in the client credentials flow. - -`authorities` - -* is optional - -* Type: `string[]` - -* cannot be null - -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-79-then-allof-0-then-properties-parameters-properties-authorities.md "undefined#/properties/services/items/allOf/1/then/allOf/79/then/allOf/0/then/properties/parameters/properties/authorities") - -### authorities Type - -`string[]` - -## defaultCollectionQueryFilter - -Configures the default behavior of queries that return a collection of Workflow entities. - -`defaultCollectionQueryFilter` - -* is optional - -* Type: `string` - -* cannot be null - -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-79-then-allof-0-then-properties-parameters-properties-defaultcollectionqueryfilter.md "undefined#/properties/services/items/allOf/1/then/allOf/79/then/allOf/0/then/properties/parameters/properties/defaultCollectionQueryFilter") - -### defaultCollectionQueryFilter Type - -`string` - -### defaultCollectionQueryFilter Constraints - -**enum**: the value of this property must be equal to one of the following values: - -| Value | Explanation | -| :--------- | :---------- | -| `"own"` | | -| `"shared"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-79-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-79-then-allof-0-then.md index 74c89cdf..fe1944bb 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-79-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-79-then-allof-0-then.md @@ -4,29 +4,21 @@ unknown # then Properties -| Property | Type | Required | Nullable | Defined by | -| :------------------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-79-then-allof-0-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/79/then/allOf/0/then/properties/plan") | -| [parameters](#parameters) | `object` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-79-then-allof-0-then-properties-parameters.md "undefined#/properties/services/items/allOf/1/then/allOf/79/then/allOf/0/then/properties/parameters") | +| Property | Type | Required | Nullable | Defined by | +| :------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-79-then-allof-0-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/79/then/allOf/0/then/properties/plan") | ## plan -service plan >standard< for >one-inbox-service< is available in data centers: +service plan >azure-standard< for >objectstore< is available in data centers: -* {'region': 'ap10', 'name': 'Australia (Sydney)'} * {'region': 'ap20', 'name': 'Australia (Sydney) Azure'} -* {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} -* {'region': 'ca10', 'name': 'Canada (Montreal)'} -* {'region': 'eu10', 'name': 'Europe (Frankfurt)'} -* {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} +* {'region': 'ap21', 'name': 'Singapore'} +* {'region': 'ch20', 'name': 'cf-ch20'} * {'region': 'eu20', 'name': 'Europe (Netherlands)'} -* {'region': 'eu30', 'name': 'Europe (Frankfurt)'} -* {'region': 'jp10', 'name': 'Japan (Tokyo)'} * {'region': 'jp20', 'name': 'Japan (Tokyo)'} -* {'region': 'us10', 'name': 'US East (VA)'} * {'region': 'us20', 'name': 'US West (WA)'} * {'region': 'us21', 'name': 'US East (VA)'} -* {'region': 'us30', 'name': 'US Central (IA)'} `plan` @@ -41,21 +33,3 @@ service plan >standard< for >one-inbox-service< is available in data centers: ### plan Type unknown - -## parameters - - - -`parameters` - -* is required - -* Type: `object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-79-then-allof-0-then-properties-parameters.md)) - -* cannot be null - -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-79-then-allof-0-then-properties-parameters.md "undefined#/properties/services/items/allOf/1/then/allOf/79/then/allOf/0/then/properties/parameters") - -### parameters Type - -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-79-then-allof-0-then-properties-parameters.md)) diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-79-then-allof-1-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-79-then-allof-1-if-properties-plan.md new file mode 100644 index 00000000..d5733f7e --- /dev/null +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-79-then-allof-1-if-properties-plan.md @@ -0,0 +1,11 @@ +## plan Type + +unknown + +## plan Constraints + +**constant**: the value of this property must be equal to: + +```json +"gcs-standard" +``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-allof-1-if-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-79-then-allof-1-if-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-allof-1-if-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-79-then-allof-1-if-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-79-then-allof-1-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-79-then-allof-1-if.md new file mode 100644 index 00000000..2e53648f --- /dev/null +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-79-then-allof-1-if.md @@ -0,0 +1,35 @@ +## if Type + +unknown + +# if Properties + +| Property | Type | Required | Nullable | Defined by | +| :------------ | :------------ | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-79-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/79/then/allOf/1/if/properties/plan") | + +## plan + + + +`plan` + +* is optional + +* Type: unknown + +* cannot be null + +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-79-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/79/then/allOf/1/if/properties/plan") + +### plan Type + +unknown + +### plan Constraints + +**constant**: the value of this property must be equal to: + +```json +"gcs-standard" +``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-78-then-allof-2-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-79-then-allof-1-then-properties-plan.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-78-then-allof-2-then-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-79-then-allof-1-then-properties-plan.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-allof-1-then-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-79-then-allof-1-then-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-allof-1-then-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-79-then-allof-1-then-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-52-then-allof-1-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-79-then-allof-1-then.md similarity index 69% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-52-then-allof-1-then.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-79-then-allof-1-then.md index 92d4aeb5..2000712c 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-52-then-allof-1-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-79-then-allof-1-then.md @@ -6,14 +6,15 @@ unknown | Property | Type | Required | Nullable | Defined by | | :------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-52-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/52/then/allOf/1/then/properties/plan") | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-79-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/79/then/allOf/1/then/properties/plan") | ## plan -service plan >standard< for >iotae< is available in data centers: +service plan >gcs-standard< for >objectstore< is available in data centers: -* {'region': 'eu10', 'name': 'Europe (Frankfurt)'} -* {'region': 'eu20', 'name': 'Europe (Netherlands)'} +* {'region': 'eu30', 'name': 'Europe (Frankfurt)'} +* {'region': 'in30', 'name': 'India (Mumbai)'} +* {'region': 'us30', 'name': 'US Central (IA)'} `plan` @@ -23,7 +24,7 @@ service plan >standard< for >iotae< is available in data centers: * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-52-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/52/then/allOf/1/then/properties/plan") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-79-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/79/then/allOf/1/then/properties/plan") ### plan Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-77-then-allof-1.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-79-then-allof-1.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-77-then-allof-1.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-79-then-allof-1.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-78-then-allof-2-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-79-then-allof-2-if-properties-plan.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-78-then-allof-2-if-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-79-then-allof-2-if-properties-plan.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-83-then-allof-1-if-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-79-then-allof-2-if-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-83-then-allof-1-if-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-79-then-allof-2-if-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-78-then-allof-2-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-79-then-allof-2-if.md similarity index 83% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-78-then-allof-2-if.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-79-then-allof-2-if.md index 24d2b090..78d2bb57 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-78-then-allof-2-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-79-then-allof-2-if.md @@ -6,7 +6,7 @@ unknown | Property | Type | Required | Nullable | Defined by | | :------------ | :------------ | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-78-then-allof-2-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/78/then/allOf/2/if/properties/plan") | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-79-then-allof-2-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/79/then/allOf/2/if/properties/plan") | ## plan @@ -20,7 +20,7 @@ unknown * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-78-then-allof-2-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/78/then/allOf/2/if/properties/plan") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-79-then-allof-2-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/79/then/allOf/2/if/properties/plan") ### plan Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-allof-1-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-79-then-allof-2-then-properties-plan.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-allof-1-then-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-79-then-allof-2-then-properties-plan.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-83-then-allof-1-then-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-79-then-allof-2-then-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-83-then-allof-1-then-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-79-then-allof-2-then-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-78-then-allof-2-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-79-then-allof-2-then.md similarity index 87% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-78-then-allof-2-then.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-79-then-allof-2-then.md index 9ade6aa4..fb1f088e 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-78-then-allof-2-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-79-then-allof-2-then.md @@ -6,7 +6,7 @@ unknown | Property | Type | Required | Nullable | Defined by | | :------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-78-then-allof-2-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/78/then/allOf/2/then/properties/plan") | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-79-then-allof-2-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/79/then/allOf/2/then/properties/plan") | ## plan @@ -30,7 +30,7 @@ service plan >s3-standard< for >objectstore< is available in data centers: * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-78-then-allof-2-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/78/then/allOf/2/then/properties/plan") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-79-then-allof-2-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/79/then/allOf/2/then/properties/plan") ### plan Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-78-then-allof-2.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-79-then-allof-2.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-78-then-allof-2.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-79-then-allof-2.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-79-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-79-then-properties-plan.md index 248cb3df..0528f920 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-79-then-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-79-then-properties-plan.md @@ -6,6 +6,8 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :----------- | :---------- | -| `"standard"` | | +| Value | Explanation | +| :----------------- | :---------- | +| `"azure-standard"` | | +| `"gcs-standard"` | | +| `"s3-standard"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-79-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-79-then.md index 5ffb965a..3d937437 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-79-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-79-then.md @@ -6,6 +6,10 @@ all of * [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-79-then-allof-0.md "check type definition") +* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-79-then-allof-1.md "check type definition") + +* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-79-then-allof-2.md "check type definition") + # then Properties | Property | Type | Required | Nullable | Defined by | @@ -35,13 +39,15 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :----------- | :---------- | -| `"standard"` | | +| Value | Explanation | +| :----------------- | :---------- | +| `"azure-standard"` | | +| `"gcs-standard"` | | +| `"s3-standard"` | | ## name -SAP Task Center: The SAP Task Center service enables integration with SAP applications to provide a single entry point for end users to access all their assigned approval tasks. The tasks can be accessed by end users through the SAP Task Center Web application. +Object Store on SAP BTP: Object Store service on SAP BTP lets you store and manage objects, which involves creation, upload, download, and deletion. This service is specific to the IaaS layer such as Azure Blob Storage, Amazon Web Services, and Google Cloud Platform. `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-80-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-80-if-properties-name.md index 240c0f8e..12ea36b6 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-80-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-80-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"one-mds" +"one-inbox-service" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-80-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-80-if.md index 47870aa0..a6ab6e2b 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-80-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-80-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"one-mds" +"one-inbox-service" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-allof-0-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-allof-0-if-properties-plan.md index 5ade1e58..126392b1 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-allof-0-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-allof-0-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"s4hana-onpremise" +"standard" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-allof-0-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-allof-0-if.md index 468bdd22..6b6a066b 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-allof-0-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-allof-0-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"s4hana-onpremise" +"standard" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-79-then-allof-0-then-properties-parameters-properties-authorities-items.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-allof-0-then-properties-parameters-properties-authorities-items.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-79-then-allof-0-then-properties-parameters-properties-authorities-items.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-allof-0-then-properties-parameters-properties-authorities-items.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-79-then-allof-0-then-properties-parameters-properties-authorities.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-allof-0-then-properties-parameters-properties-authorities.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-79-then-allof-0-then-properties-parameters-properties-authorities.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-allof-0-then-properties-parameters-properties-authorities.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-79-then-allof-0-then-properties-parameters-properties-defaultcollectionqueryfilter.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-allof-0-then-properties-parameters-properties-defaultcollectionqueryfilter.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-79-then-allof-0-then-properties-parameters-properties-defaultcollectionqueryfilter.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-allof-0-then-properties-parameters-properties-defaultcollectionqueryfilter.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-allof-0-then-properties-parameters.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-allof-0-then-properties-parameters.md index 86f699db..f92c2abb 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-allof-0-then-properties-parameters.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-allof-0-then-properties-parameters.md @@ -4,93 +4,34 @@ # parameters Properties -| Property | Type | Required | Nullable | Defined by | -| :-------------------------------------------- | :-------- | :------- | :------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [businessSystemId](#businesssystemid) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-allof-0-then-properties-parameters-properties-businesssystemid.md "undefined#/properties/services/items/allOf/1/then/allOf/80/then/allOf/0/then/properties/parameters/properties/businessSystemId") | -| [enableTenantDeletion](#enabletenantdeletion) | `boolean` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-allof-0-then-properties-parameters-properties-enabletenantdeletion.md "undefined#/properties/services/items/allOf/1/then/allOf/80/then/allOf/0/then/properties/parameters/properties/enableTenantDeletion") | -| [globalTenantId](#globaltenantid) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-allof-0-then-properties-parameters-properties-globaltenantid.md "undefined#/properties/services/items/allOf/1/then/allOf/80/then/allOf/0/then/properties/parameters/properties/globalTenantId") | -| [logSys](#logsys) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-allof-0-then-properties-parameters-properties-logsys.md "undefined#/properties/services/items/allOf/1/then/allOf/80/then/allOf/0/then/properties/parameters/properties/logSys") | -| [writePermissions](#writepermissions) | `array` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-allof-0-then-properties-parameters-properties-writepermissions.md "undefined#/properties/services/items/allOf/1/then/allOf/80/then/allOf/0/then/properties/parameters/properties/writePermissions") | +| Property | Type | Required | Nullable | Defined by | +| :------------------------------------------------------------ | :------- | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| [authorities](#authorities) | `array` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-allof-0-then-properties-parameters-properties-authorities.md "undefined#/properties/services/items/allOf/1/then/allOf/80/then/allOf/0/then/properties/parameters/properties/authorities") | +| [defaultCollectionQueryFilter](#defaultcollectionqueryfilter) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-allof-0-then-properties-parameters-properties-defaultcollectionqueryfilter.md "undefined#/properties/services/items/allOf/1/then/allOf/80/then/allOf/0/then/properties/parameters/properties/defaultCollectionQueryFilter") | -## businessSystemId +## authorities -Name to be displayed in SAP Master Data Orchestration UI. If not provided, a random UUID will be assigned. +Configures scopes that are available in the client credentials flow. -`businessSystemId` +`authorities` * is optional -* Type: `string` - -* cannot be null - -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-allof-0-then-properties-parameters-properties-businesssystemid.md "undefined#/properties/services/items/allOf/1/then/allOf/80/then/allOf/0/then/properties/parameters/properties/businessSystemId") - -### businessSystemId Type - -`string` - -### businessSystemId Constraints - -**pattern**: the string must match the following regular expression: - -```regexp -^.{1,60}$ -``` - -[try pattern](https://regexr.com/?expression=%5E.%7B1%2C60%7D%24 "try regular expression with regexr.com") - -## enableTenantDeletion - -Boolean flag to be set to true for confirming deletion of last service instance for the tenant. - -`enableTenantDeletion` - -* is optional - -* Type: `boolean` - -* cannot be null - -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-allof-0-then-properties-parameters-properties-enabletenantdeletion.md "undefined#/properties/services/items/allOf/1/then/allOf/80/then/allOf/0/then/properties/parameters/properties/enableTenantDeletion") - -### enableTenantDeletion Type - -`boolean` - -## globalTenantId - -A name for the last significant writer (client) following the Globally Unique Tenant ID (GTID) specification. - -`globalTenantId` - -* is optional - -* Type: `string` +* Type: `string[]` * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-allof-0-then-properties-parameters-properties-globaltenantid.md "undefined#/properties/services/items/allOf/1/then/allOf/80/then/allOf/0/then/properties/parameters/properties/globalTenantId") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-allof-0-then-properties-parameters-properties-authorities.md "undefined#/properties/services/items/allOf/1/then/allOf/80/then/allOf/0/then/properties/parameters/properties/authorities") -### globalTenantId Type +### authorities Type -`string` - -### globalTenantId Constraints - -**pattern**: the string must match the following regular expression: +`string[]` -```regexp -^[A-Za-z0-9-._~]{1,40}$ -``` +## defaultCollectionQueryFilter -[try pattern](https://regexr.com/?expression=%5E%5BA-Za-z0-9-._~%5D%7B1%2C40%7D%24 "try regular expression with regexr.com") +Configures the default behavior of queries that return a collection of Workflow entities. -## logSys - -The logical system. - -`logSys` +`defaultCollectionQueryFilter` * is optional @@ -98,36 +39,17 @@ The logical system. * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-allof-0-then-properties-parameters-properties-logsys.md "undefined#/properties/services/items/allOf/1/then/allOf/80/then/allOf/0/then/properties/parameters/properties/logSys") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-allof-0-then-properties-parameters-properties-defaultcollectionqueryfilter.md "undefined#/properties/services/items/allOf/1/then/allOf/80/then/allOf/0/then/properties/parameters/properties/defaultCollectionQueryFilter") -### logSys Type +### defaultCollectionQueryFilter Type `string` -### logSys Constraints - -**pattern**: the string must match the following regular expression: - -```regexp -^.{1,10}$ -``` - -[try pattern](https://regexr.com/?expression=%5E.%7B1%2C10%7D%24 "try regular expression with regexr.com") - -## writePermissions - -Array of entities the service instance has write permission for - -`writePermissions` - -* is optional - -* Type: `object[]` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-allof-0-then-properties-parameters-properties-writepermissions-items.md)) - -* cannot be null - -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-allof-0-then-properties-parameters-properties-writepermissions.md "undefined#/properties/services/items/allOf/1/then/allOf/80/then/allOf/0/then/properties/parameters/properties/writePermissions") +### defaultCollectionQueryFilter Constraints -### writePermissions Type +**enum**: the value of this property must be equal to one of the following values: -`object[]` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-allof-0-then-properties-parameters-properties-writepermissions-items.md)) +| Value | Explanation | +| :--------- | :---------- | +| `"own"` | | +| `"shared"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-allof-0-then.md index dbdd6cd8..9d0a9756 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-allof-0-then.md @@ -11,13 +11,22 @@ unknown ## plan -service plan >s4hana-onpremise< for >one-mds< is available in data centers: +service plan >standard< for >one-inbox-service< is available in data centers: * {'region': 'ap10', 'name': 'Australia (Sydney)'} -* {'region': 'ap11', 'name': 'Singapore'} +* {'region': 'ap20', 'name': 'Australia (Sydney) Azure'} +* {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} +* {'region': 'ca10', 'name': 'Canada (Montreal)'} * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} * {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} +* {'region': 'eu20', 'name': 'Europe (Netherlands)'} +* {'region': 'eu30', 'name': 'Europe (Frankfurt)'} +* {'region': 'jp10', 'name': 'Japan (Tokyo)'} +* {'region': 'jp20', 'name': 'Japan (Tokyo)'} * {'region': 'us10', 'name': 'US East (VA)'} +* {'region': 'us20', 'name': 'US West (WA)'} +* {'region': 'us21', 'name': 'US East (VA)'} +* {'region': 'us30', 'name': 'US Central (IA)'} `plan` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-allof-1-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-allof-1-if-properties-plan.md deleted file mode 100644 index 206a15ef..00000000 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-allof-1-if-properties-plan.md +++ /dev/null @@ -1,11 +0,0 @@ -## plan Type - -unknown - -## plan Constraints - -**constant**: the value of this property must be equal to: - -```json -"sap-integration" -``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-allof-1-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-allof-1-if.md deleted file mode 100644 index 8d077421..00000000 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-allof-1-if.md +++ /dev/null @@ -1,35 +0,0 @@ -## if Type - -unknown - -# if Properties - -| Property | Type | Required | Nullable | Defined by | -| :------------ | :------------ | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/80/then/allOf/1/if/properties/plan") | - -## plan - - - -`plan` - -* is optional - -* Type: unknown - -* cannot be null - -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/80/then/allOf/1/if/properties/plan") - -### plan Type - -unknown - -### plan Constraints - -**constant**: the value of this property must be equal to: - -```json -"sap-integration" -``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-allof-1-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-allof-1-then.md deleted file mode 100644 index b5856de7..00000000 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-allof-1-then.md +++ /dev/null @@ -1,52 +0,0 @@ -## then Type - -unknown - -# then Properties - -| Property | Type | Required | Nullable | Defined by | -| :------------------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/80/then/allOf/1/then/properties/plan") | -| [parameters](#parameters) | `object` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-allof-1-then-properties-parameters.md "undefined#/properties/services/items/allOf/1/then/allOf/80/then/allOf/1/then/properties/parameters") | - -## plan - -service plan >sap-integration< for >one-mds< is available in data centers: - -* {'region': 'ap10', 'name': 'Australia (Sydney)'} -* {'region': 'ap11', 'name': 'Singapore'} -* {'region': 'eu10', 'name': 'Europe (Frankfurt)'} -* {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} -* {'region': 'us10', 'name': 'US East (VA)'} - -`plan` - -* is optional - -* Type: unknown - -* cannot be null - -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/80/then/allOf/1/then/properties/plan") - -### plan Type - -unknown - -## parameters - - - -`parameters` - -* is required - -* Type: `object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-allof-1-then-properties-parameters.md)) - -* cannot be null - -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-allof-1-then-properties-parameters.md "undefined#/properties/services/items/allOf/1/then/allOf/80/then/allOf/1/then/properties/parameters") - -### parameters Type - -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-allof-1-then-properties-parameters.md)) diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-properties-plan.md index b1eb4f29..248cb3df 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-properties-plan.md @@ -6,7 +6,6 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :------------------- | :---------- | -| `"s4hana-onpremise"` | | -| `"sap-integration"` | | +| Value | Explanation | +| :----------- | :---------- | +| `"standard"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-80-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-80-then.md index 565632b5..baedd12d 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-80-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-80-then.md @@ -6,8 +6,6 @@ all of * [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-allof-0.md "check type definition") -* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-allof-1.md "check type definition") - # then Properties | Property | Type | Required | Nullable | Defined by | @@ -37,14 +35,13 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :------------------- | :---------- | -| `"s4hana-onpremise"` | | -| `"sap-integration"` | | +| Value | Explanation | +| :----------- | :---------- | +| `"standard"` | | ## name -SAP Master Data Integration: SAP Business Technology Platform Master Data Integration service offers master data synchronization across SAP solutions and is a central access layer for data sharing and distribution. The service can only be used for SAP to SAP Integration, and must not be directly accessed for 3rd party master data integration scenarios with SAP. SAP Business Technology Platform Master Data Orchestration is part of the master data integration service, and can only be used in conjunction with SAP Master Data Integration service. +SAP Task Center: The SAP Task Center service enables integration with SAP applications to provide a single entry point for end users to access all their assigned approval tasks. The tasks can be accessed by end users through the SAP Task Center Web application. `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-81-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-81-if-properties-name.md index d48c5fe8..240c0f8e 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-81-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-81-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"personal-data-manager-service" +"one-mds" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-81-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-81-if.md index 19e9fbe8..4b524247 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-81-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-81-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"personal-data-manager-service" +"one-mds" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-81-then-allof-0-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-81-then-allof-0-if-properties-plan.md index c97f5143..5ade1e58 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-81-then-allof-0-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-81-then-allof-0-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"free" +"s4hana-onpremise" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-81-then-allof-0-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-81-then-allof-0-if.md index d056ec84..f71832ce 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-81-then-allof-0-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-81-then-allof-0-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"free" +"s4hana-onpremise" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-allof-0-then-properties-parameters-properties-businesssystemid.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-81-then-allof-0-then-properties-parameters-properties-businesssystemid.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-allof-0-then-properties-parameters-properties-businesssystemid.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-81-then-allof-0-then-properties-parameters-properties-businesssystemid.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-allof-0-then-properties-parameters-properties-enabletenantdeletion.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-81-then-allof-0-then-properties-parameters-properties-enabletenantdeletion.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-allof-0-then-properties-parameters-properties-enabletenantdeletion.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-81-then-allof-0-then-properties-parameters-properties-enabletenantdeletion.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-allof-0-then-properties-parameters-properties-globaltenantid.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-81-then-allof-0-then-properties-parameters-properties-globaltenantid.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-allof-0-then-properties-parameters-properties-globaltenantid.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-81-then-allof-0-then-properties-parameters-properties-globaltenantid.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-allof-0-then-properties-parameters-properties-logsys.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-81-then-allof-0-then-properties-parameters-properties-logsys.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-allof-0-then-properties-parameters-properties-logsys.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-81-then-allof-0-then-properties-parameters-properties-logsys.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-allof-0-then-properties-parameters-properties-writepermissions-items-properties-entitytype.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-81-then-allof-0-then-properties-parameters-properties-writepermissions-items-properties-entitytype.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-allof-0-then-properties-parameters-properties-writepermissions-items-properties-entitytype.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-81-then-allof-0-then-properties-parameters-properties-writepermissions-items-properties-entitytype.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-allof-0-then-properties-parameters-properties-writepermissions-items.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-81-then-allof-0-then-properties-parameters-properties-writepermissions-items.md similarity index 84% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-allof-0-then-properties-parameters-properties-writepermissions-items.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-81-then-allof-0-then-properties-parameters-properties-writepermissions-items.md index 813244af..6904b7a2 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-allof-0-then-properties-parameters-properties-writepermissions-items.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-81-then-allof-0-then-properties-parameters-properties-writepermissions-items.md @@ -1,12 +1,12 @@ ## items Type -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-allof-0-then-properties-parameters-properties-writepermissions-items.md)) +`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-81-then-allof-0-then-properties-parameters-properties-writepermissions-items.md)) # items Properties | Property | Type | Required | Nullable | Defined by | | :------------------------ | :------- | :------- | :------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [entityType](#entitytype) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-allof-0-then-properties-parameters-properties-writepermissions-items-properties-entitytype.md "undefined#/properties/services/items/allOf/1/then/allOf/80/then/allOf/0/then/properties/parameters/properties/writePermissions/items/properties/entityType") | +| [entityType](#entitytype) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-81-then-allof-0-then-properties-parameters-properties-writepermissions-items-properties-entitytype.md "undefined#/properties/services/items/allOf/1/then/allOf/81/then/allOf/0/then/properties/parameters/properties/writePermissions/items/properties/entityType") | ## entityType @@ -20,7 +20,7 @@ * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-allof-0-then-properties-parameters-properties-writepermissions-items-properties-entitytype.md "undefined#/properties/services/items/allOf/1/then/allOf/80/then/allOf/0/then/properties/parameters/properties/writePermissions/items/properties/entityType") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-81-then-allof-0-then-properties-parameters-properties-writepermissions-items-properties-entitytype.md "undefined#/properties/services/items/allOf/1/then/allOf/81/then/allOf/0/then/properties/parameters/properties/writePermissions/items/properties/entityType") ### entityType Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-allof-0-then-properties-parameters-properties-writepermissions.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-81-then-allof-0-then-properties-parameters-properties-writepermissions.md similarity index 66% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-allof-0-then-properties-parameters-properties-writepermissions.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-81-then-allof-0-then-properties-parameters-properties-writepermissions.md index 4ecba9e4..b6367f47 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-allof-0-then-properties-parameters-properties-writepermissions.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-81-then-allof-0-then-properties-parameters-properties-writepermissions.md @@ -1,3 +1,3 @@ ## writePermissions Type -`object[]` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-allof-0-then-properties-parameters-properties-writepermissions-items.md)) +`object[]` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-81-then-allof-0-then-properties-parameters-properties-writepermissions-items.md)) diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-81-then-allof-0-then-properties-parameters.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-81-then-allof-0-then-properties-parameters.md new file mode 100644 index 00000000..8e997eca --- /dev/null +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-81-then-allof-0-then-properties-parameters.md @@ -0,0 +1,133 @@ +## parameters Type + +`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-81-then-allof-0-then-properties-parameters.md)) + +# parameters Properties + +| Property | Type | Required | Nullable | Defined by | +| :-------------------------------------------- | :-------- | :------- | :------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [businessSystemId](#businesssystemid) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-81-then-allof-0-then-properties-parameters-properties-businesssystemid.md "undefined#/properties/services/items/allOf/1/then/allOf/81/then/allOf/0/then/properties/parameters/properties/businessSystemId") | +| [enableTenantDeletion](#enabletenantdeletion) | `boolean` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-81-then-allof-0-then-properties-parameters-properties-enabletenantdeletion.md "undefined#/properties/services/items/allOf/1/then/allOf/81/then/allOf/0/then/properties/parameters/properties/enableTenantDeletion") | +| [globalTenantId](#globaltenantid) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-81-then-allof-0-then-properties-parameters-properties-globaltenantid.md "undefined#/properties/services/items/allOf/1/then/allOf/81/then/allOf/0/then/properties/parameters/properties/globalTenantId") | +| [logSys](#logsys) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-81-then-allof-0-then-properties-parameters-properties-logsys.md "undefined#/properties/services/items/allOf/1/then/allOf/81/then/allOf/0/then/properties/parameters/properties/logSys") | +| [writePermissions](#writepermissions) | `array` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-81-then-allof-0-then-properties-parameters-properties-writepermissions.md "undefined#/properties/services/items/allOf/1/then/allOf/81/then/allOf/0/then/properties/parameters/properties/writePermissions") | + +## businessSystemId + +Name to be displayed in SAP Master Data Orchestration UI. If not provided, a random UUID will be assigned. + +`businessSystemId` + +* is optional + +* Type: `string` + +* cannot be null + +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-81-then-allof-0-then-properties-parameters-properties-businesssystemid.md "undefined#/properties/services/items/allOf/1/then/allOf/81/then/allOf/0/then/properties/parameters/properties/businessSystemId") + +### businessSystemId Type + +`string` + +### businessSystemId Constraints + +**pattern**: the string must match the following regular expression: + +```regexp +^.{1,60}$ +``` + +[try pattern](https://regexr.com/?expression=%5E.%7B1%2C60%7D%24 "try regular expression with regexr.com") + +## enableTenantDeletion + +Boolean flag to be set to true for confirming deletion of last service instance for the tenant. + +`enableTenantDeletion` + +* is optional + +* Type: `boolean` + +* cannot be null + +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-81-then-allof-0-then-properties-parameters-properties-enabletenantdeletion.md "undefined#/properties/services/items/allOf/1/then/allOf/81/then/allOf/0/then/properties/parameters/properties/enableTenantDeletion") + +### enableTenantDeletion Type + +`boolean` + +## globalTenantId + +A name for the last significant writer (client) following the Globally Unique Tenant ID (GTID) specification. + +`globalTenantId` + +* is optional + +* Type: `string` + +* cannot be null + +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-81-then-allof-0-then-properties-parameters-properties-globaltenantid.md "undefined#/properties/services/items/allOf/1/then/allOf/81/then/allOf/0/then/properties/parameters/properties/globalTenantId") + +### globalTenantId Type + +`string` + +### globalTenantId Constraints + +**pattern**: the string must match the following regular expression: + +```regexp +^[A-Za-z0-9-._~]{1,40}$ +``` + +[try pattern](https://regexr.com/?expression=%5E%5BA-Za-z0-9-._~%5D%7B1%2C40%7D%24 "try regular expression with regexr.com") + +## logSys + +The logical system. + +`logSys` + +* is optional + +* Type: `string` + +* cannot be null + +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-81-then-allof-0-then-properties-parameters-properties-logsys.md "undefined#/properties/services/items/allOf/1/then/allOf/81/then/allOf/0/then/properties/parameters/properties/logSys") + +### logSys Type + +`string` + +### logSys Constraints + +**pattern**: the string must match the following regular expression: + +```regexp +^.{1,10}$ +``` + +[try pattern](https://regexr.com/?expression=%5E.%7B1%2C10%7D%24 "try regular expression with regexr.com") + +## writePermissions + +Array of entities the service instance has write permission for + +`writePermissions` + +* is optional + +* Type: `object[]` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-81-then-allof-0-then-properties-parameters-properties-writepermissions-items.md)) + +* cannot be null + +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-81-then-allof-0-then-properties-parameters-properties-writepermissions.md "undefined#/properties/services/items/allOf/1/then/allOf/81/then/allOf/0/then/properties/parameters/properties/writePermissions") + +### writePermissions Type + +`object[]` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-81-then-allof-0-then-properties-parameters-properties-writepermissions-items.md)) diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-81-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-81-then-allof-0-then.md index 82025a8b..65701aed 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-81-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-81-then-allof-0-then.md @@ -4,24 +4,20 @@ unknown # then Properties -| Property | Type | Required | Nullable | Defined by | -| :------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-81-then-allof-0-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/81/then/allOf/0/then/properties/plan") | +| Property | Type | Required | Nullable | Defined by | +| :------------------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-81-then-allof-0-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/81/then/allOf/0/then/properties/plan") | +| [parameters](#parameters) | `object` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-81-then-allof-0-then-properties-parameters.md "undefined#/properties/services/items/allOf/1/then/allOf/81/then/allOf/0/then/properties/parameters") | ## plan -service plan >free< for >personal-data-manager-service< is available in data centers: +service plan >s4hana-onpremise< for >one-mds< is available in data centers: * {'region': 'ap10', 'name': 'Australia (Sydney)'} * {'region': 'ap11', 'name': 'Singapore'} -* {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} * {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} -* {'region': 'eu20', 'name': 'Europe (Netherlands)'} * {'region': 'us10', 'name': 'US East (VA)'} -* {'region': 'us20', 'name': 'US West (WA)'} -* {'region': 'us21', 'name': 'US East (VA)'} -* {'region': 'us30', 'name': 'US Central (IA)'} `plan` @@ -36,3 +32,21 @@ service plan >free< for >personal-data-manager-service< is available in data cen ### plan Type unknown + +## parameters + + + +`parameters` + +* is required + +* Type: `object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-81-then-allof-0-then-properties-parameters.md)) + +* cannot be null + +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-81-then-allof-0-then-properties-parameters.md "undefined#/properties/services/items/allOf/1/then/allOf/81/then/allOf/0/then/properties/parameters") + +### parameters Type + +`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-81-then-allof-0-then-properties-parameters.md)) diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-81-then-allof-1-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-81-then-allof-1-if-properties-plan.md index 126392b1..206a15ef 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-81-then-allof-1-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-81-then-allof-1-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"standard" +"sap-integration" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-81-then-allof-1-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-81-then-allof-1-if.md index 20ecf5a6..51a9131d 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-81-then-allof-1-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-81-then-allof-1-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"standard" +"sap-integration" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-allof-1-then-properties-parameters-properties-application.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-81-then-allof-1-then-properties-parameters-properties-application.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-allof-1-then-properties-parameters-properties-application.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-81-then-allof-1-then-properties-parameters-properties-application.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-allof-1-then-properties-parameters-properties-businesssystemid.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-81-then-allof-1-then-properties-parameters-properties-businesssystemid.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-allof-1-then-properties-parameters-properties-businesssystemid.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-81-then-allof-1-then-properties-parameters-properties-businesssystemid.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-allof-1-then-properties-parameters-properties-enabletenantdeletion.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-81-then-allof-1-then-properties-parameters-properties-enabletenantdeletion.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-allof-1-then-properties-parameters-properties-enabletenantdeletion.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-81-then-allof-1-then-properties-parameters-properties-enabletenantdeletion.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-allof-1-then-properties-parameters-properties-globaltenantid.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-81-then-allof-1-then-properties-parameters-properties-globaltenantid.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-allof-1-then-properties-parameters-properties-globaltenantid.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-81-then-allof-1-then-properties-parameters-properties-globaltenantid.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-allof-1-then-properties-parameters-properties-logsys.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-81-then-allof-1-then-properties-parameters-properties-logsys.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-allof-1-then-properties-parameters-properties-logsys.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-81-then-allof-1-then-properties-parameters-properties-logsys.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-allof-1-then-properties-parameters-properties-writepermissions-items-properties-entitytype.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-81-then-allof-1-then-properties-parameters-properties-writepermissions-items-properties-entitytype.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-allof-1-then-properties-parameters-properties-writepermissions-items-properties-entitytype.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-81-then-allof-1-then-properties-parameters-properties-writepermissions-items-properties-entitytype.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-allof-1-then-properties-parameters-properties-writepermissions-items.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-81-then-allof-1-then-properties-parameters-properties-writepermissions-items.md similarity index 84% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-allof-1-then-properties-parameters-properties-writepermissions-items.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-81-then-allof-1-then-properties-parameters-properties-writepermissions-items.md index d920c67d..bbc7d090 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-allof-1-then-properties-parameters-properties-writepermissions-items.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-81-then-allof-1-then-properties-parameters-properties-writepermissions-items.md @@ -1,12 +1,12 @@ ## items Type -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-allof-1-then-properties-parameters-properties-writepermissions-items.md)) +`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-81-then-allof-1-then-properties-parameters-properties-writepermissions-items.md)) # items Properties | Property | Type | Required | Nullable | Defined by | | :------------------------ | :------- | :------- | :------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [entityType](#entitytype) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-allof-1-then-properties-parameters-properties-writepermissions-items-properties-entitytype.md "undefined#/properties/services/items/allOf/1/then/allOf/80/then/allOf/1/then/properties/parameters/properties/writePermissions/items/properties/entityType") | +| [entityType](#entitytype) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-81-then-allof-1-then-properties-parameters-properties-writepermissions-items-properties-entitytype.md "undefined#/properties/services/items/allOf/1/then/allOf/81/then/allOf/1/then/properties/parameters/properties/writePermissions/items/properties/entityType") | ## entityType @@ -20,7 +20,7 @@ * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-allof-1-then-properties-parameters-properties-writepermissions-items-properties-entitytype.md "undefined#/properties/services/items/allOf/1/then/allOf/80/then/allOf/1/then/properties/parameters/properties/writePermissions/items/properties/entityType") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-81-then-allof-1-then-properties-parameters-properties-writepermissions-items-properties-entitytype.md "undefined#/properties/services/items/allOf/1/then/allOf/81/then/allOf/1/then/properties/parameters/properties/writePermissions/items/properties/entityType") ### entityType Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-allof-1-then-properties-parameters-properties-writepermissions.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-81-then-allof-1-then-properties-parameters-properties-writepermissions.md similarity index 66% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-allof-1-then-properties-parameters-properties-writepermissions.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-81-then-allof-1-then-properties-parameters-properties-writepermissions.md index eb9a573c..7a6e7875 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-allof-1-then-properties-parameters-properties-writepermissions.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-81-then-allof-1-then-properties-parameters-properties-writepermissions.md @@ -1,3 +1,3 @@ ## writePermissions Type -`object[]` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-allof-1-then-properties-parameters-properties-writepermissions-items.md)) +`object[]` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-81-then-allof-1-then-properties-parameters-properties-writepermissions-items.md)) diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-allof-1-then-properties-parameters.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-81-then-allof-1-then-properties-parameters.md similarity index 79% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-allof-1-then-properties-parameters.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-81-then-allof-1-then-properties-parameters.md index 5fdb2f74..190fa83a 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-allof-1-then-properties-parameters.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-81-then-allof-1-then-properties-parameters.md @@ -1,17 +1,17 @@ ## parameters Type -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-allof-1-then-properties-parameters.md)) +`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-81-then-allof-1-then-properties-parameters.md)) # parameters Properties | Property | Type | Required | Nullable | Defined by | | :-------------------------------------------- | :-------- | :------- | :------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [application](#application) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-allof-1-then-properties-parameters-properties-application.md "undefined#/properties/services/items/allOf/1/then/allOf/80/then/allOf/1/then/properties/parameters/properties/application") | -| [businessSystemId](#businesssystemid) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-allof-1-then-properties-parameters-properties-businesssystemid.md "undefined#/properties/services/items/allOf/1/then/allOf/80/then/allOf/1/then/properties/parameters/properties/businessSystemId") | -| [enableTenantDeletion](#enabletenantdeletion) | `boolean` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-allof-1-then-properties-parameters-properties-enabletenantdeletion.md "undefined#/properties/services/items/allOf/1/then/allOf/80/then/allOf/1/then/properties/parameters/properties/enableTenantDeletion") | -| [globalTenantId](#globaltenantid) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-allof-1-then-properties-parameters-properties-globaltenantid.md "undefined#/properties/services/items/allOf/1/then/allOf/80/then/allOf/1/then/properties/parameters/properties/globalTenantId") | -| [logSys](#logsys) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-allof-1-then-properties-parameters-properties-logsys.md "undefined#/properties/services/items/allOf/1/then/allOf/80/then/allOf/1/then/properties/parameters/properties/logSys") | -| [writePermissions](#writepermissions) | `array` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-allof-1-then-properties-parameters-properties-writepermissions.md "undefined#/properties/services/items/allOf/1/then/allOf/80/then/allOf/1/then/properties/parameters/properties/writePermissions") | +| [application](#application) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-81-then-allof-1-then-properties-parameters-properties-application.md "undefined#/properties/services/items/allOf/1/then/allOf/81/then/allOf/1/then/properties/parameters/properties/application") | +| [businessSystemId](#businesssystemid) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-81-then-allof-1-then-properties-parameters-properties-businesssystemid.md "undefined#/properties/services/items/allOf/1/then/allOf/81/then/allOf/1/then/properties/parameters/properties/businessSystemId") | +| [enableTenantDeletion](#enabletenantdeletion) | `boolean` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-81-then-allof-1-then-properties-parameters-properties-enabletenantdeletion.md "undefined#/properties/services/items/allOf/1/then/allOf/81/then/allOf/1/then/properties/parameters/properties/enableTenantDeletion") | +| [globalTenantId](#globaltenantid) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-81-then-allof-1-then-properties-parameters-properties-globaltenantid.md "undefined#/properties/services/items/allOf/1/then/allOf/81/then/allOf/1/then/properties/parameters/properties/globalTenantId") | +| [logSys](#logsys) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-81-then-allof-1-then-properties-parameters-properties-logsys.md "undefined#/properties/services/items/allOf/1/then/allOf/81/then/allOf/1/then/properties/parameters/properties/logSys") | +| [writePermissions](#writepermissions) | `array` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-81-then-allof-1-then-properties-parameters-properties-writepermissions.md "undefined#/properties/services/items/allOf/1/then/allOf/81/then/allOf/1/then/properties/parameters/properties/writePermissions") | ## application @@ -25,7 +25,7 @@ Name of the application you are connecting to MDI. Allowed values are: "ariba", * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-allof-1-then-properties-parameters-properties-application.md "undefined#/properties/services/items/allOf/1/then/allOf/80/then/allOf/1/then/properties/parameters/properties/application") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-81-then-allof-1-then-properties-parameters-properties-application.md "undefined#/properties/services/items/allOf/1/then/allOf/81/then/allOf/1/then/properties/parameters/properties/application") ### application Type @@ -62,7 +62,7 @@ Name to be displayed in SAP Master Data Orchestration UI. If not provided, a ran * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-allof-1-then-properties-parameters-properties-businesssystemid.md "undefined#/properties/services/items/allOf/1/then/allOf/80/then/allOf/1/then/properties/parameters/properties/businessSystemId") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-81-then-allof-1-then-properties-parameters-properties-businesssystemid.md "undefined#/properties/services/items/allOf/1/then/allOf/81/then/allOf/1/then/properties/parameters/properties/businessSystemId") ### businessSystemId Type @@ -90,7 +90,7 @@ Boolean flag to be set to true for confirming deletion of last service instance * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-allof-1-then-properties-parameters-properties-enabletenantdeletion.md "undefined#/properties/services/items/allOf/1/then/allOf/80/then/allOf/1/then/properties/parameters/properties/enableTenantDeletion") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-81-then-allof-1-then-properties-parameters-properties-enabletenantdeletion.md "undefined#/properties/services/items/allOf/1/then/allOf/81/then/allOf/1/then/properties/parameters/properties/enableTenantDeletion") ### enableTenantDeletion Type @@ -108,7 +108,7 @@ A name for the last significant writer (client) following the Globally Unique Te * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-allof-1-then-properties-parameters-properties-globaltenantid.md "undefined#/properties/services/items/allOf/1/then/allOf/80/then/allOf/1/then/properties/parameters/properties/globalTenantId") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-81-then-allof-1-then-properties-parameters-properties-globaltenantid.md "undefined#/properties/services/items/allOf/1/then/allOf/81/then/allOf/1/then/properties/parameters/properties/globalTenantId") ### globalTenantId Type @@ -136,7 +136,7 @@ The logical system. * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-allof-1-then-properties-parameters-properties-logsys.md "undefined#/properties/services/items/allOf/1/then/allOf/80/then/allOf/1/then/properties/parameters/properties/logSys") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-81-then-allof-1-then-properties-parameters-properties-logsys.md "undefined#/properties/services/items/allOf/1/then/allOf/81/then/allOf/1/then/properties/parameters/properties/logSys") ### logSys Type @@ -160,12 +160,12 @@ Array of entities the service instance has write permission for * is optional -* Type: `object[]` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-allof-1-then-properties-parameters-properties-writepermissions-items.md)) +* Type: `object[]` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-81-then-allof-1-then-properties-parameters-properties-writepermissions-items.md)) * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-allof-1-then-properties-parameters-properties-writepermissions.md "undefined#/properties/services/items/allOf/1/then/allOf/80/then/allOf/1/then/properties/parameters/properties/writePermissions") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-81-then-allof-1-then-properties-parameters-properties-writepermissions.md "undefined#/properties/services/items/allOf/1/then/allOf/81/then/allOf/1/then/properties/parameters/properties/writePermissions") ### writePermissions Type -`object[]` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-allof-1-then-properties-parameters-properties-writepermissions-items.md)) +`object[]` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-81-then-allof-1-then-properties-parameters-properties-writepermissions-items.md)) diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-81-then-allof-1-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-81-then-allof-1-then.md index a19ddc8d..53a9917a 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-81-then-allof-1-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-81-then-allof-1-then.md @@ -4,25 +4,20 @@ unknown # then Properties -| Property | Type | Required | Nullable | Defined by | -| :------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-81-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/81/then/allOf/1/then/properties/plan") | +| Property | Type | Required | Nullable | Defined by | +| :------------------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-81-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/81/then/allOf/1/then/properties/plan") | +| [parameters](#parameters) | `object` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-81-then-allof-1-then-properties-parameters.md "undefined#/properties/services/items/allOf/1/then/allOf/81/then/allOf/1/then/properties/parameters") | ## plan -service plan >standard< for >personal-data-manager-service< is available in data centers: +service plan >sap-integration< for >one-mds< is available in data centers: * {'region': 'ap10', 'name': 'Australia (Sydney)'} * {'region': 'ap11', 'name': 'Singapore'} -* {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} * {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} -* {'region': 'eu20', 'name': 'Europe (Netherlands)'} -* {'region': 'eu30', 'name': 'Europe (Frankfurt)'} * {'region': 'us10', 'name': 'US East (VA)'} -* {'region': 'us20', 'name': 'US West (WA)'} -* {'region': 'us21', 'name': 'US East (VA)'} -* {'region': 'us30', 'name': 'US Central (IA)'} `plan` @@ -37,3 +32,21 @@ service plan >standard< for >personal-data-manager-service< is available in data ### plan Type unknown + +## parameters + + + +`parameters` + +* is required + +* Type: `object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-81-then-allof-1-then-properties-parameters.md)) + +* cannot be null + +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-81-then-allof-1-then-properties-parameters.md "undefined#/properties/services/items/allOf/1/then/allOf/81/then/allOf/1/then/properties/parameters") + +### parameters Type + +`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-81-then-allof-1-then-properties-parameters.md)) diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-81-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-81-then-properties-plan.md index 49c8bb8c..b1eb4f29 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-81-then-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-81-then-properties-plan.md @@ -6,7 +6,7 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :----------- | :---------- | -| `"free"` | | -| `"standard"` | | +| Value | Explanation | +| :------------------- | :---------- | +| `"s4hana-onpremise"` | | +| `"sap-integration"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-81-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-81-then.md index 09b4462d..232f757f 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-81-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-81-then.md @@ -37,14 +37,14 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :----------- | :---------- | -| `"free"` | | -| `"standard"` | | +| Value | Explanation | +| :------------------- | :---------- | +| `"s4hana-onpremise"` | | +| `"sap-integration"` | | ## name -SAP Personal Data Manager: SAP Personal Data Manager provides the capability to generate reports showing the personal data stored in an application point of view with the help of a CSR. The reports can be generated and exported either in machine readable form (JSON) or human readable form (PDF). Data subjects can request the correction and deletion of personal data that is stored in an application point of view. +SAP Master Data Integration: SAP Business Technology Platform Master Data Integration service offers master data synchronization across SAP solutions and is a central access layer for data sharing and distribution. The service can only be used for SAP to SAP Integration, and must not be directly accessed for 3rd party master data integration scenarios with SAP. SAP Business Technology Platform Master Data Orchestration is part of the master data integration service, and can only be used in conjunction with SAP Master Data Integration service. `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-82-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-82-if-properties-name.md index 0dbc4351..d48c5fe8 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-82-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-82-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"portal" +"personal-data-manager-service" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-82-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-82-if.md index bda60d8c..c60892bc 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-82-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-82-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"portal" +"personal-data-manager-service" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-82-then-allof-0-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-82-then-allof-0-if-properties-plan.md index 126392b1..c97f5143 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-82-then-allof-0-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-82-then-allof-0-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"standard" +"free" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-82-then-allof-0-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-82-then-allof-0-if.md index 515f2c0a..2ff01d7a 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-82-then-allof-0-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-82-then-allof-0-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"standard" +"free" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-82-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-82-then-allof-0-then.md index 772741b1..2565195f 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-82-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-82-then-allof-0-then.md @@ -10,22 +10,14 @@ unknown ## plan -service plan >standard< for >portal< is available in data centers: +service plan >free< for >personal-data-manager-service< is available in data centers: * {'region': 'ap10', 'name': 'Australia (Sydney)'} * {'region': 'ap11', 'name': 'Singapore'} -* {'region': 'ap12', 'name': 'South Korea (Seoul)'} -* {'region': 'ap20', 'name': 'Australia (Sydney) Azure'} -* {'region': 'ap21', 'name': 'Singapore'} * {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} -* {'region': 'ca10', 'name': 'Canada (Montreal)'} * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} * {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} * {'region': 'eu20', 'name': 'Europe (Netherlands)'} -* {'region': 'eu30', 'name': 'Europe (Frankfurt)'} -* {'region': 'in30', 'name': 'India (Mumbai)'} -* {'region': 'jp10', 'name': 'Japan (Tokyo)'} -* {'region': 'jp20', 'name': 'Japan (Tokyo)'} * {'region': 'us10', 'name': 'US East (VA)'} * {'region': 'us20', 'name': 'US West (WA)'} * {'region': 'us21', 'name': 'US East (VA)'} diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-77-then-allof-1-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-82-then-allof-1-if-properties-plan.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-77-then-allof-1-if-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-82-then-allof-1-if-properties-plan.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-83-then-allof-2-if-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-82-then-allof-1-if-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-83-then-allof-2-if-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-82-then-allof-1-if-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-82-then-allof-1-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-82-then-allof-1-if.md new file mode 100644 index 00000000..534ce4ca --- /dev/null +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-82-then-allof-1-if.md @@ -0,0 +1,35 @@ +## if Type + +unknown + +# if Properties + +| Property | Type | Required | Nullable | Defined by | +| :------------ | :------------ | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-82-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/82/then/allOf/1/if/properties/plan") | + +## plan + + + +`plan` + +* is optional + +* Type: unknown + +* cannot be null + +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-82-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/82/then/allOf/1/if/properties/plan") + +### plan Type + +unknown + +### plan Constraints + +**constant**: the value of this property must be equal to: + +```json +"standard" +``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-83-then-allof-1-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-82-then-allof-1-then-properties-plan.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-83-then-allof-1-then-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-82-then-allof-1-then-properties-plan.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-83-then-allof-2-then-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-82-then-allof-1-then-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-83-then-allof-2-then-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-82-then-allof-1-then-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-89-then-allof-1-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-82-then-allof-1-then.md similarity index 72% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-89-then-allof-1-then.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-82-then-allof-1-then.md index 3aa2fd93..bc5d1a7a 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-89-then-allof-1-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-82-then-allof-1-then.md @@ -6,25 +6,19 @@ unknown | Property | Type | Required | Nullable | Defined by | | :------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-89-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/89/then/allOf/1/then/properties/plan") | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-82-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/82/then/allOf/1/then/properties/plan") | ## plan -service plan >workflow< for >processvisibility< is available in data centers: +service plan >standard< for >personal-data-manager-service< is available in data centers: * {'region': 'ap10', 'name': 'Australia (Sydney)'} * {'region': 'ap11', 'name': 'Singapore'} -* {'region': 'ap12', 'name': 'South Korea (Seoul)'} -* {'region': 'ap20', 'name': 'Australia (Sydney) Azure'} -* {'region': 'ap21', 'name': 'Singapore'} * {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} -* {'region': 'ca10', 'name': 'Canada (Montreal)'} * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} * {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} * {'region': 'eu20', 'name': 'Europe (Netherlands)'} * {'region': 'eu30', 'name': 'Europe (Frankfurt)'} -* {'region': 'jp10', 'name': 'Japan (Tokyo)'} -* {'region': 'jp20', 'name': 'Japan (Tokyo)'} * {'region': 'us10', 'name': 'US East (VA)'} * {'region': 'us20', 'name': 'US West (WA)'} * {'region': 'us21', 'name': 'US East (VA)'} @@ -38,7 +32,7 @@ service plan >workflow< for >processvisibility< is available in data centers: * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-89-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/89/then/allOf/1/then/properties/plan") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-82-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/82/then/allOf/1/then/properties/plan") ### plan Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-allof-1.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-82-then-allof-1.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-80-then-allof-1.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-82-then-allof-1.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-82-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-82-then-properties-plan.md index 248cb3df..49c8bb8c 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-82-then-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-82-then-properties-plan.md @@ -8,4 +8,5 @@ unknown | Value | Explanation | | :----------- | :---------- | +| `"free"` | | | `"standard"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-82-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-82-then.md index c44082db..0c9d300c 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-82-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-82-then.md @@ -6,6 +6,8 @@ all of * [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-82-then-allof-0.md "check type definition") +* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-82-then-allof-1.md "check type definition") + # then Properties | Property | Type | Required | Nullable | Defined by | @@ -37,11 +39,12 @@ unknown | Value | Explanation | | :----------- | :---------- | +| `"free"` | | | `"standard"` | | ## name -SAP Cloud Portal service: SAP Business Technology Platform Portal lets you build digital experience portals for employees, customers, and partners. You can streamline access to business data so that your employees can execute their daily business tasks securely, from any device. +SAP Personal Data Manager: SAP Personal Data Manager provides the capability to generate reports showing the personal data stored in an application point of view with the help of a CSR. The reports can be generated and exported either in machine readable form (JSON) or human readable form (PDF). Data subjects can request the correction and deletion of personal data that is stored in an application point of view. `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-83-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-83-if-properties-name.md index 3d72f516..0dbc4351 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-83-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-83-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"postgresql" +"portal" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-83-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-83-if.md index 6a096ce4..3007a045 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-83-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-83-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"postgresql" +"portal" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-83-then-allof-0-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-83-then-allof-0-if-properties-plan.md index 9db80827..126392b1 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-83-then-allof-0-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-83-then-allof-0-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"large" +"standard" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-83-then-allof-0-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-83-then-allof-0-if.md index a24f8c62..b0250386 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-83-then-allof-0-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-83-then-allof-0-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"large" +"standard" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-83-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-83-then-allof-0-then.md index 6a0a9850..53cbaaaa 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-83-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-83-then-allof-0-then.md @@ -10,7 +10,7 @@ unknown ## plan -service plan >large< for >postgresql< is available in data centers: +service plan >standard< for >portal< is available in data centers: * {'region': 'ap10', 'name': 'Australia (Sydney)'} * {'region': 'ap11', 'name': 'Singapore'} @@ -19,7 +19,6 @@ service plan >large< for >postgresql< is available in data centers: * {'region': 'ap21', 'name': 'Singapore'} * {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} * {'region': 'ca10', 'name': 'Canada (Montreal)'} -* {'region': 'ch20', 'name': 'cf-ch20'} * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} * {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} * {'region': 'eu20', 'name': 'Europe (Netherlands)'} diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-83-then-allof-1-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-83-then-allof-1-if.md deleted file mode 100644 index d360df69..00000000 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-83-then-allof-1-if.md +++ /dev/null @@ -1,35 +0,0 @@ -## if Type - -unknown - -# if Properties - -| Property | Type | Required | Nullable | Defined by | -| :------------ | :------------ | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-83-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/83/then/allOf/1/if/properties/plan") | - -## plan - - - -`plan` - -* is optional - -* Type: unknown - -* cannot be null - -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-83-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/83/then/allOf/1/if/properties/plan") - -### plan Type - -unknown - -### plan Constraints - -**constant**: the value of this property must be equal to: - -```json -"medium" -``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-83-then-allof-2-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-83-then-allof-2-then.md deleted file mode 100644 index 8f982377..00000000 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-83-then-allof-2-then.md +++ /dev/null @@ -1,47 +0,0 @@ -## then Type - -unknown - -# then Properties - -| Property | Type | Required | Nullable | Defined by | -| :------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-83-then-allof-2-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/83/then/allOf/2/then/properties/plan") | - -## plan - -service plan >small< for >postgresql< is available in data centers: - -* {'region': 'ap10', 'name': 'Australia (Sydney)'} -* {'region': 'ap11', 'name': 'Singapore'} -* {'region': 'ap12', 'name': 'South Korea (Seoul)'} -* {'region': 'ap20', 'name': 'Australia (Sydney) Azure'} -* {'region': 'ap21', 'name': 'Singapore'} -* {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} -* {'region': 'ca10', 'name': 'Canada (Montreal)'} -* {'region': 'ch20', 'name': 'cf-ch20'} -* {'region': 'eu10', 'name': 'Europe (Frankfurt)'} -* {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} -* {'region': 'eu20', 'name': 'Europe (Netherlands)'} -* {'region': 'eu30', 'name': 'Europe (Frankfurt)'} -* {'region': 'in30', 'name': 'India (Mumbai)'} -* {'region': 'jp10', 'name': 'Japan (Tokyo)'} -* {'region': 'jp20', 'name': 'Japan (Tokyo)'} -* {'region': 'us10', 'name': 'US East (VA)'} -* {'region': 'us20', 'name': 'US West (WA)'} -* {'region': 'us21', 'name': 'US East (VA)'} -* {'region': 'us30', 'name': 'US Central (IA)'} - -`plan` - -* is optional - -* Type: unknown - -* cannot be null - -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-83-then-allof-2-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/83/then/allOf/2/then/properties/plan") - -### plan Type - -unknown diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-83-then-allof-4-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-83-then-allof-4-if-properties-plan.md deleted file mode 100644 index a855f4f8..00000000 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-83-then-allof-4-if-properties-plan.md +++ /dev/null @@ -1,11 +0,0 @@ -## plan Type - -unknown - -## plan Constraints - -**constant**: the value of this property must be equal to: - -```json -"xxsmall" -``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-83-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-83-then-properties-plan.md index a42e9368..248cb3df 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-83-then-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-83-then-properties-plan.md @@ -6,10 +6,6 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :---------- | :---------- | -| `"large"` | | -| `"medium"` | | -| `"small"` | | -| `"xsmall"` | | -| `"xxsmall"` | | +| Value | Explanation | +| :----------- | :---------- | +| `"standard"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-83-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-83-then.md index 732de21c..3cc307b3 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-83-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-83-then.md @@ -6,14 +6,6 @@ all of * [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-83-then-allof-0.md "check type definition") -* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-83-then-allof-1.md "check type definition") - -* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-83-then-allof-2.md "check type definition") - -* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-83-then-allof-3.md "check type definition") - -* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-83-then-allof-4.md "check type definition") - # then Properties | Property | Type | Required | Nullable | Defined by | @@ -43,17 +35,13 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :---------- | :---------- | -| `"large"` | | -| `"medium"` | | -| `"small"` | | -| `"xsmall"` | | -| `"xxsmall"` | | +| Value | Explanation | +| :----------- | :---------- | +| `"standard"` | | ## name -PostgreSQL on SAP BTP: PostgreSQL on SAP BTP offers an object-relational database management system with many advanced features, such as user-defined types, table inheritance, foreign key referential integrity, Multiversion Concurrency Control (MVCC), and so on. +SAP Cloud Portal service: SAP Business Technology Platform Portal lets you build digital experience portals for employees, customers, and partners. You can streamline access to business data so that your employees can execute their daily business tasks securely, from any device. `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-if-properties-name.md index 61ff4e86..3d72f516 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"postgresql-db" +"postgresql" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-if.md index 185d1b1e..8c36d1eb 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"postgresql-db" +"postgresql" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-0-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-0-if-properties-plan.md index c97f5143..9db80827 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-0-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-0-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"free" +"large" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-0-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-0-if.md index bc8ff2be..df60d246 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-0-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-0-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"free" +"large" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-0-then-properties-parameters.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-0-then-properties-parameters.md deleted file mode 100644 index b7a61deb..00000000 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-0-then-properties-parameters.md +++ /dev/null @@ -1,140 +0,0 @@ -## parameters Type - -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-0-then-properties-parameters.md)) - -# parameters Properties - -| Property | Type | Required | Nullable | Defined by | -| :--------------------------------- | :------- | :------- | :------------- | :--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [allow\_access](#allow_access) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-0-then-properties-parameters-properties-allow_access.md "http://example.com/schemas/postgres-free-create.json#/properties/services/items/allOf/1/then/allOf/84/then/allOf/0/then/properties/parameters/properties/allow_access") | -| [engine\_version](#engine_version) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-0-then-properties-parameters-properties-engine_version.md "http://example.com/schemas/postgres-free-create.json#/properties/services/items/allOf/1/then/allOf/84/then/allOf/0/then/properties/parameters/properties/engine_version") | -| [locale](#locale) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-0-then-properties-parameters-properties-locale.md "http://example.com/schemas/postgres-free-create.json#/properties/services/items/allOf/1/then/allOf/84/then/allOf/0/then/properties/parameters/properties/locale") | -| [region](#region) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-0-then-properties-parameters-properties-region.md "http://example.com/schemas/postgres-free-create.json#/properties/services/items/allOf/1/then/allOf/84/then/allOf/0/then/properties/parameters/properties/region") | -| Additional Properties | Any | Optional | can be null | | - -## allow\_access - -Comma separated list of IPs and CF landscape domains from which connectivity to the instance can be established. Default behaviour will be to block all access to the instance from any public IP or CF Domain. - -`allow_access` - -* is optional - -* Type: `string` - -* cannot be null - -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-0-then-properties-parameters-properties-allow_access.md "http://example.com/schemas/postgres-free-create.json#/properties/services/items/allOf/1/then/allOf/84/then/allOf/0/then/properties/parameters/properties/allow_access") - -### allow\_access Type - -`string` - -## engine\_version - -The major version of the PostgreSQL database to use. If not provided, the major version is defaulted to 12 - -`engine_version` - -* is optional - -* Type: `string` - -* cannot be null - -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-0-then-properties-parameters-properties-engine_version.md "http://example.com/schemas/postgres-free-create.json#/properties/services/items/allOf/1/then/allOf/84/then/allOf/0/then/properties/parameters/properties/engine_version") - -### engine\_version Type - -`string` - -### engine\_version Constraints - -**enum**: the value of this property must be equal to one of the following values: - -| Value | Explanation | -| :----- | :---------- | -| `"11"` | | -| `"12"` | | -| `"13"` | | -| `"14"` | | - -### engine\_version Default Value - -The default value is: - -```json -"12" -``` - -## locale - -Indicates the locale for the instance (TODO) - -`locale` - -* is optional - -* Type: `string` - -* cannot be null - -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-0-then-properties-parameters-properties-locale.md "http://example.com/schemas/postgres-free-create.json#/properties/services/items/allOf/1/then/allOf/84/then/allOf/0/then/properties/parameters/properties/locale") - -### locale Type - -`string` - -### locale Default Value - -The default value is: - -```json -"en_US" -``` - -## region - -The infrastructure region where the instance will be deployed. - -`region` - -* is optional - -* Type: `string` - -* cannot be null - -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-0-then-properties-parameters-properties-region.md "http://example.com/schemas/postgres-free-create.json#/properties/services/items/allOf/1/then/allOf/84/then/allOf/0/then/properties/parameters/properties/region") - -### region Type - -`string` - -### region Constraints - -**enum**: the value of this property must be equal to one of the following values: - -| Value | Explanation | -| :----------------- | :---------- | -| `"ap-northeast-1"` | | -| `"ap-northeast-2"` | | -| `"ap-northeast-3"` | | -| `"ap-south-1"` | | -| `"ap-southeast-1"` | | -| `"ap-southeast-2"` | | -| `"ca-central-1"` | | -| `"eu-central-1"` | | -| `"eu-north-1"` | | -| `"eu-west-1"` | | -| `"eu-west-2"` | | -| `"eu-west-3"` | | -| `"sa-east-1"` | | -| `"us-east-1"` | | -| `"us-east-2"` | | -| `"us-west-1"` | | -| `"us-west-2"` | | - -## Additional Properties - -Additional properties are allowed and do not have to follow a specific schema diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-0-then.md index 890f6356..61d485f1 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-0-then.md @@ -4,24 +4,33 @@ unknown # then Properties -| Property | Type | Required | Nullable | Defined by | -| :------------------------ | :------------ | :------- | :------------- | :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-0-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/84/then/allOf/0/then/properties/plan") | -| [parameters](#parameters) | `object` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-0-then-properties-parameters.md "http://example.com/schemas/postgres-free-create.json#/properties/services/items/allOf/1/then/allOf/84/then/allOf/0/then/properties/parameters") | +| Property | Type | Required | Nullable | Defined by | +| :------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-0-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/84/then/allOf/0/then/properties/plan") | ## plan -service plan >free< for >postgresql-db< is available in data centers: +service plan >large< for >postgresql< is available in data centers: * {'region': 'ap10', 'name': 'Australia (Sydney)'} * {'region': 'ap11', 'name': 'Singapore'} * {'region': 'ap12', 'name': 'South Korea (Seoul)'} +* {'region': 'ap20', 'name': 'Australia (Sydney) Azure'} +* {'region': 'ap21', 'name': 'Singapore'} * {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} * {'region': 'ca10', 'name': 'Canada (Montreal)'} +* {'region': 'ch20', 'name': 'cf-ch20'} * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} * {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} +* {'region': 'eu20', 'name': 'Europe (Netherlands)'} +* {'region': 'eu30', 'name': 'Europe (Frankfurt)'} +* {'region': 'in30', 'name': 'India (Mumbai)'} * {'region': 'jp10', 'name': 'Japan (Tokyo)'} +* {'region': 'jp20', 'name': 'Japan (Tokyo)'} * {'region': 'us10', 'name': 'US East (VA)'} +* {'region': 'us20', 'name': 'US West (WA)'} +* {'region': 'us21', 'name': 'US East (VA)'} +* {'region': 'us30', 'name': 'US Central (IA)'} `plan` @@ -36,21 +45,3 @@ service plan >free< for >postgresql-db< is available in data centers: ### plan Type unknown - -## parameters - - - -`parameters` - -* is required - -* Type: `object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-0-then-properties-parameters.md)) - -* cannot be null - -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-0-then-properties-parameters.md "http://example.com/schemas/postgres-free-create.json#/properties/services/items/allOf/1/then/allOf/84/then/allOf/0/then/properties/parameters") - -### parameters Type - -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-0-then-properties-parameters.md)) diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-1-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-1-if-properties-plan.md index 9afdf414..2cf6fedc 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-1-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-1-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"premium" +"medium" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-1-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-1-if.md index d8c0e12d..58a4d8e6 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-1-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-1-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"premium" +"medium" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-1-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-1-then.md index 459bc4b4..eb02ce51 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-1-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-1-then.md @@ -4,14 +4,13 @@ unknown # then Properties -| Property | Type | Required | Nullable | Defined by | -| :------------------------ | :------------ | :------- | :------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/84/then/allOf/1/then/properties/plan") | -| [parameters](#parameters) | `object` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-1-then-properties-parameters.md "http://example.com/schemas/postgres-premium-create.json#/properties/services/items/allOf/1/then/allOf/84/then/allOf/1/then/properties/parameters") | +| Property | Type | Required | Nullable | Defined by | +| :------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/84/then/allOf/1/then/properties/plan") | ## plan -service plan >premium< for >postgresql-db< is available in data centers: +service plan >medium< for >postgresql< is available in data centers: * {'region': 'ap10', 'name': 'Australia (Sydney)'} * {'region': 'ap11', 'name': 'Singapore'} @@ -46,21 +45,3 @@ service plan >premium< for >postgresql-db< is available in data centers: ### plan Type unknown - -## parameters - - - -`parameters` - -* is required - -* Type: `object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-1-then-properties-parameters.md)) - -* cannot be null - -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-1-then-properties-parameters.md "http://example.com/schemas/postgres-premium-create.json#/properties/services/items/allOf/1/then/allOf/84/then/allOf/1/then/properties/parameters") - -### parameters Type - -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-1-then-properties-parameters.md)) diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-2-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-2-if-properties-plan.md index 126392b1..b970e1cf 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-2-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-2-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"standard" +"small" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-2-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-2-if.md index c0fb99e0..e8fbda43 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-2-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-2-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"standard" +"small" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-2-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-2-then.md index 73197739..bec16f84 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-2-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-2-then.md @@ -4,14 +4,13 @@ unknown # then Properties -| Property | Type | Required | Nullable | Defined by | -| :------------------------ | :------------ | :------- | :------------- | :--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-2-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/84/then/allOf/2/then/properties/plan") | -| [parameters](#parameters) | `object` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-2-then-properties-parameters.md "http://example.com/schemas/postgres-standard-create.json#/properties/services/items/allOf/1/then/allOf/84/then/allOf/2/then/properties/parameters") | +| Property | Type | Required | Nullable | Defined by | +| :------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-2-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/84/then/allOf/2/then/properties/plan") | ## plan -service plan >standard< for >postgresql-db< is available in data centers: +service plan >small< for >postgresql< is available in data centers: * {'region': 'ap10', 'name': 'Australia (Sydney)'} * {'region': 'ap11', 'name': 'Singapore'} @@ -46,21 +45,3 @@ service plan >standard< for >postgresql-db< is available in data centers: ### plan Type unknown - -## parameters - - - -`parameters` - -* is required - -* Type: `object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-2-then-properties-parameters.md)) - -* cannot be null - -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-2-then-properties-parameters.md "http://example.com/schemas/postgres-standard-create.json#/properties/services/items/allOf/1/then/allOf/84/then/allOf/2/then/properties/parameters") - -### parameters Type - -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-2-then-properties-parameters.md)) diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-3-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-3-if-properties-plan.md index bd5a7e14..f3131978 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-3-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-3-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"storage" +"xsmall" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-3-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-3-if.md index 911d771b..0d8e35fa 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-3-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-3-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"storage" +"xsmall" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-3-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-3-then.md index 9d53c52e..2014ceb0 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-3-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-3-then.md @@ -10,7 +10,7 @@ unknown ## plan -service plan >storage< for >postgresql-db< is available in data centers: +service plan >xsmall< for >postgresql< is available in data centers: * {'region': 'ap10', 'name': 'Australia (Sydney)'} * {'region': 'ap11', 'name': 'Singapore'} diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-4-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-4-if-properties-plan.md index 1b42121f..a855f4f8 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-4-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-4-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"storage_ha" +"xxsmall" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-4-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-4-if.md index 91b3f62a..666fba45 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-4-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-4-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"storage_ha" +"xxsmall" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-4-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-4-then.md index add47b24..9ba4a17a 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-4-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-4-then.md @@ -10,7 +10,7 @@ unknown ## plan -service plan >storage\_ha< for >postgresql-db< is available in data centers: +service plan >xxsmall< for >postgresql< is available in data centers: * {'region': 'ap10', 'name': 'Australia (Sydney)'} * {'region': 'ap11', 'name': 'Singapore'} diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-properties-plan.md index a02f6e20..a42e9368 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-properties-plan.md @@ -6,10 +6,10 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :------------- | :---------- | -| `"free"` | | -| `"premium"` | | -| `"standard"` | | -| `"storage"` | | -| `"storage_ha"` | | +| Value | Explanation | +| :---------- | :---------- | +| `"large"` | | +| `"medium"` | | +| `"small"` | | +| `"xsmall"` | | +| `"xxsmall"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then.md index c7761cee..42bd6b4e 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then.md @@ -43,17 +43,17 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :------------- | :---------- | -| `"free"` | | -| `"premium"` | | -| `"standard"` | | -| `"storage"` | | -| `"storage_ha"` | | +| Value | Explanation | +| :---------- | :---------- | +| `"large"` | | +| `"medium"` | | +| `"small"` | | +| `"xsmall"` | | +| `"xxsmall"` | | ## name -PostgreSQL on SAP BTP, hyperscaler option: PostgreSQL on SAP BTP, hyperscaler option provides a managed relational database service, based on native PostgreSQL offerings from cloud providers AWS, Microsoft Azure, Google Cloud Platform and Alicloud. +PostgreSQL on SAP BTP: PostgreSQL on SAP BTP offers an object-relational database management system with many advanced features, such as user-defined types, table inheritance, foreign key referential integrity, Multiversion Concurrency Control (MVCC), and so on. `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-if-properties-name.md index bfb122c1..61ff4e86 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"print" +"postgresql-db" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-if.md index ba8b4253..562988ee 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"print" +"postgresql-db" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-0-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-0-if-properties-plan.md index 28613236..c97f5143 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-0-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-0-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"receiver" +"free" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-0-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-0-if.md index 34750c04..3d2e2e5a 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-0-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-0-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"receiver" +"free" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-0-then-properties-parameters-properties-allow_access.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-0-then-properties-parameters-properties-allow_access.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-0-then-properties-parameters-properties-allow_access.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-0-then-properties-parameters-properties-allow_access.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-0-then-properties-parameters-properties-engine_version.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-0-then-properties-parameters-properties-engine_version.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-0-then-properties-parameters-properties-engine_version.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-0-then-properties-parameters-properties-engine_version.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-0-then-properties-parameters-properties-locale.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-0-then-properties-parameters-properties-locale.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-0-then-properties-parameters-properties-locale.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-0-then-properties-parameters-properties-locale.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-0-then-properties-parameters-properties-region.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-0-then-properties-parameters-properties-region.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-0-then-properties-parameters-properties-region.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-0-then-properties-parameters-properties-region.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-0-then-properties-parameters.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-0-then-properties-parameters.md index 8d72d185..3d700287 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-0-then-properties-parameters.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-0-then-properties-parameters.md @@ -4,43 +4,137 @@ # parameters Properties -| Property | Type | Required | Nullable | Defined by | -| :------------------------------ | :------ | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| [notifications](#notifications) | `array` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-0-then-properties-parameters-properties-notifications.md "undefined#/properties/services/items/allOf/1/then/allOf/85/then/allOf/0/then/properties/parameters/properties/notifications") | +| Property | Type | Required | Nullable | Defined by | +| :--------------------------------- | :------- | :------- | :------------- | :--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [allow\_access](#allow_access) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-0-then-properties-parameters-properties-allow_access.md "http://example.com/schemas/postgres-free-create.json#/properties/services/items/allOf/1/then/allOf/85/then/allOf/0/then/properties/parameters/properties/allow_access") | +| [engine\_version](#engine_version) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-0-then-properties-parameters-properties-engine_version.md "http://example.com/schemas/postgres-free-create.json#/properties/services/items/allOf/1/then/allOf/85/then/allOf/0/then/properties/parameters/properties/engine_version") | +| [locale](#locale) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-0-then-properties-parameters-properties-locale.md "http://example.com/schemas/postgres-free-create.json#/properties/services/items/allOf/1/then/allOf/85/then/allOf/0/then/properties/parameters/properties/locale") | +| [region](#region) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-0-then-properties-parameters-properties-region.md "http://example.com/schemas/postgres-free-create.json#/properties/services/items/allOf/1/then/allOf/85/then/allOf/0/then/properties/parameters/properties/region") | +| Additional Properties | Any | Optional | can be null | | -## notifications +## allow\_access +Comma separated list of IPs and CF landscape domains from which connectivity to the instance can be established. Default behaviour will be to block all access to the instance from any public IP or CF Domain. +`allow_access` -`notifications` +* is optional + +* Type: `string` + +* cannot be null + +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-0-then-properties-parameters-properties-allow_access.md "http://example.com/schemas/postgres-free-create.json#/properties/services/items/allOf/1/then/allOf/85/then/allOf/0/then/properties/parameters/properties/allow_access") + +### allow\_access Type + +`string` + +## engine\_version + +The major version of the PostgreSQL database to use. If not provided, the major version is defaulted to 12 + +`engine_version` * is optional -* Type: `object[]` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-0-then-properties-parameters-properties-notifications-items.md)) +* Type: `string` * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-0-then-properties-parameters-properties-notifications.md "undefined#/properties/services/items/allOf/1/then/allOf/85/then/allOf/0/then/properties/parameters/properties/notifications") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-0-then-properties-parameters-properties-engine_version.md "http://example.com/schemas/postgres-free-create.json#/properties/services/items/allOf/1/then/allOf/85/then/allOf/0/then/properties/parameters/properties/engine_version") -### notifications Type +### engine\_version Type -`object[]` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-0-then-properties-parameters-properties-notifications-items.md)) +`string` -### notifications Constraints +### engine\_version Constraints -**maximum number of items**: the maximum number of items for this array is: `1` +**enum**: the value of this property must be equal to one of the following values: -**minimum number of items**: the minimum number of items for this array is: `0` +| Value | Explanation | +| :----- | :---------- | +| `"11"` | | +| `"12"` | | +| `"13"` | | +| `"14"` | | -### notifications Default Value +### engine\_version Default Value The default value is: ```json -[ - { - "destinationName": "", - "usage": "" - } -] +"12" ``` + +## locale + +Indicates the locale for the instance (TODO) + +`locale` + +* is optional + +* Type: `string` + +* cannot be null + +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-0-then-properties-parameters-properties-locale.md "http://example.com/schemas/postgres-free-create.json#/properties/services/items/allOf/1/then/allOf/85/then/allOf/0/then/properties/parameters/properties/locale") + +### locale Type + +`string` + +### locale Default Value + +The default value is: + +```json +"en_US" +``` + +## region + +The infrastructure region where the instance will be deployed. + +`region` + +* is optional + +* Type: `string` + +* cannot be null + +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-0-then-properties-parameters-properties-region.md "http://example.com/schemas/postgres-free-create.json#/properties/services/items/allOf/1/then/allOf/85/then/allOf/0/then/properties/parameters/properties/region") + +### region Type + +`string` + +### region Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :----------------- | :---------- | +| `"ap-northeast-1"` | | +| `"ap-northeast-2"` | | +| `"ap-northeast-3"` | | +| `"ap-south-1"` | | +| `"ap-southeast-1"` | | +| `"ap-southeast-2"` | | +| `"ca-central-1"` | | +| `"eu-central-1"` | | +| `"eu-north-1"` | | +| `"eu-west-1"` | | +| `"eu-west-2"` | | +| `"eu-west-3"` | | +| `"sa-east-1"` | | +| `"us-east-1"` | | +| `"us-east-2"` | | +| `"us-west-1"` | | +| `"us-west-2"` | | + +## Additional Properties + +Additional properties are allowed and do not have to follow a specific schema diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-0-then.md index 46e060cc..bcb5410f 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-0-then.md @@ -4,21 +4,24 @@ unknown # then Properties -| Property | Type | Required | Nullable | Defined by | -| :------------------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-0-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/85/then/allOf/0/then/properties/plan") | -| [parameters](#parameters) | `object` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-0-then-properties-parameters.md "undefined#/properties/services/items/allOf/1/then/allOf/85/then/allOf/0/then/properties/parameters") | +| Property | Type | Required | Nullable | Defined by | +| :------------------------ | :------------ | :------- | :------------- | :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-0-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/85/then/allOf/0/then/properties/plan") | +| [parameters](#parameters) | `object` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-0-then-properties-parameters.md "http://example.com/schemas/postgres-free-create.json#/properties/services/items/allOf/1/then/allOf/85/then/allOf/0/then/properties/parameters") | ## plan -service plan >receiver< for >print< is available in data centers: +service plan >free< for >postgresql-db< is available in data centers: +* {'region': 'ap10', 'name': 'Australia (Sydney)'} +* {'region': 'ap11', 'name': 'Singapore'} +* {'region': 'ap12', 'name': 'South Korea (Seoul)'} +* {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} +* {'region': 'ca10', 'name': 'Canada (Montreal)'} * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} * {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} -* {'region': 'eu20', 'name': 'Europe (Netherlands)'} +* {'region': 'jp10', 'name': 'Japan (Tokyo)'} * {'region': 'us10', 'name': 'US East (VA)'} -* {'region': 'us20', 'name': 'US West (WA)'} -* {'region': 'us21', 'name': 'US East (VA)'} `plan` @@ -46,7 +49,7 @@ unknown * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-0-then-properties-parameters.md "undefined#/properties/services/items/allOf/1/then/allOf/85/then/allOf/0/then/properties/parameters") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-0-then-properties-parameters.md "http://example.com/schemas/postgres-free-create.json#/properties/services/items/allOf/1/then/allOf/85/then/allOf/0/then/properties/parameters") ### parameters Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-1-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-1-if-properties-plan.md index f3b80b48..9afdf414 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-1-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-1-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"sender" +"premium" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-1-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-1-if.md index f462e6ec..94f4d9e9 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-1-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-1-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"sender" +"premium" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-1-then-properties-parameters-properties-allow_access.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-1-then-properties-parameters-properties-allow_access.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-1-then-properties-parameters-properties-allow_access.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-1-then-properties-parameters-properties-allow_access.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-1-then-properties-parameters-properties-audit_log_level-items.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-1-then-properties-parameters-properties-audit_log_level-items.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-1-then-properties-parameters-properties-audit_log_level-items.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-1-then-properties-parameters-properties-audit_log_level-items.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-1-then-properties-parameters-properties-audit_log_level.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-1-then-properties-parameters-properties-audit_log_level.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-1-then-properties-parameters-properties-audit_log_level.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-1-then-properties-parameters-properties-audit_log_level.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-1-then-properties-parameters-properties-db_parameters-items-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-1-then-properties-parameters-properties-db_parameters-items-properties-name.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-1-then-properties-parameters-properties-db_parameters-items-properties-name.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-1-then-properties-parameters-properties-db_parameters-items-properties-name.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-1-then-properties-parameters-properties-db_parameters-items-properties-value.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-1-then-properties-parameters-properties-db_parameters-items-properties-value.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-1-then-properties-parameters-properties-db_parameters-items-properties-value.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-1-then-properties-parameters-properties-db_parameters-items-properties-value.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-1-then-properties-parameters-properties-db_parameters-items.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-1-then-properties-parameters-properties-db_parameters-items.md similarity index 83% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-1-then-properties-parameters-properties-db_parameters-items.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-1-then-properties-parameters-properties-db_parameters-items.md index a551dc67..6e43475b 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-1-then-properties-parameters-properties-db_parameters-items.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-1-then-properties-parameters-properties-db_parameters-items.md @@ -1,13 +1,13 @@ ## items Type -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-1-then-properties-parameters-properties-db_parameters-items.md)) +`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-1-then-properties-parameters-properties-db_parameters-items.md)) # items Properties | Property | Type | Required | Nullable | Defined by | | :-------------- | :------- | :------- | :------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [name](#name) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-1-then-properties-parameters-properties-db_parameters-items-properties-name.md "http://example.com/schemas/postgres-premium-create.json#/properties/services/items/allOf/1/then/allOf/84/then/allOf/1/then/properties/parameters/properties/db_parameters/items/properties/name") | -| [value](#value) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-1-then-properties-parameters-properties-db_parameters-items-properties-value.md "http://example.com/schemas/postgres-premium-create.json#/properties/services/items/allOf/1/then/allOf/84/then/allOf/1/then/properties/parameters/properties/db_parameters/items/properties/value") | +| [name](#name) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-1-then-properties-parameters-properties-db_parameters-items-properties-name.md "http://example.com/schemas/postgres-premium-create.json#/properties/services/items/allOf/1/then/allOf/85/then/allOf/1/then/properties/parameters/properties/db_parameters/items/properties/name") | +| [value](#value) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-1-then-properties-parameters-properties-db_parameters-items-properties-value.md "http://example.com/schemas/postgres-premium-create.json#/properties/services/items/allOf/1/then/allOf/85/then/allOf/1/then/properties/parameters/properties/db_parameters/items/properties/value") | ## name @@ -21,7 +21,7 @@ Name of the system configuration * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-1-then-properties-parameters-properties-db_parameters-items-properties-name.md "http://example.com/schemas/postgres-premium-create.json#/properties/services/items/allOf/1/then/allOf/84/then/allOf/1/then/properties/parameters/properties/db_parameters/items/properties/name") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-1-then-properties-parameters-properties-db_parameters-items-properties-name.md "http://example.com/schemas/postgres-premium-create.json#/properties/services/items/allOf/1/then/allOf/85/then/allOf/1/then/properties/parameters/properties/db_parameters/items/properties/name") ### name Type @@ -51,7 +51,7 @@ Value of the system configuration * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-1-then-properties-parameters-properties-db_parameters-items-properties-value.md "http://example.com/schemas/postgres-premium-create.json#/properties/services/items/allOf/1/then/allOf/84/then/allOf/1/then/properties/parameters/properties/db_parameters/items/properties/value") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-1-then-properties-parameters-properties-db_parameters-items-properties-value.md "http://example.com/schemas/postgres-premium-create.json#/properties/services/items/allOf/1/then/allOf/85/then/allOf/1/then/properties/parameters/properties/db_parameters/items/properties/value") ### value Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-1-then-properties-parameters-properties-db_parameters.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-1-then-properties-parameters-properties-db_parameters.md similarity index 78% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-1-then-properties-parameters-properties-db_parameters.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-1-then-properties-parameters-properties-db_parameters.md index a7825286..16c7a911 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-1-then-properties-parameters-properties-db_parameters.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-1-then-properties-parameters-properties-db_parameters.md @@ -1,6 +1,6 @@ ## db\_parameters Type -`object[]` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-1-then-properties-parameters-properties-db_parameters-items.md)) +`object[]` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-1-then-properties-parameters-properties-db_parameters-items.md)) ## db\_parameters Constraints diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-1-then-properties-parameters-properties-engine_version.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-1-then-properties-parameters-properties-engine_version.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-1-then-properties-parameters-properties-engine_version.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-1-then-properties-parameters-properties-engine_version.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-1-then-properties-parameters-properties-locale.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-1-then-properties-parameters-properties-locale.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-1-then-properties-parameters-properties-locale.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-1-then-properties-parameters-properties-locale.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-1-then-properties-parameters-properties-maintenance_window-properties-day_of_week.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-1-then-properties-parameters-properties-maintenance_window-properties-day_of_week.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-1-then-properties-parameters-properties-maintenance_window-properties-day_of_week.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-1-then-properties-parameters-properties-maintenance_window-properties-day_of_week.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-1-then-properties-parameters-properties-maintenance_window-properties-duration.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-1-then-properties-parameters-properties-maintenance_window-properties-duration.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-1-then-properties-parameters-properties-maintenance_window-properties-duration.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-1-then-properties-parameters-properties-maintenance_window-properties-duration.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-1-then-properties-parameters-properties-maintenance_window-properties-start_hour_utc.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-1-then-properties-parameters-properties-maintenance_window-properties-start_hour_utc.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-1-then-properties-parameters-properties-maintenance_window-properties-start_hour_utc.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-1-then-properties-parameters-properties-maintenance_window-properties-start_hour_utc.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-1-then-properties-parameters-properties-maintenance_window.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-1-then-properties-parameters-properties-maintenance_window.md similarity index 84% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-1-then-properties-parameters-properties-maintenance_window.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-1-then-properties-parameters-properties-maintenance_window.md index 5b7e0d58..7b47f6a3 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-1-then-properties-parameters-properties-maintenance_window.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-1-then-properties-parameters-properties-maintenance_window.md @@ -1,14 +1,14 @@ ## maintenance\_window Type -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-1-then-properties-parameters-properties-maintenance_window.md)) +`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-1-then-properties-parameters-properties-maintenance_window.md)) # maintenance\_window Properties | Property | Type | Required | Nullable | Defined by | | :---------------------------------- | :-------- | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| [day\_of\_week](#day_of_week) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-1-then-properties-parameters-properties-maintenance_window-properties-day_of_week.md "http://example.com/schemas/postgres-premium-create.json#/properties/services/items/allOf/1/then/allOf/84/then/allOf/1/then/properties/parameters/properties/maintenance_window/properties/day_of_week") | -| [duration](#duration) | `integer` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-1-then-properties-parameters-properties-maintenance_window-properties-duration.md "http://example.com/schemas/postgres-premium-create.json#/properties/services/items/allOf/1/then/allOf/84/then/allOf/1/then/properties/parameters/properties/maintenance_window/properties/duration") | -| [start\_hour\_utc](#start_hour_utc) | `integer` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-1-then-properties-parameters-properties-maintenance_window-properties-start_hour_utc.md "http://example.com/schemas/postgres-premium-create.json#/properties/services/items/allOf/1/then/allOf/84/then/allOf/1/then/properties/parameters/properties/maintenance_window/properties/start_hour_utc") | +| [day\_of\_week](#day_of_week) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-1-then-properties-parameters-properties-maintenance_window-properties-day_of_week.md "http://example.com/schemas/postgres-premium-create.json#/properties/services/items/allOf/1/then/allOf/85/then/allOf/1/then/properties/parameters/properties/maintenance_window/properties/day_of_week") | +| [duration](#duration) | `integer` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-1-then-properties-parameters-properties-maintenance_window-properties-duration.md "http://example.com/schemas/postgres-premium-create.json#/properties/services/items/allOf/1/then/allOf/85/then/allOf/1/then/properties/parameters/properties/maintenance_window/properties/duration") | +| [start\_hour\_utc](#start_hour_utc) | `integer` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-1-then-properties-parameters-properties-maintenance_window-properties-start_hour_utc.md "http://example.com/schemas/postgres-premium-create.json#/properties/services/items/allOf/1/then/allOf/85/then/allOf/1/then/properties/parameters/properties/maintenance_window/properties/start_hour_utc") | ## day\_of\_week @@ -22,7 +22,7 @@ Day of the week when the PostgreSQL database instance can be patched. * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-1-then-properties-parameters-properties-maintenance_window-properties-day_of_week.md "http://example.com/schemas/postgres-premium-create.json#/properties/services/items/allOf/1/then/allOf/84/then/allOf/1/then/properties/parameters/properties/maintenance_window/properties/day_of_week") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-1-then-properties-parameters-properties-maintenance_window-properties-day_of_week.md "http://example.com/schemas/postgres-premium-create.json#/properties/services/items/allOf/1/then/allOf/85/then/allOf/1/then/properties/parameters/properties/maintenance_window/properties/day_of_week") ### day\_of\_week Type @@ -62,7 +62,7 @@ Duration of the time block in hours. * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-1-then-properties-parameters-properties-maintenance_window-properties-duration.md "http://example.com/schemas/postgres-premium-create.json#/properties/services/items/allOf/1/then/allOf/84/then/allOf/1/then/properties/parameters/properties/maintenance_window/properties/duration") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-1-then-properties-parameters-properties-maintenance_window-properties-duration.md "http://example.com/schemas/postgres-premium-create.json#/properties/services/items/allOf/1/then/allOf/85/then/allOf/1/then/properties/parameters/properties/maintenance_window/properties/duration") ### duration Type @@ -94,7 +94,7 @@ Start hour of the time block (in UTC). * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-1-then-properties-parameters-properties-maintenance_window-properties-start_hour_utc.md "http://example.com/schemas/postgres-premium-create.json#/properties/services/items/allOf/1/then/allOf/84/then/allOf/1/then/properties/parameters/properties/maintenance_window/properties/start_hour_utc") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-1-then-properties-parameters-properties-maintenance_window-properties-start_hour_utc.md "http://example.com/schemas/postgres-premium-create.json#/properties/services/items/allOf/1/then/allOf/85/then/allOf/1/then/properties/parameters/properties/maintenance_window/properties/start_hour_utc") ### start\_hour\_utc Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-1-then-properties-parameters-properties-memory.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-1-then-properties-parameters-properties-memory.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-1-then-properties-parameters-properties-memory.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-1-then-properties-parameters-properties-memory.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-1-then-properties-parameters-properties-multi_az.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-1-then-properties-parameters-properties-multi_az.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-1-then-properties-parameters-properties-multi_az.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-1-then-properties-parameters-properties-multi_az.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-1-then-properties-parameters-properties-region.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-1-then-properties-parameters-properties-region.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-1-then-properties-parameters-properties-region.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-1-then-properties-parameters-properties-region.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-1-then-properties-parameters-properties-storage.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-1-then-properties-parameters-properties-storage.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-1-then-properties-parameters-properties-storage.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-1-then-properties-parameters-properties-storage.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-1-then-properties-parameters.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-1-then-properties-parameters.md similarity index 80% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-1-then-properties-parameters.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-1-then-properties-parameters.md index a93f383b..1cf7080c 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-1-then-properties-parameters.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-1-then-properties-parameters.md @@ -1,21 +1,21 @@ ## parameters Type -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-1-then-properties-parameters.md)) +`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-1-then-properties-parameters.md)) # parameters Properties | Property | Type | Required | Nullable | Defined by | | :----------------------------------------- | :-------- | :------- | :------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [allow\_access](#allow_access) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-1-then-properties-parameters-properties-allow_access.md "http://example.com/schemas/postgres-premium-create.json#/properties/services/items/allOf/1/then/allOf/84/then/allOf/1/then/properties/parameters/properties/allow_access") | -| [audit\_log\_level](#audit_log_level) | `array` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-1-then-properties-parameters-properties-audit_log_level.md "http://example.com/schemas/postgres-premium-create.json#/properties/services/items/allOf/1/then/allOf/84/then/allOf/1/then/properties/parameters/properties/audit_log_level") | -| [db\_parameters](#db_parameters) | `array` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-1-then-properties-parameters-properties-db_parameters.md "http://example.com/schemas/postgres-premium-create.json#/properties/services/items/allOf/1/then/allOf/84/then/allOf/1/then/properties/parameters/properties/db_parameters") | -| [engine\_version](#engine_version) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-1-then-properties-parameters-properties-engine_version.md "http://example.com/schemas/postgres-premium-create.json#/properties/services/items/allOf/1/then/allOf/84/then/allOf/1/then/properties/parameters/properties/engine_version") | -| [locale](#locale) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-1-then-properties-parameters-properties-locale.md "http://example.com/schemas/postgres-premium-create.json#/properties/services/items/allOf/1/then/allOf/84/then/allOf/1/then/properties/parameters/properties/locale") | -| [maintenance\_window](#maintenance_window) | `object` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-1-then-properties-parameters-properties-maintenance_window.md "http://example.com/schemas/postgres-premium-create.json#/properties/services/items/allOf/1/then/allOf/84/then/allOf/1/then/properties/parameters/properties/maintenance_window") | -| [memory](#memory) | `integer` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-1-then-properties-parameters-properties-memory.md "http://example.com/schemas/postgres-premium-create.json#/properties/services/items/allOf/1/then/allOf/84/then/allOf/1/then/properties/parameters/properties/memory") | -| [multi\_az](#multi_az) | `boolean` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-1-then-properties-parameters-properties-multi_az.md "http://example.com/schemas/postgres-premium-create.json#/properties/services/items/allOf/1/then/allOf/84/then/allOf/1/then/properties/parameters/properties/multi_az") | -| [region](#region) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-1-then-properties-parameters-properties-region.md "http://example.com/schemas/postgres-premium-create.json#/properties/services/items/allOf/1/then/allOf/84/then/allOf/1/then/properties/parameters/properties/region") | -| [storage](#storage) | `integer` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-1-then-properties-parameters-properties-storage.md "http://example.com/schemas/postgres-premium-create.json#/properties/services/items/allOf/1/then/allOf/84/then/allOf/1/then/properties/parameters/properties/storage") | +| [allow\_access](#allow_access) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-1-then-properties-parameters-properties-allow_access.md "http://example.com/schemas/postgres-premium-create.json#/properties/services/items/allOf/1/then/allOf/85/then/allOf/1/then/properties/parameters/properties/allow_access") | +| [audit\_log\_level](#audit_log_level) | `array` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-1-then-properties-parameters-properties-audit_log_level.md "http://example.com/schemas/postgres-premium-create.json#/properties/services/items/allOf/1/then/allOf/85/then/allOf/1/then/properties/parameters/properties/audit_log_level") | +| [db\_parameters](#db_parameters) | `array` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-1-then-properties-parameters-properties-db_parameters.md "http://example.com/schemas/postgres-premium-create.json#/properties/services/items/allOf/1/then/allOf/85/then/allOf/1/then/properties/parameters/properties/db_parameters") | +| [engine\_version](#engine_version) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-1-then-properties-parameters-properties-engine_version.md "http://example.com/schemas/postgres-premium-create.json#/properties/services/items/allOf/1/then/allOf/85/then/allOf/1/then/properties/parameters/properties/engine_version") | +| [locale](#locale) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-1-then-properties-parameters-properties-locale.md "http://example.com/schemas/postgres-premium-create.json#/properties/services/items/allOf/1/then/allOf/85/then/allOf/1/then/properties/parameters/properties/locale") | +| [maintenance\_window](#maintenance_window) | `object` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-1-then-properties-parameters-properties-maintenance_window.md "http://example.com/schemas/postgres-premium-create.json#/properties/services/items/allOf/1/then/allOf/85/then/allOf/1/then/properties/parameters/properties/maintenance_window") | +| [memory](#memory) | `integer` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-1-then-properties-parameters-properties-memory.md "http://example.com/schemas/postgres-premium-create.json#/properties/services/items/allOf/1/then/allOf/85/then/allOf/1/then/properties/parameters/properties/memory") | +| [multi\_az](#multi_az) | `boolean` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-1-then-properties-parameters-properties-multi_az.md "http://example.com/schemas/postgres-premium-create.json#/properties/services/items/allOf/1/then/allOf/85/then/allOf/1/then/properties/parameters/properties/multi_az") | +| [region](#region) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-1-then-properties-parameters-properties-region.md "http://example.com/schemas/postgres-premium-create.json#/properties/services/items/allOf/1/then/allOf/85/then/allOf/1/then/properties/parameters/properties/region") | +| [storage](#storage) | `integer` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-1-then-properties-parameters-properties-storage.md "http://example.com/schemas/postgres-premium-create.json#/properties/services/items/allOf/1/then/allOf/85/then/allOf/1/then/properties/parameters/properties/storage") | | Additional Properties | Any | Optional | can be null | | ## allow\_access @@ -30,7 +30,7 @@ Comma separated list of IPs and CF landscape domains from which connectivity to * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-1-then-properties-parameters-properties-allow_access.md "http://example.com/schemas/postgres-premium-create.json#/properties/services/items/allOf/1/then/allOf/84/then/allOf/1/then/properties/parameters/properties/allow_access") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-1-then-properties-parameters-properties-allow_access.md "http://example.com/schemas/postgres-premium-create.json#/properties/services/items/allOf/1/then/allOf/85/then/allOf/1/then/properties/parameters/properties/allow_access") ### allow\_access Type @@ -48,7 +48,7 @@ Defines which classes of statements will be logged by session audit logging * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-1-then-properties-parameters-properties-audit_log_level.md "http://example.com/schemas/postgres-premium-create.json#/properties/services/items/allOf/1/then/allOf/84/then/allOf/1/then/properties/parameters/properties/audit_log_level") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-1-then-properties-parameters-properties-audit_log_level.md "http://example.com/schemas/postgres-premium-create.json#/properties/services/items/allOf/1/then/allOf/85/then/allOf/1/then/properties/parameters/properties/audit_log_level") ### audit\_log\_level Type @@ -79,15 +79,15 @@ Database system configurations * is optional -* Type: `object[]` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-1-then-properties-parameters-properties-db_parameters-items.md)) +* Type: `object[]` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-1-then-properties-parameters-properties-db_parameters-items.md)) * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-1-then-properties-parameters-properties-db_parameters.md "http://example.com/schemas/postgres-premium-create.json#/properties/services/items/allOf/1/then/allOf/84/then/allOf/1/then/properties/parameters/properties/db_parameters") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-1-then-properties-parameters-properties-db_parameters.md "http://example.com/schemas/postgres-premium-create.json#/properties/services/items/allOf/1/then/allOf/85/then/allOf/1/then/properties/parameters/properties/db_parameters") ### db\_parameters Type -`object[]` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-1-then-properties-parameters-properties-db_parameters-items.md)) +`object[]` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-1-then-properties-parameters-properties-db_parameters-items.md)) ### db\_parameters Constraints @@ -105,7 +105,7 @@ The major version of the PostgreSQL database to use. If not provided, the major * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-1-then-properties-parameters-properties-engine_version.md "http://example.com/schemas/postgres-premium-create.json#/properties/services/items/allOf/1/then/allOf/84/then/allOf/1/then/properties/parameters/properties/engine_version") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-1-then-properties-parameters-properties-engine_version.md "http://example.com/schemas/postgres-premium-create.json#/properties/services/items/allOf/1/then/allOf/85/then/allOf/1/then/properties/parameters/properties/engine_version") ### engine\_version Type @@ -142,7 +142,7 @@ Indicates the locale for the instance (TODO) * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-1-then-properties-parameters-properties-locale.md "http://example.com/schemas/postgres-premium-create.json#/properties/services/items/allOf/1/then/allOf/84/then/allOf/1/then/properties/parameters/properties/locale") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-1-then-properties-parameters-properties-locale.md "http://example.com/schemas/postgres-premium-create.json#/properties/services/items/allOf/1/then/allOf/85/then/allOf/1/then/properties/parameters/properties/locale") ### locale Type @@ -164,15 +164,15 @@ Indicates the preferred maintenance window for the PostgreSQL database instance. * is optional -* Type: `object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-1-then-properties-parameters-properties-maintenance_window.md)) +* Type: `object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-1-then-properties-parameters-properties-maintenance_window.md)) * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-1-then-properties-parameters-properties-maintenance_window.md "http://example.com/schemas/postgres-premium-create.json#/properties/services/items/allOf/1/then/allOf/84/then/allOf/1/then/properties/parameters/properties/maintenance_window") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-1-then-properties-parameters-properties-maintenance_window.md "http://example.com/schemas/postgres-premium-create.json#/properties/services/items/allOf/1/then/allOf/85/then/allOf/1/then/properties/parameters/properties/maintenance_window") ### maintenance\_window Type -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-1-then-properties-parameters-properties-maintenance_window.md)) +`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-1-then-properties-parameters-properties-maintenance_window.md)) ## memory @@ -186,7 +186,7 @@ Defines amount of memory (in GB) to be used for the instance. The number of CPU * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-1-then-properties-parameters-properties-memory.md "http://example.com/schemas/postgres-premium-create.json#/properties/services/items/allOf/1/then/allOf/84/then/allOf/1/then/properties/parameters/properties/memory") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-1-then-properties-parameters-properties-memory.md "http://example.com/schemas/postgres-premium-create.json#/properties/services/items/allOf/1/then/allOf/85/then/allOf/1/then/properties/parameters/properties/memory") ### memory Type @@ -225,7 +225,7 @@ Indicates whether the instance is a multi-AZ deployment. If not provided, it is * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-1-then-properties-parameters-properties-multi_az.md "http://example.com/schemas/postgres-premium-create.json#/properties/services/items/allOf/1/then/allOf/84/then/allOf/1/then/properties/parameters/properties/multi_az") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-1-then-properties-parameters-properties-multi_az.md "http://example.com/schemas/postgres-premium-create.json#/properties/services/items/allOf/1/then/allOf/85/then/allOf/1/then/properties/parameters/properties/multi_az") ### multi\_az Type @@ -251,7 +251,7 @@ The infrastructure region where the instance will be deployed. * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-1-then-properties-parameters-properties-region.md "http://example.com/schemas/postgres-premium-create.json#/properties/services/items/allOf/1/then/allOf/84/then/allOf/1/then/properties/parameters/properties/region") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-1-then-properties-parameters-properties-region.md "http://example.com/schemas/postgres-premium-create.json#/properties/services/items/allOf/1/then/allOf/85/then/allOf/1/then/properties/parameters/properties/region") ### region Type @@ -293,7 +293,7 @@ Amount of storage in GB to be allocated to the instance * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-1-then-properties-parameters-properties-storage.md "http://example.com/schemas/postgres-premium-create.json#/properties/services/items/allOf/1/then/allOf/84/then/allOf/1/then/properties/parameters/properties/storage") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-1-then-properties-parameters-properties-storage.md "http://example.com/schemas/postgres-premium-create.json#/properties/services/items/allOf/1/then/allOf/85/then/allOf/1/then/properties/parameters/properties/storage") ### storage Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-1-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-1-then.md index 9bef6311..cbfc015b 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-1-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-1-then.md @@ -4,20 +4,34 @@ unknown # then Properties -| Property | Type | Required | Nullable | Defined by | -| :------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/85/then/allOf/1/then/properties/plan") | +| Property | Type | Required | Nullable | Defined by | +| :------------------------ | :------------ | :------- | :------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/85/then/allOf/1/then/properties/plan") | +| [parameters](#parameters) | `object` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-1-then-properties-parameters.md "http://example.com/schemas/postgres-premium-create.json#/properties/services/items/allOf/1/then/allOf/85/then/allOf/1/then/properties/parameters") | ## plan -service plan >sender< for >print< is available in data centers: +service plan >premium< for >postgresql-db< is available in data centers: +* {'region': 'ap10', 'name': 'Australia (Sydney)'} +* {'region': 'ap11', 'name': 'Singapore'} +* {'region': 'ap12', 'name': 'South Korea (Seoul)'} +* {'region': 'ap20', 'name': 'Australia (Sydney) Azure'} +* {'region': 'ap21', 'name': 'Singapore'} +* {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} +* {'region': 'ca10', 'name': 'Canada (Montreal)'} +* {'region': 'ch20', 'name': 'cf-ch20'} * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} * {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} * {'region': 'eu20', 'name': 'Europe (Netherlands)'} +* {'region': 'eu30', 'name': 'Europe (Frankfurt)'} +* {'region': 'in30', 'name': 'India (Mumbai)'} +* {'region': 'jp10', 'name': 'Japan (Tokyo)'} +* {'region': 'jp20', 'name': 'Japan (Tokyo)'} * {'region': 'us10', 'name': 'US East (VA)'} * {'region': 'us20', 'name': 'US West (WA)'} * {'region': 'us21', 'name': 'US East (VA)'} +* {'region': 'us30', 'name': 'US Central (IA)'} `plan` @@ -32,3 +46,21 @@ service plan >sender< for >print< is available in data centers: ### plan Type unknown + +## parameters + + + +`parameters` + +* is required + +* Type: `object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-1-then-properties-parameters.md)) + +* cannot be null + +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-1-then-properties-parameters.md "http://example.com/schemas/postgres-premium-create.json#/properties/services/items/allOf/1/then/allOf/85/then/allOf/1/then/properties/parameters") + +### parameters Type + +`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-1-then-properties-parameters.md)) diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-2-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-2-if-properties-plan.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-2-if-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-2-if-properties-plan.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-83-then-allof-3-if-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-2-if-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-83-then-allof-3-if-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-2-if-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-26-then-allof-2-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-2-if.md similarity index 83% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-26-then-allof-2-if.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-2-if.md index a04bed0b..e3cde979 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-26-then-allof-2-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-2-if.md @@ -6,7 +6,7 @@ unknown | Property | Type | Required | Nullable | Defined by | | :------------ | :------------ | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-26-then-allof-2-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/26/then/allOf/2/if/properties/plan") | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-2-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/85/then/allOf/2/if/properties/plan") | ## plan @@ -20,7 +20,7 @@ unknown * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-26-then-allof-2-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/26/then/allOf/2/if/properties/plan") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-2-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/85/then/allOf/2/if/properties/plan") ### plan Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-2-then-properties-parameters-properties-allow_access.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-2-then-properties-parameters-properties-allow_access.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-2-then-properties-parameters-properties-allow_access.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-2-then-properties-parameters-properties-allow_access.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-2-then-properties-parameters-properties-audit_log_level-items.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-2-then-properties-parameters-properties-audit_log_level-items.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-2-then-properties-parameters-properties-audit_log_level-items.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-2-then-properties-parameters-properties-audit_log_level-items.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-2-then-properties-parameters-properties-audit_log_level.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-2-then-properties-parameters-properties-audit_log_level.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-2-then-properties-parameters-properties-audit_log_level.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-2-then-properties-parameters-properties-audit_log_level.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-2-then-properties-parameters-properties-db_parameters-items-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-2-then-properties-parameters-properties-db_parameters-items-properties-name.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-2-then-properties-parameters-properties-db_parameters-items-properties-name.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-2-then-properties-parameters-properties-db_parameters-items-properties-name.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-2-then-properties-parameters-properties-db_parameters-items-properties-value.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-2-then-properties-parameters-properties-db_parameters-items-properties-value.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-2-then-properties-parameters-properties-db_parameters-items-properties-value.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-2-then-properties-parameters-properties-db_parameters-items-properties-value.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-2-then-properties-parameters-properties-db_parameters-items.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-2-then-properties-parameters-properties-db_parameters-items.md similarity index 83% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-2-then-properties-parameters-properties-db_parameters-items.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-2-then-properties-parameters-properties-db_parameters-items.md index 6d421e9d..9a2b39ae 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-2-then-properties-parameters-properties-db_parameters-items.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-2-then-properties-parameters-properties-db_parameters-items.md @@ -1,13 +1,13 @@ ## items Type -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-2-then-properties-parameters-properties-db_parameters-items.md)) +`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-2-then-properties-parameters-properties-db_parameters-items.md)) # items Properties | Property | Type | Required | Nullable | Defined by | | :-------------- | :------- | :------- | :------------- | :--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [name](#name) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-2-then-properties-parameters-properties-db_parameters-items-properties-name.md "http://example.com/schemas/postgres-standard-create.json#/properties/services/items/allOf/1/then/allOf/84/then/allOf/2/then/properties/parameters/properties/db_parameters/items/properties/name") | -| [value](#value) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-2-then-properties-parameters-properties-db_parameters-items-properties-value.md "http://example.com/schemas/postgres-standard-create.json#/properties/services/items/allOf/1/then/allOf/84/then/allOf/2/then/properties/parameters/properties/db_parameters/items/properties/value") | +| [name](#name) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-2-then-properties-parameters-properties-db_parameters-items-properties-name.md "http://example.com/schemas/postgres-standard-create.json#/properties/services/items/allOf/1/then/allOf/85/then/allOf/2/then/properties/parameters/properties/db_parameters/items/properties/name") | +| [value](#value) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-2-then-properties-parameters-properties-db_parameters-items-properties-value.md "http://example.com/schemas/postgres-standard-create.json#/properties/services/items/allOf/1/then/allOf/85/then/allOf/2/then/properties/parameters/properties/db_parameters/items/properties/value") | ## name @@ -21,7 +21,7 @@ Name of the system configuration * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-2-then-properties-parameters-properties-db_parameters-items-properties-name.md "http://example.com/schemas/postgres-standard-create.json#/properties/services/items/allOf/1/then/allOf/84/then/allOf/2/then/properties/parameters/properties/db_parameters/items/properties/name") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-2-then-properties-parameters-properties-db_parameters-items-properties-name.md "http://example.com/schemas/postgres-standard-create.json#/properties/services/items/allOf/1/then/allOf/85/then/allOf/2/then/properties/parameters/properties/db_parameters/items/properties/name") ### name Type @@ -51,7 +51,7 @@ Value of the system configuration * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-2-then-properties-parameters-properties-db_parameters-items-properties-value.md "http://example.com/schemas/postgres-standard-create.json#/properties/services/items/allOf/1/then/allOf/84/then/allOf/2/then/properties/parameters/properties/db_parameters/items/properties/value") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-2-then-properties-parameters-properties-db_parameters-items-properties-value.md "http://example.com/schemas/postgres-standard-create.json#/properties/services/items/allOf/1/then/allOf/85/then/allOf/2/then/properties/parameters/properties/db_parameters/items/properties/value") ### value Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-2-then-properties-parameters-properties-db_parameters.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-2-then-properties-parameters-properties-db_parameters.md similarity index 78% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-2-then-properties-parameters-properties-db_parameters.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-2-then-properties-parameters-properties-db_parameters.md index c4f03e91..817d5d81 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-2-then-properties-parameters-properties-db_parameters.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-2-then-properties-parameters-properties-db_parameters.md @@ -1,6 +1,6 @@ ## db\_parameters Type -`object[]` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-2-then-properties-parameters-properties-db_parameters-items.md)) +`object[]` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-2-then-properties-parameters-properties-db_parameters-items.md)) ## db\_parameters Constraints diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-2-then-properties-parameters-properties-engine_version.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-2-then-properties-parameters-properties-engine_version.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-2-then-properties-parameters-properties-engine_version.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-2-then-properties-parameters-properties-engine_version.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-2-then-properties-parameters-properties-locale.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-2-then-properties-parameters-properties-locale.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-2-then-properties-parameters-properties-locale.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-2-then-properties-parameters-properties-locale.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-2-then-properties-parameters-properties-maintenance_window-properties-day_of_week.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-2-then-properties-parameters-properties-maintenance_window-properties-day_of_week.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-2-then-properties-parameters-properties-maintenance_window-properties-day_of_week.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-2-then-properties-parameters-properties-maintenance_window-properties-day_of_week.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-2-then-properties-parameters-properties-maintenance_window-properties-duration.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-2-then-properties-parameters-properties-maintenance_window-properties-duration.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-2-then-properties-parameters-properties-maintenance_window-properties-duration.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-2-then-properties-parameters-properties-maintenance_window-properties-duration.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-2-then-properties-parameters-properties-maintenance_window-properties-start_hour_utc.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-2-then-properties-parameters-properties-maintenance_window-properties-start_hour_utc.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-2-then-properties-parameters-properties-maintenance_window-properties-start_hour_utc.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-2-then-properties-parameters-properties-maintenance_window-properties-start_hour_utc.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-2-then-properties-parameters-properties-maintenance_window.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-2-then-properties-parameters-properties-maintenance_window.md similarity index 84% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-2-then-properties-parameters-properties-maintenance_window.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-2-then-properties-parameters-properties-maintenance_window.md index e9d289f9..7ac7580c 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-2-then-properties-parameters-properties-maintenance_window.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-2-then-properties-parameters-properties-maintenance_window.md @@ -1,14 +1,14 @@ ## maintenance\_window Type -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-2-then-properties-parameters-properties-maintenance_window.md)) +`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-2-then-properties-parameters-properties-maintenance_window.md)) # maintenance\_window Properties | Property | Type | Required | Nullable | Defined by | | :---------------------------------- | :-------- | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [day\_of\_week](#day_of_week) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-2-then-properties-parameters-properties-maintenance_window-properties-day_of_week.md "http://example.com/schemas/postgres-standard-create.json#/properties/services/items/allOf/1/then/allOf/84/then/allOf/2/then/properties/parameters/properties/maintenance_window/properties/day_of_week") | -| [duration](#duration) | `integer` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-2-then-properties-parameters-properties-maintenance_window-properties-duration.md "http://example.com/schemas/postgres-standard-create.json#/properties/services/items/allOf/1/then/allOf/84/then/allOf/2/then/properties/parameters/properties/maintenance_window/properties/duration") | -| [start\_hour\_utc](#start_hour_utc) | `integer` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-2-then-properties-parameters-properties-maintenance_window-properties-start_hour_utc.md "http://example.com/schemas/postgres-standard-create.json#/properties/services/items/allOf/1/then/allOf/84/then/allOf/2/then/properties/parameters/properties/maintenance_window/properties/start_hour_utc") | +| [day\_of\_week](#day_of_week) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-2-then-properties-parameters-properties-maintenance_window-properties-day_of_week.md "http://example.com/schemas/postgres-standard-create.json#/properties/services/items/allOf/1/then/allOf/85/then/allOf/2/then/properties/parameters/properties/maintenance_window/properties/day_of_week") | +| [duration](#duration) | `integer` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-2-then-properties-parameters-properties-maintenance_window-properties-duration.md "http://example.com/schemas/postgres-standard-create.json#/properties/services/items/allOf/1/then/allOf/85/then/allOf/2/then/properties/parameters/properties/maintenance_window/properties/duration") | +| [start\_hour\_utc](#start_hour_utc) | `integer` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-2-then-properties-parameters-properties-maintenance_window-properties-start_hour_utc.md "http://example.com/schemas/postgres-standard-create.json#/properties/services/items/allOf/1/then/allOf/85/then/allOf/2/then/properties/parameters/properties/maintenance_window/properties/start_hour_utc") | ## day\_of\_week @@ -22,7 +22,7 @@ Day of the week when the PostgreSQL database instance can be patched. * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-2-then-properties-parameters-properties-maintenance_window-properties-day_of_week.md "http://example.com/schemas/postgres-standard-create.json#/properties/services/items/allOf/1/then/allOf/84/then/allOf/2/then/properties/parameters/properties/maintenance_window/properties/day_of_week") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-2-then-properties-parameters-properties-maintenance_window-properties-day_of_week.md "http://example.com/schemas/postgres-standard-create.json#/properties/services/items/allOf/1/then/allOf/85/then/allOf/2/then/properties/parameters/properties/maintenance_window/properties/day_of_week") ### day\_of\_week Type @@ -62,7 +62,7 @@ Duration of the time block in hours. * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-2-then-properties-parameters-properties-maintenance_window-properties-duration.md "http://example.com/schemas/postgres-standard-create.json#/properties/services/items/allOf/1/then/allOf/84/then/allOf/2/then/properties/parameters/properties/maintenance_window/properties/duration") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-2-then-properties-parameters-properties-maintenance_window-properties-duration.md "http://example.com/schemas/postgres-standard-create.json#/properties/services/items/allOf/1/then/allOf/85/then/allOf/2/then/properties/parameters/properties/maintenance_window/properties/duration") ### duration Type @@ -94,7 +94,7 @@ Start hour of the time block (in UTC). * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-2-then-properties-parameters-properties-maintenance_window-properties-start_hour_utc.md "http://example.com/schemas/postgres-standard-create.json#/properties/services/items/allOf/1/then/allOf/84/then/allOf/2/then/properties/parameters/properties/maintenance_window/properties/start_hour_utc") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-2-then-properties-parameters-properties-maintenance_window-properties-start_hour_utc.md "http://example.com/schemas/postgres-standard-create.json#/properties/services/items/allOf/1/then/allOf/85/then/allOf/2/then/properties/parameters/properties/maintenance_window/properties/start_hour_utc") ### start\_hour\_utc Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-2-then-properties-parameters-properties-memory.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-2-then-properties-parameters-properties-memory.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-2-then-properties-parameters-properties-memory.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-2-then-properties-parameters-properties-memory.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-2-then-properties-parameters-properties-multi_az.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-2-then-properties-parameters-properties-multi_az.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-2-then-properties-parameters-properties-multi_az.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-2-then-properties-parameters-properties-multi_az.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-2-then-properties-parameters-properties-region.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-2-then-properties-parameters-properties-region.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-2-then-properties-parameters-properties-region.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-2-then-properties-parameters-properties-region.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-2-then-properties-parameters-properties-storage.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-2-then-properties-parameters-properties-storage.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-2-then-properties-parameters-properties-storage.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-2-then-properties-parameters-properties-storage.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-2-then-properties-parameters.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-2-then-properties-parameters.md similarity index 80% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-2-then-properties-parameters.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-2-then-properties-parameters.md index 5c5acb45..4e6f4ad3 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-2-then-properties-parameters.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-2-then-properties-parameters.md @@ -1,21 +1,21 @@ ## parameters Type -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-2-then-properties-parameters.md)) +`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-2-then-properties-parameters.md)) # parameters Properties | Property | Type | Required | Nullable | Defined by | | :----------------------------------------- | :-------- | :------- | :------------- | :--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [allow\_access](#allow_access) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-2-then-properties-parameters-properties-allow_access.md "http://example.com/schemas/postgres-standard-create.json#/properties/services/items/allOf/1/then/allOf/84/then/allOf/2/then/properties/parameters/properties/allow_access") | -| [audit\_log\_level](#audit_log_level) | `array` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-2-then-properties-parameters-properties-audit_log_level.md "http://example.com/schemas/postgres-standard-create.json#/properties/services/items/allOf/1/then/allOf/84/then/allOf/2/then/properties/parameters/properties/audit_log_level") | -| [db\_parameters](#db_parameters) | `array` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-2-then-properties-parameters-properties-db_parameters.md "http://example.com/schemas/postgres-standard-create.json#/properties/services/items/allOf/1/then/allOf/84/then/allOf/2/then/properties/parameters/properties/db_parameters") | -| [engine\_version](#engine_version) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-2-then-properties-parameters-properties-engine_version.md "http://example.com/schemas/postgres-standard-create.json#/properties/services/items/allOf/1/then/allOf/84/then/allOf/2/then/properties/parameters/properties/engine_version") | -| [locale](#locale) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-2-then-properties-parameters-properties-locale.md "http://example.com/schemas/postgres-standard-create.json#/properties/services/items/allOf/1/then/allOf/84/then/allOf/2/then/properties/parameters/properties/locale") | -| [maintenance\_window](#maintenance_window) | `object` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-2-then-properties-parameters-properties-maintenance_window.md "http://example.com/schemas/postgres-standard-create.json#/properties/services/items/allOf/1/then/allOf/84/then/allOf/2/then/properties/parameters/properties/maintenance_window") | -| [memory](#memory) | `integer` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-2-then-properties-parameters-properties-memory.md "http://example.com/schemas/postgres-standard-create.json#/properties/services/items/allOf/1/then/allOf/84/then/allOf/2/then/properties/parameters/properties/memory") | -| [multi\_az](#multi_az) | `boolean` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-2-then-properties-parameters-properties-multi_az.md "http://example.com/schemas/postgres-standard-create.json#/properties/services/items/allOf/1/then/allOf/84/then/allOf/2/then/properties/parameters/properties/multi_az") | -| [region](#region) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-2-then-properties-parameters-properties-region.md "http://example.com/schemas/postgres-standard-create.json#/properties/services/items/allOf/1/then/allOf/84/then/allOf/2/then/properties/parameters/properties/region") | -| [storage](#storage) | `integer` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-2-then-properties-parameters-properties-storage.md "http://example.com/schemas/postgres-standard-create.json#/properties/services/items/allOf/1/then/allOf/84/then/allOf/2/then/properties/parameters/properties/storage") | +| [allow\_access](#allow_access) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-2-then-properties-parameters-properties-allow_access.md "http://example.com/schemas/postgres-standard-create.json#/properties/services/items/allOf/1/then/allOf/85/then/allOf/2/then/properties/parameters/properties/allow_access") | +| [audit\_log\_level](#audit_log_level) | `array` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-2-then-properties-parameters-properties-audit_log_level.md "http://example.com/schemas/postgres-standard-create.json#/properties/services/items/allOf/1/then/allOf/85/then/allOf/2/then/properties/parameters/properties/audit_log_level") | +| [db\_parameters](#db_parameters) | `array` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-2-then-properties-parameters-properties-db_parameters.md "http://example.com/schemas/postgres-standard-create.json#/properties/services/items/allOf/1/then/allOf/85/then/allOf/2/then/properties/parameters/properties/db_parameters") | +| [engine\_version](#engine_version) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-2-then-properties-parameters-properties-engine_version.md "http://example.com/schemas/postgres-standard-create.json#/properties/services/items/allOf/1/then/allOf/85/then/allOf/2/then/properties/parameters/properties/engine_version") | +| [locale](#locale) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-2-then-properties-parameters-properties-locale.md "http://example.com/schemas/postgres-standard-create.json#/properties/services/items/allOf/1/then/allOf/85/then/allOf/2/then/properties/parameters/properties/locale") | +| [maintenance\_window](#maintenance_window) | `object` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-2-then-properties-parameters-properties-maintenance_window.md "http://example.com/schemas/postgres-standard-create.json#/properties/services/items/allOf/1/then/allOf/85/then/allOf/2/then/properties/parameters/properties/maintenance_window") | +| [memory](#memory) | `integer` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-2-then-properties-parameters-properties-memory.md "http://example.com/schemas/postgres-standard-create.json#/properties/services/items/allOf/1/then/allOf/85/then/allOf/2/then/properties/parameters/properties/memory") | +| [multi\_az](#multi_az) | `boolean` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-2-then-properties-parameters-properties-multi_az.md "http://example.com/schemas/postgres-standard-create.json#/properties/services/items/allOf/1/then/allOf/85/then/allOf/2/then/properties/parameters/properties/multi_az") | +| [region](#region) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-2-then-properties-parameters-properties-region.md "http://example.com/schemas/postgres-standard-create.json#/properties/services/items/allOf/1/then/allOf/85/then/allOf/2/then/properties/parameters/properties/region") | +| [storage](#storage) | `integer` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-2-then-properties-parameters-properties-storage.md "http://example.com/schemas/postgres-standard-create.json#/properties/services/items/allOf/1/then/allOf/85/then/allOf/2/then/properties/parameters/properties/storage") | | Additional Properties | Any | Optional | can be null | | ## allow\_access @@ -30,7 +30,7 @@ Comma separated list of IPs and CF landscape domains from which connectivity to * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-2-then-properties-parameters-properties-allow_access.md "http://example.com/schemas/postgres-standard-create.json#/properties/services/items/allOf/1/then/allOf/84/then/allOf/2/then/properties/parameters/properties/allow_access") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-2-then-properties-parameters-properties-allow_access.md "http://example.com/schemas/postgres-standard-create.json#/properties/services/items/allOf/1/then/allOf/85/then/allOf/2/then/properties/parameters/properties/allow_access") ### allow\_access Type @@ -48,7 +48,7 @@ Defines which classes of statements will be logged by session audit logging * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-2-then-properties-parameters-properties-audit_log_level.md "http://example.com/schemas/postgres-standard-create.json#/properties/services/items/allOf/1/then/allOf/84/then/allOf/2/then/properties/parameters/properties/audit_log_level") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-2-then-properties-parameters-properties-audit_log_level.md "http://example.com/schemas/postgres-standard-create.json#/properties/services/items/allOf/1/then/allOf/85/then/allOf/2/then/properties/parameters/properties/audit_log_level") ### audit\_log\_level Type @@ -79,15 +79,15 @@ Database system configurations * is optional -* Type: `object[]` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-2-then-properties-parameters-properties-db_parameters-items.md)) +* Type: `object[]` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-2-then-properties-parameters-properties-db_parameters-items.md)) * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-2-then-properties-parameters-properties-db_parameters.md "http://example.com/schemas/postgres-standard-create.json#/properties/services/items/allOf/1/then/allOf/84/then/allOf/2/then/properties/parameters/properties/db_parameters") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-2-then-properties-parameters-properties-db_parameters.md "http://example.com/schemas/postgres-standard-create.json#/properties/services/items/allOf/1/then/allOf/85/then/allOf/2/then/properties/parameters/properties/db_parameters") ### db\_parameters Type -`object[]` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-2-then-properties-parameters-properties-db_parameters-items.md)) +`object[]` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-2-then-properties-parameters-properties-db_parameters-items.md)) ### db\_parameters Constraints @@ -105,7 +105,7 @@ The major version of the PostgreSQL database to use. If not provided, the major * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-2-then-properties-parameters-properties-engine_version.md "http://example.com/schemas/postgres-standard-create.json#/properties/services/items/allOf/1/then/allOf/84/then/allOf/2/then/properties/parameters/properties/engine_version") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-2-then-properties-parameters-properties-engine_version.md "http://example.com/schemas/postgres-standard-create.json#/properties/services/items/allOf/1/then/allOf/85/then/allOf/2/then/properties/parameters/properties/engine_version") ### engine\_version Type @@ -142,7 +142,7 @@ Indicates the locale for the instance (TODO) * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-2-then-properties-parameters-properties-locale.md "http://example.com/schemas/postgres-standard-create.json#/properties/services/items/allOf/1/then/allOf/84/then/allOf/2/then/properties/parameters/properties/locale") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-2-then-properties-parameters-properties-locale.md "http://example.com/schemas/postgres-standard-create.json#/properties/services/items/allOf/1/then/allOf/85/then/allOf/2/then/properties/parameters/properties/locale") ### locale Type @@ -164,15 +164,15 @@ Indicates the preferred maintenance window for the PostgreSQL database instance. * is optional -* Type: `object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-2-then-properties-parameters-properties-maintenance_window.md)) +* Type: `object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-2-then-properties-parameters-properties-maintenance_window.md)) * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-2-then-properties-parameters-properties-maintenance_window.md "http://example.com/schemas/postgres-standard-create.json#/properties/services/items/allOf/1/then/allOf/84/then/allOf/2/then/properties/parameters/properties/maintenance_window") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-2-then-properties-parameters-properties-maintenance_window.md "http://example.com/schemas/postgres-standard-create.json#/properties/services/items/allOf/1/then/allOf/85/then/allOf/2/then/properties/parameters/properties/maintenance_window") ### maintenance\_window Type -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-2-then-properties-parameters-properties-maintenance_window.md)) +`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-2-then-properties-parameters-properties-maintenance_window.md)) ## memory @@ -186,7 +186,7 @@ Defines amount of memory (in GB) to be used for the instance. The number of CPU * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-2-then-properties-parameters-properties-memory.md "http://example.com/schemas/postgres-standard-create.json#/properties/services/items/allOf/1/then/allOf/84/then/allOf/2/then/properties/parameters/properties/memory") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-2-then-properties-parameters-properties-memory.md "http://example.com/schemas/postgres-standard-create.json#/properties/services/items/allOf/1/then/allOf/85/then/allOf/2/then/properties/parameters/properties/memory") ### memory Type @@ -221,7 +221,7 @@ Indicates whether the instance is a multi-AZ deployment. If not provided, it is * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-2-then-properties-parameters-properties-multi_az.md "http://example.com/schemas/postgres-standard-create.json#/properties/services/items/allOf/1/then/allOf/84/then/allOf/2/then/properties/parameters/properties/multi_az") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-2-then-properties-parameters-properties-multi_az.md "http://example.com/schemas/postgres-standard-create.json#/properties/services/items/allOf/1/then/allOf/85/then/allOf/2/then/properties/parameters/properties/multi_az") ### multi\_az Type @@ -247,7 +247,7 @@ The infrastructure region where the instance will be deployed. * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-2-then-properties-parameters-properties-region.md "http://example.com/schemas/postgres-standard-create.json#/properties/services/items/allOf/1/then/allOf/84/then/allOf/2/then/properties/parameters/properties/region") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-2-then-properties-parameters-properties-region.md "http://example.com/schemas/postgres-standard-create.json#/properties/services/items/allOf/1/then/allOf/85/then/allOf/2/then/properties/parameters/properties/region") ### region Type @@ -289,7 +289,7 @@ Amount of storage in GB to be allocated to the instance * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-84-then-allof-2-then-properties-parameters-properties-storage.md "http://example.com/schemas/postgres-standard-create.json#/properties/services/items/allOf/1/then/allOf/84/then/allOf/2/then/properties/parameters/properties/storage") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-2-then-properties-parameters-properties-storage.md "http://example.com/schemas/postgres-standard-create.json#/properties/services/items/allOf/1/then/allOf/85/then/allOf/2/then/properties/parameters/properties/storage") ### storage Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-83-then-allof-2-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-2-then-properties-plan.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-83-then-allof-2-then-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-2-then-properties-plan.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-83-then-allof-3-then-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-2-then-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-83-then-allof-3-then-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-2-then-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-2-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-2-then.md new file mode 100644 index 00000000..ec0fca68 --- /dev/null +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-2-then.md @@ -0,0 +1,66 @@ +## then Type + +unknown + +# then Properties + +| Property | Type | Required | Nullable | Defined by | +| :------------------------ | :------------ | :------- | :------------- | :--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-2-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/85/then/allOf/2/then/properties/plan") | +| [parameters](#parameters) | `object` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-2-then-properties-parameters.md "http://example.com/schemas/postgres-standard-create.json#/properties/services/items/allOf/1/then/allOf/85/then/allOf/2/then/properties/parameters") | + +## plan + +service plan >standard< for >postgresql-db< is available in data centers: + +* {'region': 'ap10', 'name': 'Australia (Sydney)'} +* {'region': 'ap11', 'name': 'Singapore'} +* {'region': 'ap12', 'name': 'South Korea (Seoul)'} +* {'region': 'ap20', 'name': 'Australia (Sydney) Azure'} +* {'region': 'ap21', 'name': 'Singapore'} +* {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} +* {'region': 'ca10', 'name': 'Canada (Montreal)'} +* {'region': 'ch20', 'name': 'cf-ch20'} +* {'region': 'eu10', 'name': 'Europe (Frankfurt)'} +* {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} +* {'region': 'eu20', 'name': 'Europe (Netherlands)'} +* {'region': 'eu30', 'name': 'Europe (Frankfurt)'} +* {'region': 'in30', 'name': 'India (Mumbai)'} +* {'region': 'jp10', 'name': 'Japan (Tokyo)'} +* {'region': 'jp20', 'name': 'Japan (Tokyo)'} +* {'region': 'us10', 'name': 'US East (VA)'} +* {'region': 'us20', 'name': 'US West (WA)'} +* {'region': 'us21', 'name': 'US East (VA)'} +* {'region': 'us30', 'name': 'US Central (IA)'} + +`plan` + +* is optional + +* Type: unknown + +* cannot be null + +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-2-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/85/then/allOf/2/then/properties/plan") + +### plan Type + +unknown + +## parameters + + + +`parameters` + +* is required + +* Type: `object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-2-then-properties-parameters.md)) + +* cannot be null + +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-2-then-properties-parameters.md "http://example.com/schemas/postgres-standard-create.json#/properties/services/items/allOf/1/then/allOf/85/then/allOf/2/then/properties/parameters") + +### parameters Type + +`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-2-then-properties-parameters.md)) diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-83-then-allof-2.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-2.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-83-then-allof-2.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-2.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-20-then-allof-1-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-3-if-properties-plan.md similarity index 92% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-20-then-allof-1-if-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-3-if-properties-plan.md index 72b03500..bd5a7e14 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-20-then-allof-1-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-3-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"local" +"storage" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-83-then-allof-4-if-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-3-if-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-83-then-allof-4-if-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-3-if-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-83-then-allof-3-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-3-if.md similarity index 82% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-83-then-allof-3-if.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-3-if.md index 7568e8ca..75cc3a8d 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-83-then-allof-3-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-3-if.md @@ -6,7 +6,7 @@ unknown | Property | Type | Required | Nullable | Defined by | | :------------ | :------------ | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-83-then-allof-3-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/83/then/allOf/3/if/properties/plan") | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-3-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/85/then/allOf/3/if/properties/plan") | ## plan @@ -20,7 +20,7 @@ unknown * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-83-then-allof-3-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/83/then/allOf/3/if/properties/plan") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-3-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/85/then/allOf/3/if/properties/plan") ### plan Type @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"xsmall" +"storage" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-83-then-allof-3-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-3-then-properties-plan.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-83-then-allof-3-then-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-3-then-properties-plan.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-83-then-allof-4-then-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-3-then-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-83-then-allof-4-then-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-3-then-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-83-then-allof-3-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-3-then.md similarity index 86% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-83-then-allof-3-then.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-3-then.md index 887390e0..f533f9fc 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-83-then-allof-3-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-3-then.md @@ -6,11 +6,11 @@ unknown | Property | Type | Required | Nullable | Defined by | | :------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-83-then-allof-3-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/83/then/allOf/3/then/properties/plan") | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-3-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/85/then/allOf/3/then/properties/plan") | ## plan -service plan >xsmall< for >postgresql< is available in data centers: +service plan >storage< for >postgresql-db< is available in data centers: * {'region': 'ap10', 'name': 'Australia (Sydney)'} * {'region': 'ap11', 'name': 'Singapore'} @@ -40,7 +40,7 @@ service plan >xsmall< for >postgresql< is available in data centers: * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-83-then-allof-3-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/83/then/allOf/3/then/properties/plan") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-3-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/85/then/allOf/3/then/properties/plan") ### plan Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-83-then-allof-3.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-3.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-83-then-allof-3.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-3.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-4-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-4-if-properties-plan.md new file mode 100644 index 00000000..1b42121f --- /dev/null +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-4-if-properties-plan.md @@ -0,0 +1,11 @@ +## plan Type + +unknown + +## plan Constraints + +**constant**: the value of this property must be equal to: + +```json +"storage_ha" +``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-87-then-allof-1-if-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-4-if-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-87-then-allof-1-if-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-4-if-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-83-then-allof-4-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-4-if.md similarity index 82% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-83-then-allof-4-if.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-4-if.md index d261292c..bbdbe555 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-83-then-allof-4-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-4-if.md @@ -6,7 +6,7 @@ unknown | Property | Type | Required | Nullable | Defined by | | :------------ | :------------ | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-83-then-allof-4-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/83/then/allOf/4/if/properties/plan") | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-4-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/85/then/allOf/4/if/properties/plan") | ## plan @@ -20,7 +20,7 @@ unknown * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-83-then-allof-4-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/83/then/allOf/4/if/properties/plan") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-4-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/85/then/allOf/4/if/properties/plan") ### plan Type @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"xxsmall" +"storage_ha" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-83-then-allof-4-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-4-then-properties-plan.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-83-then-allof-4-then-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-4-then-properties-plan.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-87-then-allof-1-then-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-4-then-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-87-then-allof-1-then-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-4-then-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-83-then-allof-4-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-4-then.md similarity index 86% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-83-then-allof-4-then.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-4-then.md index f11bd0d4..9d2343a3 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-83-then-allof-4-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-4-then.md @@ -6,11 +6,11 @@ unknown | Property | Type | Required | Nullable | Defined by | | :------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-83-then-allof-4-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/83/then/allOf/4/then/properties/plan") | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-4-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/85/then/allOf/4/then/properties/plan") | ## plan -service plan >xxsmall< for >postgresql< is available in data centers: +service plan >storage\_ha< for >postgresql-db< is available in data centers: * {'region': 'ap10', 'name': 'Australia (Sydney)'} * {'region': 'ap11', 'name': 'Singapore'} @@ -40,7 +40,7 @@ service plan >xxsmall< for >postgresql< is available in data centers: * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-83-then-allof-4-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/83/then/allOf/4/then/properties/plan") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-4-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/85/then/allOf/4/then/properties/plan") ### plan Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-83-then-allof-4.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-4.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-83-then-allof-4.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-4.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-properties-plan.md index 804b490c..a02f6e20 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-properties-plan.md @@ -6,7 +6,10 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :----------- | :---------- | -| `"receiver"` | | -| `"sender"` | | +| Value | Explanation | +| :------------- | :---------- | +| `"free"` | | +| `"premium"` | | +| `"standard"` | | +| `"storage"` | | +| `"storage_ha"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then.md index 9edef7a1..77111bdb 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then.md @@ -8,6 +8,12 @@ all of * [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-1.md "check type definition") +* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-2.md "check type definition") + +* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-3.md "check type definition") + +* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-4.md "check type definition") + # then Properties | Property | Type | Required | Nullable | Defined by | @@ -37,14 +43,17 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :----------- | :---------- | -| `"receiver"` | | -| `"sender"` | | +| Value | Explanation | +| :------------- | :---------- | +| `"free"` | | +| `"premium"` | | +| `"standard"` | | +| `"storage"` | | +| `"storage_ha"` | | ## name -SAP Print service: SAP Print service is used in business applications that are based on SAP Business Technology Platform (BTP) as well as other SAP Cloud products across SAP Intelligent Enterprise Suite. Using this service, the business application's development team can easily establish the connection between SAP Print service and the customer’s local printers. This means you can significantly reduce the development effort. +PostgreSQL on SAP BTP, hyperscaler option: PostgreSQL on SAP BTP, hyperscaler option provides a managed relational database service, based on native PostgreSQL offerings from cloud providers AWS, Microsoft Azure, Google Cloud Platform and Alicloud. `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-86-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-86-if-properties-name.md index 774e5799..bfb122c1 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-86-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-86-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"privatelink" +"print" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-86-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-86-if.md index e12bce76..61a72fc0 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-86-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-86-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"privatelink" +"print" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-86-then-allof-0-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-86-then-allof-0-if-properties-plan.md index 538fc6a8..28613236 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-86-then-allof-0-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-86-then-allof-0-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"beta" +"receiver" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-86-then-allof-0-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-86-then-allof-0-if.md index dede071c..ef047a5a 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-86-then-allof-0-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-86-then-allof-0-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"beta" +"receiver" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-86-then-allof-0-then-properties-parameters-properties-notifications-default-0.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-86-then-allof-0-then-properties-parameters-properties-notifications-default-0.md new file mode 100644 index 00000000..d22a2571 --- /dev/null +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-86-then-allof-0-then-properties-parameters-properties-notifications-default-0.md @@ -0,0 +1,3 @@ +## 0 Type + +unknown diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-0-then-properties-parameters-properties-notifications-items-properties-destinationname.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-86-then-allof-0-then-properties-parameters-properties-notifications-items-properties-destinationname.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-0-then-properties-parameters-properties-notifications-items-properties-destinationname.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-86-then-allof-0-then-properties-parameters-properties-notifications-items-properties-destinationname.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-0-then-properties-parameters-properties-notifications-items-properties-usage.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-86-then-allof-0-then-properties-parameters-properties-notifications-items-properties-usage.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-0-then-properties-parameters-properties-notifications-items-properties-usage.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-86-then-allof-0-then-properties-parameters-properties-notifications-items-properties-usage.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-0-then-properties-parameters-properties-notifications-items.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-86-then-allof-0-then-properties-parameters-properties-notifications-items.md similarity index 83% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-0-then-properties-parameters-properties-notifications-items.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-86-then-allof-0-then-properties-parameters-properties-notifications-items.md index 4c5eb87f..d93d22d1 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-0-then-properties-parameters-properties-notifications-items.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-86-then-allof-0-then-properties-parameters-properties-notifications-items.md @@ -1,13 +1,13 @@ ## items Type -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-0-then-properties-parameters-properties-notifications-items.md)) +`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-86-then-allof-0-then-properties-parameters-properties-notifications-items.md)) # items Properties | Property | Type | Required | Nullable | Defined by | | :---------------------------------- | :------- | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| [destinationName](#destinationname) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-0-then-properties-parameters-properties-notifications-items-properties-destinationname.md "undefined#/properties/services/items/allOf/1/then/allOf/85/then/allOf/0/then/properties/parameters/properties/notifications/items/properties/destinationName") | -| [usage](#usage) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-0-then-properties-parameters-properties-notifications-items-properties-usage.md "undefined#/properties/services/items/allOf/1/then/allOf/85/then/allOf/0/then/properties/parameters/properties/notifications/items/properties/usage") | +| [destinationName](#destinationname) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-86-then-allof-0-then-properties-parameters-properties-notifications-items-properties-destinationname.md "undefined#/properties/services/items/allOf/1/then/allOf/86/then/allOf/0/then/properties/parameters/properties/notifications/items/properties/destinationName") | +| [usage](#usage) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-86-then-allof-0-then-properties-parameters-properties-notifications-items-properties-usage.md "undefined#/properties/services/items/allOf/1/then/allOf/86/then/allOf/0/then/properties/parameters/properties/notifications/items/properties/usage") | ## destinationName @@ -21,7 +21,7 @@ * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-0-then-properties-parameters-properties-notifications-items-properties-destinationname.md "undefined#/properties/services/items/allOf/1/then/allOf/85/then/allOf/0/then/properties/parameters/properties/notifications/items/properties/destinationName") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-86-then-allof-0-then-properties-parameters-properties-notifications-items-properties-destinationname.md "undefined#/properties/services/items/allOf/1/then/allOf/86/then/allOf/0/then/properties/parameters/properties/notifications/items/properties/destinationName") ### destinationName Type @@ -49,7 +49,7 @@ * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-0-then-properties-parameters-properties-notifications-items-properties-usage.md "undefined#/properties/services/items/allOf/1/then/allOf/85/then/allOf/0/then/properties/parameters/properties/notifications/items/properties/usage") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-86-then-allof-0-then-properties-parameters-properties-notifications-items-properties-usage.md "undefined#/properties/services/items/allOf/1/then/allOf/86/then/allOf/0/then/properties/parameters/properties/notifications/items/properties/usage") ### usage Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-0-then-properties-parameters-properties-notifications.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-86-then-allof-0-then-properties-parameters-properties-notifications.md similarity index 87% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-0-then-properties-parameters-properties-notifications.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-86-then-allof-0-then-properties-parameters-properties-notifications.md index 69510dc2..ee932dc5 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-0-then-properties-parameters-properties-notifications.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-86-then-allof-0-then-properties-parameters-properties-notifications.md @@ -1,6 +1,6 @@ ## notifications Type -`object[]` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-85-then-allof-0-then-properties-parameters-properties-notifications-items.md)) +`object[]` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-86-then-allof-0-then-properties-parameters-properties-notifications-items.md)) ## notifications Constraints diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-86-then-allof-0-then-properties-parameters.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-86-then-allof-0-then-properties-parameters.md index 2a27a3be..ff0cd9e5 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-86-then-allof-0-then-properties-parameters.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-86-then-allof-0-then-properties-parameters.md @@ -4,87 +4,43 @@ # parameters Properties -| Property | Type | Required | Nullable | Defined by | -| :-------------------------------- | :-------- | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| [desiredAZs](#desiredazs) | `integer` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-86-then-allof-0-then-properties-parameters-properties-desired-azs.md "undefined#/properties/services/items/allOf/1/then/allOf/86/then/allOf/0/then/properties/parameters/properties/desiredAZs") | -| [policyDocument](#policydocument) | `object` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-86-then-allof-0-then-properties-parameters-properties-endpoint-policy-document.md "undefined#/properties/services/items/allOf/1/then/allOf/86/then/allOf/0/then/properties/parameters/properties/policyDocument") | -| [serviceName](#servicename) | `string` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-86-then-allof-0-then-properties-parameters-properties-service-name.md "undefined#/properties/services/items/allOf/1/then/allOf/86/then/allOf/0/then/properties/parameters/properties/serviceName") | +| Property | Type | Required | Nullable | Defined by | +| :------------------------------ | :------ | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| [notifications](#notifications) | `array` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-86-then-allof-0-then-properties-parameters-properties-notifications.md "undefined#/properties/services/items/allOf/1/then/allOf/86/then/allOf/0/then/properties/parameters/properties/notifications") | -## desiredAZs +## notifications -Specifies the desired number of Availability Zones of the endpoint. -Example: 2 -By default, SAP Private Link service only creates the endpoint if the endpoint service is deployed in the same AZs as SAP BTP, to maximize High Availability. -In case fewer AZs than SAP BTPs should be allowed (i.e. only one or two AZs), please explicitly allow it by specifying the desired number of AZs via this parameter. - -`desiredAZs` +`notifications` * is optional -* Type: `integer` ([Desired AZs](btpsa-usecase-properties-services-items-allof-1-then-allof-86-then-allof-0-then-properties-parameters-properties-desired-azs.md)) +* Type: `object[]` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-86-then-allof-0-then-properties-parameters-properties-notifications-items.md)) * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-86-then-allof-0-then-properties-parameters-properties-desired-azs.md "undefined#/properties/services/items/allOf/1/then/allOf/86/then/allOf/0/then/properties/parameters/properties/desiredAZs") - -### desiredAZs Type - -`integer` ([Desired AZs](btpsa-usecase-properties-services-items-allof-1-then-allof-86-then-allof-0-then-properties-parameters-properties-desired-azs.md)) - -### desiredAZs Default Value +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-86-then-allof-0-then-properties-parameters-properties-notifications.md "undefined#/properties/services/items/allOf/1/then/allOf/86/then/allOf/0/then/properties/parameters/properties/notifications") -The default value is: - -```json -3 -``` +### notifications Type -## policyDocument - -Specifies the Endpoint Policy.\n\nThe endpoint policy controls which AWS principals (AWS accounts, IAM users, and IAM roles) can use the VPC endpoint to access the endpoint service. - -`policyDocument` - -* is optional - -* Type: `object` ([Endpoint Policy Document](btpsa-usecase-properties-services-items-allof-1-then-allof-86-then-allof-0-then-properties-parameters-properties-endpoint-policy-document.md)) - -* cannot be null +`object[]` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-86-then-allof-0-then-properties-parameters-properties-notifications-items.md)) -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-86-then-allof-0-then-properties-parameters-properties-endpoint-policy-document.md "undefined#/properties/services/items/allOf/1/then/allOf/86/then/allOf/0/then/properties/parameters/properties/policyDocument") +### notifications Constraints -### policyDocument Type +**maximum number of items**: the maximum number of items for this array is: `1` -`object` ([Endpoint Policy Document](btpsa-usecase-properties-services-items-allof-1-then-allof-86-then-allof-0-then-properties-parameters-properties-endpoint-policy-document.md)) +**minimum number of items**: the minimum number of items for this array is: `0` -## serviceName +### notifications Default Value -Specifies the service name for which the VPC Endpoint should be created.\n\nExample: "com.amazonaws.us-east-1.monitoring" or "com.amazonaws.vpce.us-east-1.vpce-svc-09ac27c2a0cd319fa" for AWS or custom VPC Endpoint Services respectively - -`serviceName` - -* is required - -* Type: `string` ([Service Name](btpsa-usecase-properties-services-items-allof-1-then-allof-86-then-allof-0-then-properties-parameters-properties-service-name.md)) - -* cannot be null - -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-86-then-allof-0-then-properties-parameters-properties-service-name.md "undefined#/properties/services/items/allOf/1/then/allOf/86/then/allOf/0/then/properties/parameters/properties/serviceName") - -### serviceName Type - -`string` ([Service Name](btpsa-usecase-properties-services-items-allof-1-then-allof-86-then-allof-0-then-properties-parameters-properties-service-name.md)) - -### serviceName Constraints - -**minimum length**: the minimum number of characters for this string is: `1` - -**pattern**: the string must match the following regular expression: +The default value is: -```regexp -com\.amazonaws\..+ +```json +[ + { + "destinationName": "", + "usage": "" + } +] ``` - -[try pattern](https://regexr.com/?expression=com%5C.amazonaws%5C..%2B "try regular expression with regexr.com") diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-86-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-86-then-allof-0-then.md index 9735050c..6b9d086b 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-86-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-86-then-allof-0-then.md @@ -11,10 +11,14 @@ unknown ## plan -service plan >beta< for >privatelink< is available in data centers: +service plan >receiver< for >print< is available in data centers: * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} +* {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} +* {'region': 'eu20', 'name': 'Europe (Netherlands)'} * {'region': 'us10', 'name': 'US East (VA)'} +* {'region': 'us20', 'name': 'US West (WA)'} +* {'region': 'us21', 'name': 'US East (VA)'} `plan` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-86-then-allof-1-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-86-then-allof-1-if-properties-plan.md index 126392b1..f3b80b48 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-86-then-allof-1-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-86-then-allof-1-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"standard" +"sender" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-86-then-allof-1-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-86-then-allof-1-if.md index df597add..3b6f83ea 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-86-then-allof-1-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-86-then-allof-1-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"standard" +"sender" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-86-then-allof-1-then-properties-parameters-properties-desired-azs.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-86-then-allof-1-then-properties-parameters-properties-desired-azs.md deleted file mode 100644 index 05c80586..00000000 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-86-then-allof-1-then-properties-parameters-properties-desired-azs.md +++ /dev/null @@ -1,11 +0,0 @@ -## desiredAZs Type - -`integer` ([Desired AZs](btpsa-usecase-properties-services-items-allof-1-then-allof-86-then-allof-1-then-properties-parameters-properties-desired-azs.md)) - -## desiredAZs Default Value - -The default value is: - -```json -3 -``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-86-then-allof-1-then-properties-parameters-properties-endpoint-policy-document.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-86-then-allof-1-then-properties-parameters-properties-endpoint-policy-document.md deleted file mode 100644 index 0f35f99f..00000000 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-86-then-allof-1-then-properties-parameters-properties-endpoint-policy-document.md +++ /dev/null @@ -1,8 +0,0 @@ -## policyDocument Type - -`object` ([Endpoint Policy Document](btpsa-usecase-properties-services-items-allof-1-then-allof-86-then-allof-1-then-properties-parameters-properties-endpoint-policy-document.md)) - -# policyDocument Properties - -| Property | Type | Required | Nullable | Defined by | -| :------- | :--- | :------- | :------- | :--------- | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-86-then-allof-1-then-properties-parameters-properties-service-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-86-then-allof-1-then-properties-parameters-properties-service-name.md deleted file mode 100644 index 2b2282b6..00000000 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-86-then-allof-1-then-properties-parameters-properties-service-name.md +++ /dev/null @@ -1,15 +0,0 @@ -## serviceName Type - -`string` ([Service Name](btpsa-usecase-properties-services-items-allof-1-then-allof-86-then-allof-1-then-properties-parameters-properties-service-name.md)) - -## serviceName Constraints - -**minimum length**: the minimum number of characters for this string is: `1` - -**pattern**: the string must match the following regular expression: - -```regexp -com\.amazonaws\..+ -``` - -[try pattern](https://regexr.com/?expression=com%5C.amazonaws%5C..%2B "try regular expression with regexr.com") diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-86-then-allof-1-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-86-then-allof-1-then.md index 64a72a88..180ac17a 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-86-then-allof-1-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-86-then-allof-1-then.md @@ -4,19 +4,18 @@ unknown # then Properties -| Property | Type | Required | Nullable | Defined by | -| :------------------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-86-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/86/then/allOf/1/then/properties/plan") | -| [parameters](#parameters) | `object` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-86-then-allof-1-then-properties-parameters.md "undefined#/properties/services/items/allOf/1/then/allOf/86/then/allOf/1/then/properties/parameters") | +| Property | Type | Required | Nullable | Defined by | +| :------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-86-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/86/then/allOf/1/then/properties/plan") | ## plan -service plan >standard< for >privatelink< is available in data centers: +service plan >sender< for >print< is available in data centers: -* {'region': 'ap20', 'name': 'Australia (Sydney) Azure'} -* {'region': 'ap21', 'name': 'Singapore'} +* {'region': 'eu10', 'name': 'Europe (Frankfurt)'} +* {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} * {'region': 'eu20', 'name': 'Europe (Netherlands)'} -* {'region': 'jp20', 'name': 'Japan (Tokyo)'} +* {'region': 'us10', 'name': 'US East (VA)'} * {'region': 'us20', 'name': 'US West (WA)'} * {'region': 'us21', 'name': 'US East (VA)'} @@ -33,21 +32,3 @@ service plan >standard< for >privatelink< is available in data centers: ### plan Type unknown - -## parameters - - - -`parameters` - -* is required - -* Type: `object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-86-then-allof-1-then-properties-parameters.md)) - -* cannot be null - -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-86-then-allof-1-then-properties-parameters.md "undefined#/properties/services/items/allOf/1/then/allOf/86/then/allOf/1/then/properties/parameters") - -### parameters Type - -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-86-then-allof-1-then-properties-parameters.md)) diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-86-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-86-then-properties-plan.md index 796f9d62..804b490c 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-86-then-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-86-then-properties-plan.md @@ -8,5 +8,5 @@ unknown | Value | Explanation | | :----------- | :---------- | -| `"beta"` | | -| `"standard"` | | +| `"receiver"` | | +| `"sender"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-86-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-86-then.md index a3929ee8..bf9b4fb8 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-86-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-86-then.md @@ -39,12 +39,12 @@ unknown | Value | Explanation | | :----------- | :---------- | -| `"beta"` | | -| `"standard"` | | +| `"receiver"` | | +| `"sender"` | | ## name -SAP Private Link service: SAP Private Link service establishes a private connection between selected SAP BTP services and selected services in your own IaaS provider accounts. By reusing the private link functionality of our partner IaaS providers, it lets you access your services through private network connections to avoid data transfer via the public Internet. +SAP Print service: SAP Print service is used in business applications that are based on SAP Business Technology Platform (BTP) as well as other SAP Cloud products across SAP Intelligent Enterprise Suite. Using this service, the business application's development team can easily establish the connection between SAP Print service and the customer’s local printers. This means you can significantly reduce the development effort. `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-87-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-87-if-properties-name.md index 0ef550f8..774e5799 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-87-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-87-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"process-automation" +"privatelink" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-87-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-87-if.md index d3b3cd89..0126f74f 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-87-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-87-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"process-automation" +"privatelink" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-87-then-allof-0-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-87-then-allof-0-if-properties-plan.md index 46be87a8..126392b1 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-87-then-allof-0-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-87-then-allof-0-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"advanced-user" +"standard" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-87-then-allof-0-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-87-then-allof-0-if.md index 5d74823f..e087c893 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-87-then-allof-0-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-87-then-allof-0-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"advanced-user" +"standard" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-86-then-allof-0-then-properties-parameters-properties-desired-azs.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-87-then-allof-0-then-properties-parameters-properties-desired-azs.md similarity index 73% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-86-then-allof-0-then-properties-parameters-properties-desired-azs.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-87-then-allof-0-then-properties-parameters-properties-desired-azs.md index 82f39e65..3e1e4d7b 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-86-then-allof-0-then-properties-parameters-properties-desired-azs.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-87-then-allof-0-then-properties-parameters-properties-desired-azs.md @@ -1,6 +1,6 @@ ## desiredAZs Type -`integer` ([Desired AZs](btpsa-usecase-properties-services-items-allof-1-then-allof-86-then-allof-0-then-properties-parameters-properties-desired-azs.md)) +`integer` ([Desired AZs](btpsa-usecase-properties-services-items-allof-1-then-allof-87-then-allof-0-then-properties-parameters-properties-desired-azs.md)) ## desiredAZs Default Value diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-86-then-allof-0-then-properties-parameters-properties-endpoint-policy-document.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-87-then-allof-0-then-properties-parameters-properties-endpoint-policy-document.md similarity index 81% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-86-then-allof-0-then-properties-parameters-properties-endpoint-policy-document.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-87-then-allof-0-then-properties-parameters-properties-endpoint-policy-document.md index 97427e2c..77fdc914 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-86-then-allof-0-then-properties-parameters-properties-endpoint-policy-document.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-87-then-allof-0-then-properties-parameters-properties-endpoint-policy-document.md @@ -1,6 +1,6 @@ ## policyDocument Type -`object` ([Endpoint Policy Document](btpsa-usecase-properties-services-items-allof-1-then-allof-86-then-allof-0-then-properties-parameters-properties-endpoint-policy-document.md)) +`object` ([Endpoint Policy Document](btpsa-usecase-properties-services-items-allof-1-then-allof-87-then-allof-0-then-properties-parameters-properties-endpoint-policy-document.md)) # policyDocument Properties diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-86-then-allof-0-then-properties-parameters-properties-service-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-87-then-allof-0-then-properties-parameters-properties-service-name.md similarity index 87% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-86-then-allof-0-then-properties-parameters-properties-service-name.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-87-then-allof-0-then-properties-parameters-properties-service-name.md index 8f8bd2eb..05788ab5 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-86-then-allof-0-then-properties-parameters-properties-service-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-87-then-allof-0-then-properties-parameters-properties-service-name.md @@ -1,6 +1,6 @@ ## serviceName Type -`string` ([Service Name](btpsa-usecase-properties-services-items-allof-1-then-allof-86-then-allof-0-then-properties-parameters-properties-service-name.md)) +`string` ([Service Name](btpsa-usecase-properties-services-items-allof-1-then-allof-87-then-allof-0-then-properties-parameters-properties-service-name.md)) ## serviceName Constraints diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-86-then-allof-1-then-properties-parameters.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-87-then-allof-0-then-properties-parameters.md similarity index 67% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-86-then-allof-1-then-properties-parameters.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-87-then-allof-0-then-properties-parameters.md index cc450872..e4b73273 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-86-then-allof-1-then-properties-parameters.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-87-then-allof-0-then-properties-parameters.md @@ -1,14 +1,14 @@ ## parameters Type -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-86-then-allof-1-then-properties-parameters.md)) +`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-87-then-allof-0-then-properties-parameters.md)) # parameters Properties | Property | Type | Required | Nullable | Defined by | | :-------------------------------- | :-------- | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| [desiredAZs](#desiredazs) | `integer` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-86-then-allof-1-then-properties-parameters-properties-desired-azs.md "undefined#/properties/services/items/allOf/1/then/allOf/86/then/allOf/1/then/properties/parameters/properties/desiredAZs") | -| [policyDocument](#policydocument) | `object` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-86-then-allof-1-then-properties-parameters-properties-endpoint-policy-document.md "undefined#/properties/services/items/allOf/1/then/allOf/86/then/allOf/1/then/properties/parameters/properties/policyDocument") | -| [serviceName](#servicename) | `string` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-86-then-allof-1-then-properties-parameters-properties-service-name.md "undefined#/properties/services/items/allOf/1/then/allOf/86/then/allOf/1/then/properties/parameters/properties/serviceName") | +| [desiredAZs](#desiredazs) | `integer` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-87-then-allof-0-then-properties-parameters-properties-desired-azs.md "undefined#/properties/services/items/allOf/1/then/allOf/87/then/allOf/0/then/properties/parameters/properties/desiredAZs") | +| [policyDocument](#policydocument) | `object` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-87-then-allof-0-then-properties-parameters-properties-endpoint-policy-document.md "undefined#/properties/services/items/allOf/1/then/allOf/87/then/allOf/0/then/properties/parameters/properties/policyDocument") | +| [serviceName](#servicename) | `string` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-87-then-allof-0-then-properties-parameters-properties-service-name.md "undefined#/properties/services/items/allOf/1/then/allOf/87/then/allOf/0/then/properties/parameters/properties/serviceName") | ## desiredAZs @@ -23,15 +23,15 @@ In case fewer AZs than SAP BTPs should be allowed (i.e. only one or two AZs), pl * is optional -* Type: `integer` ([Desired AZs](btpsa-usecase-properties-services-items-allof-1-then-allof-86-then-allof-1-then-properties-parameters-properties-desired-azs.md)) +* Type: `integer` ([Desired AZs](btpsa-usecase-properties-services-items-allof-1-then-allof-87-then-allof-0-then-properties-parameters-properties-desired-azs.md)) * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-86-then-allof-1-then-properties-parameters-properties-desired-azs.md "undefined#/properties/services/items/allOf/1/then/allOf/86/then/allOf/1/then/properties/parameters/properties/desiredAZs") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-87-then-allof-0-then-properties-parameters-properties-desired-azs.md "undefined#/properties/services/items/allOf/1/then/allOf/87/then/allOf/0/then/properties/parameters/properties/desiredAZs") ### desiredAZs Type -`integer` ([Desired AZs](btpsa-usecase-properties-services-items-allof-1-then-allof-86-then-allof-1-then-properties-parameters-properties-desired-azs.md)) +`integer` ([Desired AZs](btpsa-usecase-properties-services-items-allof-1-then-allof-87-then-allof-0-then-properties-parameters-properties-desired-azs.md)) ### desiredAZs Default Value @@ -49,15 +49,15 @@ Specifies the Endpoint Policy.\n\nThe endpoint policy controls which AWS princip * is optional -* Type: `object` ([Endpoint Policy Document](btpsa-usecase-properties-services-items-allof-1-then-allof-86-then-allof-1-then-properties-parameters-properties-endpoint-policy-document.md)) +* Type: `object` ([Endpoint Policy Document](btpsa-usecase-properties-services-items-allof-1-then-allof-87-then-allof-0-then-properties-parameters-properties-endpoint-policy-document.md)) * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-86-then-allof-1-then-properties-parameters-properties-endpoint-policy-document.md "undefined#/properties/services/items/allOf/1/then/allOf/86/then/allOf/1/then/properties/parameters/properties/policyDocument") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-87-then-allof-0-then-properties-parameters-properties-endpoint-policy-document.md "undefined#/properties/services/items/allOf/1/then/allOf/87/then/allOf/0/then/properties/parameters/properties/policyDocument") ### policyDocument Type -`object` ([Endpoint Policy Document](btpsa-usecase-properties-services-items-allof-1-then-allof-86-then-allof-1-then-properties-parameters-properties-endpoint-policy-document.md)) +`object` ([Endpoint Policy Document](btpsa-usecase-properties-services-items-allof-1-then-allof-87-then-allof-0-then-properties-parameters-properties-endpoint-policy-document.md)) ## serviceName @@ -67,15 +67,15 @@ Specifies the service name for which the VPC Endpoint should be created.\n\nExam * is required -* Type: `string` ([Service Name](btpsa-usecase-properties-services-items-allof-1-then-allof-86-then-allof-1-then-properties-parameters-properties-service-name.md)) +* Type: `string` ([Service Name](btpsa-usecase-properties-services-items-allof-1-then-allof-87-then-allof-0-then-properties-parameters-properties-service-name.md)) * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-86-then-allof-1-then-properties-parameters-properties-service-name.md "undefined#/properties/services/items/allOf/1/then/allOf/86/then/allOf/1/then/properties/parameters/properties/serviceName") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-87-then-allof-0-then-properties-parameters-properties-service-name.md "undefined#/properties/services/items/allOf/1/then/allOf/87/then/allOf/0/then/properties/parameters/properties/serviceName") ### serviceName Type -`string` ([Service Name](btpsa-usecase-properties-services-items-allof-1-then-allof-86-then-allof-1-then-properties-parameters-properties-service-name.md)) +`string` ([Service Name](btpsa-usecase-properties-services-items-allof-1-then-allof-87-then-allof-0-then-properties-parameters-properties-service-name.md)) ### serviceName Constraints diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-87-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-87-then-allof-0-then.md index 3570be8c..b92685eb 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-87-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-87-then-allof-0-then.md @@ -4,20 +4,29 @@ unknown # then Properties -| Property | Type | Required | Nullable | Defined by | -| :------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-87-then-allof-0-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/87/then/allOf/0/then/properties/plan") | +| Property | Type | Required | Nullable | Defined by | +| :------------------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-87-then-allof-0-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/87/then/allOf/0/then/properties/plan") | +| [parameters](#parameters) | `object` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-87-then-allof-0-then-properties-parameters.md "undefined#/properties/services/items/allOf/1/then/allOf/87/then/allOf/0/then/properties/parameters") | ## plan -service plan >advanced-user< for >process-automation< is available in data centers: +service plan >standard< for >privatelink< is available in data centers: * {'region': 'ap10', 'name': 'Australia (Sydney)'} +* {'region': 'ap11', 'name': 'Singapore'} +* {'region': 'ap12', 'name': 'South Korea (Seoul)'} +* {'region': 'ap20', 'name': 'Australia (Sydney) Azure'} +* {'region': 'ap21', 'name': 'Singapore'} +* {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} +* {'region': 'ca10', 'name': 'Canada (Montreal)'} * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} -* {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} +* {'region': 'eu20', 'name': 'Europe (Netherlands)'} * {'region': 'jp10', 'name': 'Japan (Tokyo)'} +* {'region': 'jp20', 'name': 'Japan (Tokyo)'} * {'region': 'us10', 'name': 'US East (VA)'} -* {'region': 'us30', 'name': 'US Central (IA)'} +* {'region': 'us20', 'name': 'US West (WA)'} +* {'region': 'us21', 'name': 'US East (VA)'} `plan` @@ -32,3 +41,21 @@ service plan >advanced-user< for >process-automation< is available in data cente ### plan Type unknown + +## parameters + + + +`parameters` + +* is required + +* Type: `object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-87-then-allof-0-then-properties-parameters.md)) + +* cannot be null + +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-87-then-allof-0-then-properties-parameters.md "undefined#/properties/services/items/allOf/1/then/allOf/87/then/allOf/0/then/properties/parameters") + +### parameters Type + +`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-87-then-allof-0-then-properties-parameters.md)) diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-87-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-87-then-properties-plan.md index b8cdbbdd..248cb3df 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-87-then-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-87-then-properties-plan.md @@ -6,9 +6,6 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :------------------------ | :---------- | -| `"advanced-user"` | | -| `"automation-attended"` | | -| `"automation-unattended"` | | -| `"standard-user"` | | +| Value | Explanation | +| :----------- | :---------- | +| `"standard"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-87-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-87-then.md index 4ee3a199..eef5b425 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-87-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-87-then.md @@ -6,12 +6,6 @@ all of * [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-87-then-allof-0.md "check type definition") -* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-87-then-allof-1.md "check type definition") - -* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-87-then-allof-2.md "check type definition") - -* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-87-then-allof-3.md "check type definition") - # then Properties | Property | Type | Required | Nullable | Defined by | @@ -41,16 +35,13 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :------------------------ | :---------- | -| `"advanced-user"` | | -| `"automation-attended"` | | -| `"automation-unattended"` | | -| `"standard-user"` | | +| Value | Explanation | +| :----------- | :---------- | +| `"standard"` | | ## name -SAP Build Process Automation: SAP Build Process Automation combines capabilities from SAP Workflow Management and SAP Intelligent RPA with a powerful, yet intuitive no-code development experience. SAP Build Process Automation enables business users and technologists to become citizen developers. With powerful yet intuitive low-code and no-code capabilities, the solution supports you in driving automation by tapping into the expertise of citizen developers. +SAP Private Link service: SAP Private Link service establishes a private connection between selected SAP BTP services and selected services in your own IaaS provider accounts. By reusing the private link functionality of our partner IaaS providers, it lets you access your services through private network connections to avoid data transfer via the public Internet. `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-88-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-88-if-properties-name.md index f8418a83..0ef550f8 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-88-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-88-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"process-automation-service" +"process-automation" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-88-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-88-if.md index e237de67..8af09c47 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-88-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-88-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"process-automation-service" +"process-automation" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-88-then-allof-0-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-88-then-allof-0-if-properties-plan.md index 126392b1..46be87a8 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-88-then-allof-0-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-88-then-allof-0-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"standard" +"advanced-user" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-88-then-allof-0-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-88-then-allof-0-if.md index 295208ff..725780e7 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-88-then-allof-0-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-88-then-allof-0-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"standard" +"advanced-user" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-88-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-88-then-allof-0-then.md index ef499e76..01633f0b 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-88-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-88-then-allof-0-then.md @@ -10,7 +10,7 @@ unknown ## plan -service plan >standard< for >process-automation-service< is available in data centers: +service plan >advanced-user< for >process-automation< is available in data centers: * {'region': 'ap10', 'name': 'Australia (Sydney)'} * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-87-then-allof-1-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-88-then-allof-1-if-properties-plan.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-87-then-allof-1-if-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-88-then-allof-1-if-properties-plan.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-87-then-allof-2-if-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-88-then-allof-1-if-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-87-then-allof-2-if-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-88-then-allof-1-if-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-87-then-allof-1-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-88-then-allof-1-if.md similarity index 83% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-87-then-allof-1-if.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-88-then-allof-1-if.md index f9390105..d4800943 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-87-then-allof-1-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-88-then-allof-1-if.md @@ -6,7 +6,7 @@ unknown | Property | Type | Required | Nullable | Defined by | | :------------ | :------------ | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-87-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/87/then/allOf/1/if/properties/plan") | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-88-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/88/then/allOf/1/if/properties/plan") | ## plan @@ -20,7 +20,7 @@ unknown * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-87-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/87/then/allOf/1/if/properties/plan") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-88-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/88/then/allOf/1/if/properties/plan") ### plan Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-87-then-allof-1-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-88-then-allof-1-then-properties-plan.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-87-then-allof-1-then-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-88-then-allof-1-then-properties-plan.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-87-then-allof-2-then-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-88-then-allof-1-then-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-87-then-allof-2-then-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-88-then-allof-1-then-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-87-then-allof-1-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-88-then-allof-1-then.md similarity index 86% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-87-then-allof-1-then.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-88-then-allof-1-then.md index aabe529f..a184e55c 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-87-then-allof-1-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-88-then-allof-1-then.md @@ -6,7 +6,7 @@ unknown | Property | Type | Required | Nullable | Defined by | | :------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-87-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/87/then/allOf/1/then/properties/plan") | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-88-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/88/then/allOf/1/then/properties/plan") | ## plan @@ -27,7 +27,7 @@ service plan >automation-attended< for >process-automation< is available in data * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-87-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/87/then/allOf/1/then/properties/plan") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-88-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/88/then/allOf/1/then/properties/plan") ### plan Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-83-then-allof-1.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-88-then-allof-1.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-83-then-allof-1.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-88-then-allof-1.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-87-then-allof-2-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-88-then-allof-2-if-properties-plan.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-87-then-allof-2-if-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-88-then-allof-2-if-properties-plan.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-87-then-allof-3-if-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-88-then-allof-2-if-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-87-then-allof-3-if-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-88-then-allof-2-if-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-87-then-allof-2-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-88-then-allof-2-if.md similarity index 83% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-87-then-allof-2-if.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-88-then-allof-2-if.md index cf191cc1..404535c7 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-87-then-allof-2-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-88-then-allof-2-if.md @@ -6,7 +6,7 @@ unknown | Property | Type | Required | Nullable | Defined by | | :------------ | :------------ | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-87-then-allof-2-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/87/then/allOf/2/if/properties/plan") | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-88-then-allof-2-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/88/then/allOf/2/if/properties/plan") | ## plan @@ -20,7 +20,7 @@ unknown * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-87-then-allof-2-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/87/then/allOf/2/if/properties/plan") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-88-then-allof-2-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/88/then/allOf/2/if/properties/plan") ### plan Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-87-then-allof-2-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-88-then-allof-2-then-properties-plan.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-87-then-allof-2-then-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-88-then-allof-2-then-properties-plan.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-87-then-allof-3-then-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-88-then-allof-2-then-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-87-then-allof-3-then-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-88-then-allof-2-then-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-87-then-allof-2-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-88-then-allof-2-then.md similarity index 86% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-87-then-allof-2-then.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-88-then-allof-2-then.md index 45ec54e5..3d56fd40 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-87-then-allof-2-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-88-then-allof-2-then.md @@ -6,7 +6,7 @@ unknown | Property | Type | Required | Nullable | Defined by | | :------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-87-then-allof-2-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/87/then/allOf/2/then/properties/plan") | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-88-then-allof-2-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/88/then/allOf/2/then/properties/plan") | ## plan @@ -27,7 +27,7 @@ service plan >automation-unattended< for >process-automation< is available in da * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-87-then-allof-2-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/87/then/allOf/2/then/properties/plan") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-88-then-allof-2-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/88/then/allOf/2/then/properties/plan") ### plan Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-87-then-allof-2.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-88-then-allof-2.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-87-then-allof-2.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-88-then-allof-2.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-87-then-allof-3-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-88-then-allof-3-if-properties-plan.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-87-then-allof-3-if-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-88-then-allof-3-if-properties-plan.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-89-then-allof-1-if-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-88-then-allof-3-if-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-89-then-allof-1-if-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-88-then-allof-3-if-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-87-then-allof-3-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-88-then-allof-3-if.md similarity index 83% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-87-then-allof-3-if.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-88-then-allof-3-if.md index d321560b..bbbb9377 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-87-then-allof-3-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-88-then-allof-3-if.md @@ -6,7 +6,7 @@ unknown | Property | Type | Required | Nullable | Defined by | | :------------ | :------------ | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-87-then-allof-3-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/87/then/allOf/3/if/properties/plan") | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-88-then-allof-3-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/88/then/allOf/3/if/properties/plan") | ## plan @@ -20,7 +20,7 @@ unknown * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-87-then-allof-3-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/87/then/allOf/3/if/properties/plan") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-88-then-allof-3-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/88/then/allOf/3/if/properties/plan") ### plan Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-87-then-allof-3-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-88-then-allof-3-then-properties-plan.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-87-then-allof-3-then-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-88-then-allof-3-then-properties-plan.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-89-then-allof-1-then-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-88-then-allof-3-then-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-89-then-allof-1-then-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-88-then-allof-3-then-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-87-then-allof-3-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-88-then-allof-3-then.md similarity index 85% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-87-then-allof-3-then.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-88-then-allof-3-then.md index 93f23512..ba70f564 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-87-then-allof-3-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-88-then-allof-3-then.md @@ -6,7 +6,7 @@ unknown | Property | Type | Required | Nullable | Defined by | | :------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-87-then-allof-3-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/87/then/allOf/3/then/properties/plan") | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-88-then-allof-3-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/88/then/allOf/3/then/properties/plan") | ## plan @@ -27,7 +27,7 @@ service plan >standard-user< for >process-automation< is available in data cente * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-87-then-allof-3-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/87/then/allOf/3/then/properties/plan") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-88-then-allof-3-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/88/then/allOf/3/then/properties/plan") ### plan Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-87-then-allof-3.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-88-then-allof-3.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-87-then-allof-3.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-88-then-allof-3.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-88-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-88-then-properties-plan.md index 248cb3df..b8cdbbdd 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-88-then-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-88-then-properties-plan.md @@ -6,6 +6,9 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :----------- | :---------- | -| `"standard"` | | +| Value | Explanation | +| :------------------------ | :---------- | +| `"advanced-user"` | | +| `"automation-attended"` | | +| `"automation-unattended"` | | +| `"standard-user"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-88-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-88-then.md index 158b5491..9f039dc5 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-88-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-88-then.md @@ -6,6 +6,12 @@ all of * [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-88-then-allof-0.md "check type definition") +* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-88-then-allof-1.md "check type definition") + +* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-88-then-allof-2.md "check type definition") + +* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-88-then-allof-3.md "check type definition") + # then Properties | Property | Type | Required | Nullable | Defined by | @@ -35,9 +41,12 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :----------- | :---------- | -| `"standard"` | | +| Value | Explanation | +| :------------------------ | :---------- | +| `"advanced-user"` | | +| `"automation-attended"` | | +| `"automation-unattended"` | | +| `"standard-user"` | | ## name diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-89-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-89-if-properties-name.md index 3083667a..f8418a83 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-89-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-89-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"processvisibility" +"process-automation-service" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-89-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-89-if.md index ab5a0659..7ced46c2 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-89-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-89-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"processvisibility" +"process-automation-service" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-89-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-89-then-allof-0-then.md index e2eb3f05..066edcef 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-89-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-89-then-allof-0-then.md @@ -10,21 +10,14 @@ unknown ## plan -service plan >standard< for >processvisibility< is available in data centers: +service plan >standard< for >process-automation-service< is available in data centers: * {'region': 'ap10', 'name': 'Australia (Sydney)'} -* {'region': 'ap11', 'name': 'Singapore'} -* {'region': 'ap12', 'name': 'South Korea (Seoul)'} -* {'region': 'ap21', 'name': 'Singapore'} -* {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} -* {'region': 'ca10', 'name': 'Canada (Montreal)'} * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} -* {'region': 'eu20', 'name': 'Europe (Netherlands)'} +* {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} * {'region': 'jp10', 'name': 'Japan (Tokyo)'} -* {'region': 'jp20', 'name': 'Japan (Tokyo)'} * {'region': 'us10', 'name': 'US East (VA)'} -* {'region': 'us20', 'name': 'US West (WA)'} -* {'region': 'us21', 'name': 'US East (VA)'} +* {'region': 'us30', 'name': 'US Central (IA)'} `plan` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-89-then-allof-1-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-89-then-allof-1-if-properties-plan.md deleted file mode 100644 index d191f55e..00000000 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-89-then-allof-1-if-properties-plan.md +++ /dev/null @@ -1,11 +0,0 @@ -## plan Type - -unknown - -## plan Constraints - -**constant**: the value of this property must be equal to: - -```json -"workflow" -``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-89-then-allof-1-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-89-then-allof-1-if.md deleted file mode 100644 index 7d24e18d..00000000 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-89-then-allof-1-if.md +++ /dev/null @@ -1,35 +0,0 @@ -## if Type - -unknown - -# if Properties - -| Property | Type | Required | Nullable | Defined by | -| :------------ | :------------ | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-89-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/89/then/allOf/1/if/properties/plan") | - -## plan - - - -`plan` - -* is optional - -* Type: unknown - -* cannot be null - -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-89-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/89/then/allOf/1/if/properties/plan") - -### plan Type - -unknown - -### plan Constraints - -**constant**: the value of this property must be equal to: - -```json -"workflow" -``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-89-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-89-then-properties-plan.md index 3402fd03..248cb3df 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-89-then-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-89-then-properties-plan.md @@ -9,4 +9,3 @@ unknown | Value | Explanation | | :----------- | :---------- | | `"standard"` | | -| `"workflow"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-89-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-89-then.md index 271d0af4..66c5d9bd 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-89-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-89-then.md @@ -6,8 +6,6 @@ all of * [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-89-then-allof-0.md "check type definition") -* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-89-then-allof-1.md "check type definition") - # then Properties | Property | Type | Required | Nullable | Defined by | @@ -40,11 +38,10 @@ unknown | Value | Explanation | | :----------- | :---------- | | `"standard"` | | -| `"workflow"` | | ## name -Process Visibility: Provides end-to-end visibility into processes that run in cloud, on-premise & in hybrid environments +SAP Build Process Automation: SAP Build Process Automation combines capabilities from SAP Workflow Management and SAP Intelligent RPA with a powerful, yet intuitive no-code development experience. SAP Build Process Automation enables business users and technologists to become citizen developers. With powerful yet intuitive low-code and no-code capabilities, the solution supports you in driving automation by tapping into the expertise of citizen developers. `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-90-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-90-if-properties-name.md index 212e4b90..3083667a 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-90-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-90-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"rabbitmq" +"processvisibility" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-90-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-90-if.md index 5723d328..377242f9 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-90-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-90-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"rabbitmq" +"processvisibility" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-90-then-allof-0-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-90-then-allof-0-if-properties-plan.md index 9db80827..126392b1 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-90-then-allof-0-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-90-then-allof-0-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"large" +"standard" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-90-then-allof-0-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-90-then-allof-0-if.md index 719b16c3..34c02cfd 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-90-then-allof-0-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-90-then-allof-0-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"large" +"standard" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-90-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-90-then-allof-0-then.md index a2819d4a..48c0a75c 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-90-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-90-then-allof-0-then.md @@ -10,27 +10,21 @@ unknown ## plan -service plan >large< for >rabbitmq< is available in data centers: +service plan >standard< for >processvisibility< is available in data centers: * {'region': 'ap10', 'name': 'Australia (Sydney)'} * {'region': 'ap11', 'name': 'Singapore'} * {'region': 'ap12', 'name': 'South Korea (Seoul)'} -* {'region': 'ap20', 'name': 'Australia (Sydney) Azure'} * {'region': 'ap21', 'name': 'Singapore'} * {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} * {'region': 'ca10', 'name': 'Canada (Montreal)'} -* {'region': 'ch20', 'name': 'cf-ch20'} * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} -* {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} * {'region': 'eu20', 'name': 'Europe (Netherlands)'} -* {'region': 'eu30', 'name': 'Europe (Frankfurt)'} -* {'region': 'in30', 'name': 'India (Mumbai)'} * {'region': 'jp10', 'name': 'Japan (Tokyo)'} * {'region': 'jp20', 'name': 'Japan (Tokyo)'} * {'region': 'us10', 'name': 'US East (VA)'} * {'region': 'us20', 'name': 'US West (WA)'} * {'region': 'us21', 'name': 'US East (VA)'} -* {'region': 'us30', 'name': 'US Central (IA)'} `plan` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-90-then-allof-1-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-90-then-allof-1-if-properties-plan.md index 2cf6fedc..d191f55e 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-90-then-allof-1-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-90-then-allof-1-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"medium" +"workflow" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-90-then-allof-1-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-90-then-allof-1-if.md index 9280c141..4c4f6ee0 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-90-then-allof-1-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-90-then-allof-1-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"medium" +"workflow" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-90-then-allof-1-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-90-then-allof-1-then.md index 6330d7c3..1d454c92 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-90-then-allof-1-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-90-then-allof-1-then.md @@ -10,7 +10,7 @@ unknown ## plan -service plan >medium< for >rabbitmq< is available in data centers: +service plan >workflow< for >processvisibility< is available in data centers: * {'region': 'ap10', 'name': 'Australia (Sydney)'} * {'region': 'ap11', 'name': 'Singapore'} @@ -19,12 +19,10 @@ service plan >medium< for >rabbitmq< is available in data centers: * {'region': 'ap21', 'name': 'Singapore'} * {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} * {'region': 'ca10', 'name': 'Canada (Montreal)'} -* {'region': 'ch20', 'name': 'cf-ch20'} * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} * {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} * {'region': 'eu20', 'name': 'Europe (Netherlands)'} * {'region': 'eu30', 'name': 'Europe (Frankfurt)'} -* {'region': 'in30', 'name': 'India (Mumbai)'} * {'region': 'jp10', 'name': 'Japan (Tokyo)'} * {'region': 'jp20', 'name': 'Japan (Tokyo)'} * {'region': 'us10', 'name': 'US East (VA)'} diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-90-then-allof-2-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-90-then-allof-2-if.md deleted file mode 100644 index 0b06efe9..00000000 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-90-then-allof-2-if.md +++ /dev/null @@ -1,35 +0,0 @@ -## if Type - -unknown - -# if Properties - -| Property | Type | Required | Nullable | Defined by | -| :------------ | :------------ | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-90-then-allof-2-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/90/then/allOf/2/if/properties/plan") | - -## plan - - - -`plan` - -* is optional - -* Type: unknown - -* cannot be null - -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-90-then-allof-2-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/90/then/allOf/2/if/properties/plan") - -### plan Type - -unknown - -### plan Constraints - -**constant**: the value of this property must be equal to: - -```json -"small" -``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-90-then-allof-4-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-90-then-allof-4-if-properties-plan.md deleted file mode 100644 index f3131978..00000000 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-90-then-allof-4-if-properties-plan.md +++ /dev/null @@ -1,11 +0,0 @@ -## plan Type - -unknown - -## plan Constraints - -**constant**: the value of this property must be equal to: - -```json -"xsmall" -``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-90-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-90-then-properties-plan.md index 99c3e482..3402fd03 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-90-then-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-90-then-properties-plan.md @@ -6,10 +6,7 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :-------------- | :---------- | -| `"large"` | | -| `"medium"` | | -| `"small"` | | -| `"virtualhost"` | | -| `"xsmall"` | | +| Value | Explanation | +| :----------- | :---------- | +| `"standard"` | | +| `"workflow"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-90-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-90-then.md index 9ef1f440..52a866ac 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-90-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-90-then.md @@ -8,12 +8,6 @@ all of * [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-90-then-allof-1.md "check type definition") -* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-90-then-allof-2.md "check type definition") - -* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-90-then-allof-3.md "check type definition") - -* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-90-then-allof-4.md "check type definition") - # then Properties | Property | Type | Required | Nullable | Defined by | @@ -43,17 +37,14 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :-------------- | :---------- | -| `"large"` | | -| `"medium"` | | -| `"small"` | | -| `"virtualhost"` | | -| `"xsmall"` | | +| Value | Explanation | +| :----------- | :---------- | +| `"standard"` | | +| `"workflow"` | | ## name -RabbitMQ: RabbitMQ on SAP BTP includes a message broker that implements message queues for application-to-application messaging. Supports Advanced Message Queuing Protocol (AMQP). +Process Visibility: Provides end-to-end visibility into processes that run in cloud, on-premise & in hybrid environments `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-91-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-91-if-properties-name.md index f923583a..212e4b90 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-91-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-91-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"recommendation-systems-production" +"rabbitmq" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-91-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-91-if.md index 03f53d29..42a10669 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-91-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-91-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"recommendation-systems-production" +"rabbitmq" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-91-then-allof-0-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-91-then-allof-0-if-properties-plan.md index c97f5143..9db80827 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-91-then-allof-0-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-91-then-allof-0-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"free" +"large" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-91-then-allof-0-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-91-then-allof-0-if.md index 82c8d09e..e85cf1a3 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-91-then-allof-0-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-91-then-allof-0-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"free" +"large" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-91-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-91-then-allof-0-then.md index 55c53504..9818017e 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-91-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-91-then-allof-0-then.md @@ -10,11 +10,27 @@ unknown ## plan -service plan >free< for >recommendation-systems-production< is available in data centers: - +service plan >large< for >rabbitmq< is available in data centers: + +* {'region': 'ap10', 'name': 'Australia (Sydney)'} +* {'region': 'ap11', 'name': 'Singapore'} +* {'region': 'ap12', 'name': 'South Korea (Seoul)'} +* {'region': 'ap20', 'name': 'Australia (Sydney) Azure'} +* {'region': 'ap21', 'name': 'Singapore'} +* {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} +* {'region': 'ca10', 'name': 'Canada (Montreal)'} +* {'region': 'ch20', 'name': 'cf-ch20'} * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} * {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} +* {'region': 'eu20', 'name': 'Europe (Netherlands)'} +* {'region': 'eu30', 'name': 'Europe (Frankfurt)'} +* {'region': 'in30', 'name': 'India (Mumbai)'} +* {'region': 'jp10', 'name': 'Japan (Tokyo)'} +* {'region': 'jp20', 'name': 'Japan (Tokyo)'} * {'region': 'us10', 'name': 'US East (VA)'} +* {'region': 'us20', 'name': 'US West (WA)'} +* {'region': 'us21', 'name': 'US East (VA)'} +* {'region': 'us30', 'name': 'US Central (IA)'} `plan` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-91-then-allof-1-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-91-then-allof-1-if-properties-plan.md index 126392b1..2cf6fedc 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-91-then-allof-1-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-91-then-allof-1-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"standard" +"medium" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-91-then-allof-1-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-91-then-allof-1-if.md index c7f8c35b..350c6c35 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-91-then-allof-1-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-91-then-allof-1-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"standard" +"medium" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-91-then-allof-1-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-91-then-allof-1-then.md index 7c19b22d..9366dc09 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-91-then-allof-1-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-91-then-allof-1-then.md @@ -10,11 +10,27 @@ unknown ## plan -service plan >standard< for >recommendation-systems-production< is available in data centers: - +service plan >medium< for >rabbitmq< is available in data centers: + +* {'region': 'ap10', 'name': 'Australia (Sydney)'} +* {'region': 'ap11', 'name': 'Singapore'} +* {'region': 'ap12', 'name': 'South Korea (Seoul)'} +* {'region': 'ap20', 'name': 'Australia (Sydney) Azure'} +* {'region': 'ap21', 'name': 'Singapore'} +* {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} +* {'region': 'ca10', 'name': 'Canada (Montreal)'} +* {'region': 'ch20', 'name': 'cf-ch20'} * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} * {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} +* {'region': 'eu20', 'name': 'Europe (Netherlands)'} +* {'region': 'eu30', 'name': 'Europe (Frankfurt)'} +* {'region': 'in30', 'name': 'India (Mumbai)'} +* {'region': 'jp10', 'name': 'Japan (Tokyo)'} +* {'region': 'jp20', 'name': 'Japan (Tokyo)'} * {'region': 'us10', 'name': 'US East (VA)'} +* {'region': 'us20', 'name': 'US West (WA)'} +* {'region': 'us21', 'name': 'US East (VA)'} +* {'region': 'us30', 'name': 'US Central (IA)'} `plan` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-83-then-allof-2-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-91-then-allof-2-if-properties-plan.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-83-then-allof-2-if-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-91-then-allof-2-if-properties-plan.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-90-then-allof-2-if-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-91-then-allof-2-if-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-90-then-allof-2-if-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-91-then-allof-2-if-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-83-then-allof-2-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-91-then-allof-2-if.md similarity index 83% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-83-then-allof-2-if.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-91-then-allof-2-if.md index 956731d5..dcf93b64 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-83-then-allof-2-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-91-then-allof-2-if.md @@ -6,7 +6,7 @@ unknown | Property | Type | Required | Nullable | Defined by | | :------------ | :------------ | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-83-then-allof-2-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/83/then/allOf/2/if/properties/plan") | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-91-then-allof-2-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/91/then/allOf/2/if/properties/plan") | ## plan @@ -20,7 +20,7 @@ unknown * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-83-then-allof-2-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/83/then/allOf/2/if/properties/plan") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-91-then-allof-2-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/91/then/allOf/2/if/properties/plan") ### plan Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-89-then-allof-1-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-91-then-allof-2-then-properties-plan.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-89-then-allof-1-then-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-91-then-allof-2-then-properties-plan.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-90-then-allof-2-then-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-91-then-allof-2-then-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-90-then-allof-2-then-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-91-then-allof-2-then-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-90-then-allof-2-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-91-then-allof-2-then.md similarity index 89% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-90-then-allof-2-then.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-91-then-allof-2-then.md index b3b95f16..5ecb60f4 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-90-then-allof-2-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-91-then-allof-2-then.md @@ -6,7 +6,7 @@ unknown | Property | Type | Required | Nullable | Defined by | | :------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-90-then-allof-2-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/90/then/allOf/2/then/properties/plan") | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-91-then-allof-2-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/91/then/allOf/2/then/properties/plan") | ## plan @@ -40,7 +40,7 @@ service plan >small< for >rabbitmq< is available in data centers: * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-90-then-allof-2-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/90/then/allOf/2/then/properties/plan") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-91-then-allof-2-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/91/then/allOf/2/then/properties/plan") ### plan Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-90-then-allof-2.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-91-then-allof-2.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-90-then-allof-2.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-91-then-allof-2.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-90-then-allof-3-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-91-then-allof-3-if-properties-plan.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-90-then-allof-3-if-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-91-then-allof-3-if-properties-plan.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-90-then-allof-3-if-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-91-then-allof-3-if-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-90-then-allof-3-if-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-91-then-allof-3-if-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-90-then-allof-3-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-91-then-allof-3-if.md similarity index 83% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-90-then-allof-3-if.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-91-then-allof-3-if.md index d487f159..cfd9f128 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-90-then-allof-3-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-91-then-allof-3-if.md @@ -6,7 +6,7 @@ unknown | Property | Type | Required | Nullable | Defined by | | :------------ | :------------ | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-90-then-allof-3-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/90/then/allOf/3/if/properties/plan") | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-91-then-allof-3-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/91/then/allOf/3/if/properties/plan") | ## plan @@ -20,7 +20,7 @@ unknown * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-90-then-allof-3-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/90/then/allOf/3/if/properties/plan") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-91-then-allof-3-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/91/then/allOf/3/if/properties/plan") ### plan Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-90-then-allof-2-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-91-then-allof-3-then-properties-plan.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-90-then-allof-2-then-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-91-then-allof-3-then-properties-plan.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-90-then-allof-3-then-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-91-then-allof-3-then-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-90-then-allof-3-then-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-91-then-allof-3-then-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-90-then-allof-3-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-91-then-allof-3-then.md similarity index 87% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-90-then-allof-3-then.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-91-then-allof-3-then.md index bb4f4e8d..063b877e 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-90-then-allof-3-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-91-then-allof-3-then.md @@ -6,7 +6,7 @@ unknown | Property | Type | Required | Nullable | Defined by | | :------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-90-then-allof-3-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/90/then/allOf/3/then/properties/plan") | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-91-then-allof-3-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/91/then/allOf/3/then/properties/plan") | ## plan @@ -31,7 +31,7 @@ service plan >virtualhost< for >rabbitmq< is available in data centers: * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-90-then-allof-3-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/90/then/allOf/3/then/properties/plan") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-91-then-allof-3-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/91/then/allOf/3/then/properties/plan") ### plan Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-90-then-allof-3.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-91-then-allof-3.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-90-then-allof-3.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-91-then-allof-3.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-83-then-allof-3-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-91-then-allof-4-if-properties-plan.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-83-then-allof-3-if-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-91-then-allof-4-if-properties-plan.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-90-then-allof-4-if-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-91-then-allof-4-if-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-90-then-allof-4-if-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-91-then-allof-4-if-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-90-then-allof-4-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-91-then-allof-4-if.md similarity index 83% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-90-then-allof-4-if.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-91-then-allof-4-if.md index a8424ad7..c51d166a 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-90-then-allof-4-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-91-then-allof-4-if.md @@ -6,7 +6,7 @@ unknown | Property | Type | Required | Nullable | Defined by | | :------------ | :------------ | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-90-then-allof-4-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/90/then/allOf/4/if/properties/plan") | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-91-then-allof-4-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/91/then/allOf/4/if/properties/plan") | ## plan @@ -20,7 +20,7 @@ unknown * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-90-then-allof-4-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/90/then/allOf/4/if/properties/plan") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-91-then-allof-4-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/91/then/allOf/4/if/properties/plan") ### plan Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-90-then-allof-3-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-91-then-allof-4-then-properties-plan.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-90-then-allof-3-then-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-91-then-allof-4-then-properties-plan.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-90-then-allof-4-then-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-91-then-allof-4-then-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-90-then-allof-4-then-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-91-then-allof-4-then-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-90-then-allof-4-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-91-then-allof-4-then.md similarity index 89% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-90-then-allof-4-then.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-91-then-allof-4-then.md index c0a75779..6b142489 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-90-then-allof-4-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-91-then-allof-4-then.md @@ -6,7 +6,7 @@ unknown | Property | Type | Required | Nullable | Defined by | | :------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-90-then-allof-4-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/90/then/allOf/4/then/properties/plan") | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-91-then-allof-4-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/91/then/allOf/4/then/properties/plan") | ## plan @@ -40,7 +40,7 @@ service plan >xsmall< for >rabbitmq< is available in data centers: * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-90-then-allof-4-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/90/then/allOf/4/then/properties/plan") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-91-then-allof-4-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/91/then/allOf/4/then/properties/plan") ### plan Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-90-then-allof-4.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-91-then-allof-4.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-90-then-allof-4.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-91-then-allof-4.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-91-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-91-then-properties-plan.md index 49c8bb8c..99c3e482 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-91-then-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-91-then-properties-plan.md @@ -6,7 +6,10 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :----------- | :---------- | -| `"free"` | | -| `"standard"` | | +| Value | Explanation | +| :-------------- | :---------- | +| `"large"` | | +| `"medium"` | | +| `"small"` | | +| `"virtualhost"` | | +| `"xsmall"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-91-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-91-then.md index 09234156..a1928aa3 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-91-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-91-then.md @@ -8,6 +8,12 @@ all of * [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-91-then-allof-1.md "check type definition") +* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-91-then-allof-2.md "check type definition") + +* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-91-then-allof-3.md "check type definition") + +* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-91-then-allof-4.md "check type definition") + # then Properties | Property | Type | Required | Nullable | Defined by | @@ -37,14 +43,17 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :----------- | :---------- | -| `"free"` | | -| `"standard"` | | +| Value | Explanation | +| :-------------- | :---------- | +| `"large"` | | +| `"medium"` | | +| `"small"` | | +| `"virtualhost"` | | +| `"xsmall"` | | ## name -Personalized Recommendation: Personalized Recommendation is a generic reusable service. It uses state-of-the-art machine learning techniques to give visitors to your website highly personalized recommendations based on their browsing history and/or item description. Train and use machine learning models to deliver these recommendations across a wide range of business scenarios. Personalized Recommendation is part of the SAP AI Business Services portfolio. +RabbitMQ: RabbitMQ on SAP BTP includes a message broker that implements message queues for application-to-application messaging. Supports Advanced Message Queuing Protocol (AMQP). `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-92-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-92-if-properties-name.md index d16258f0..f923583a 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-92-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-92-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"redis-cache" +"recommendation-systems-production" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-92-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-92-if.md index c79e67bb..873e0af2 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-92-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-92-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"redis-cache" +"recommendation-systems-production" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-0-then.md index 2a9a4c07..ba1f0789 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-0-then.md @@ -4,30 +4,17 @@ unknown # then Properties -| Property | Type | Required | Nullable | Defined by | -| :------------------------ | :------------ | :------- | :------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-0-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/92/then/allOf/0/then/properties/plan") | -| [parameters](#parameters) | `object` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-0-then-properties-parameters.md "http://example.com/schemas/redis-free-create.json#/properties/services/items/allOf/1/then/allOf/92/then/allOf/0/then/properties/parameters") | +| Property | Type | Required | Nullable | Defined by | +| :------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-0-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/92/then/allOf/0/then/properties/plan") | ## plan -service plan >free< for >redis-cache< is available in data centers: +service plan >free< for >recommendation-systems-production< is available in data centers: -* {'region': 'ap10', 'name': 'Australia (Sydney)'} -* {'region': 'ap11', 'name': 'Singapore'} -* {'region': 'ap12', 'name': 'South Korea (Seoul)'} -* {'region': 'ap20', 'name': 'Australia (Sydney) Azure'} -* {'region': 'ap21', 'name': 'Singapore'} -* {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} -* {'region': 'ca10', 'name': 'Canada (Montreal)'} * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} * {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} -* {'region': 'eu20', 'name': 'Europe (Netherlands)'} -* {'region': 'jp10', 'name': 'Japan (Tokyo)'} -* {'region': 'jp20', 'name': 'Japan (Tokyo)'} * {'region': 'us10', 'name': 'US East (VA)'} -* {'region': 'us20', 'name': 'US West (WA)'} -* {'region': 'us21', 'name': 'US East (VA)'} `plan` @@ -42,21 +29,3 @@ service plan >free< for >redis-cache< is available in data centers: ### plan Type unknown - -## parameters - - - -`parameters` - -* is required - -* Type: `object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-0-then-properties-parameters.md)) - -* cannot be null - -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-0-then-properties-parameters.md "http://example.com/schemas/redis-free-create.json#/properties/services/items/allOf/1/then/allOf/92/then/allOf/0/then/properties/parameters") - -### parameters Type - -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-0-then-properties-parameters.md)) diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-1-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-1-if-properties-plan.md index 9afdf414..126392b1 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-1-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-1-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"premium" +"standard" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-1-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-1-if.md index e6d4accd..0203edff 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-1-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-1-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"premium" +"standard" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-1-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-1-then.md index ecdc312a..4b5034f2 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-1-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-1-then.md @@ -4,34 +4,17 @@ unknown # then Properties -| Property | Type | Required | Nullable | Defined by | -| :------------------------ | :------------ | :------- | :------------- | :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/92/then/allOf/1/then/properties/plan") | -| [parameters](#parameters) | `object` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-1-then-properties-parameters.md "http://example.com/schemas/redis-premium-create.json#/properties/services/items/allOf/1/then/allOf/92/then/allOf/1/then/properties/parameters") | +| Property | Type | Required | Nullable | Defined by | +| :------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/92/then/allOf/1/then/properties/plan") | ## plan -service plan >premium< for >redis-cache< is available in data centers: +service plan >standard< for >recommendation-systems-production< is available in data centers: -* {'region': 'ap10', 'name': 'Australia (Sydney)'} -* {'region': 'ap11', 'name': 'Singapore'} -* {'region': 'ap12', 'name': 'South Korea (Seoul)'} -* {'region': 'ap20', 'name': 'Australia (Sydney) Azure'} -* {'region': 'ap21', 'name': 'Singapore'} -* {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} -* {'region': 'ca10', 'name': 'Canada (Montreal)'} -* {'region': 'ch20', 'name': 'cf-ch20'} * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} * {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} -* {'region': 'eu20', 'name': 'Europe (Netherlands)'} -* {'region': 'eu30', 'name': 'Europe (Frankfurt)'} -* {'region': 'in30', 'name': 'India (Mumbai)'} -* {'region': 'jp10', 'name': 'Japan (Tokyo)'} -* {'region': 'jp20', 'name': 'Japan (Tokyo)'} * {'region': 'us10', 'name': 'US East (VA)'} -* {'region': 'us20', 'name': 'US West (WA)'} -* {'region': 'us21', 'name': 'US East (VA)'} -* {'region': 'us30', 'name': 'US Central (IA)'} `plan` @@ -46,21 +29,3 @@ service plan >premium< for >redis-cache< is available in data centers: ### plan Type unknown - -## parameters - - - -`parameters` - -* is required - -* Type: `object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-1-then-properties-parameters.md)) - -* cannot be null - -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-1-then-properties-parameters.md "http://example.com/schemas/redis-premium-create.json#/properties/services/items/allOf/1/then/allOf/92/then/allOf/1/then/properties/parameters") - -### parameters Type - -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-1-then-properties-parameters.md)) diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-properties-plan.md index f7dd2b05..49c8bb8c 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-properties-plan.md @@ -9,5 +9,4 @@ unknown | Value | Explanation | | :----------- | :---------- | | `"free"` | | -| `"premium"` | | | `"standard"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-92-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-92-then.md index 16f3df67..3bf40877 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-92-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-92-then.md @@ -8,8 +8,6 @@ all of * [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-1.md "check type definition") -* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-2.md "check type definition") - # then Properties | Property | Type | Required | Nullable | Defined by | @@ -42,12 +40,11 @@ unknown | Value | Explanation | | :----------- | :---------- | | `"free"` | | -| `"premium"` | | | `"standard"` | | ## name -Redis on SAP BTP, hyperscaler option: The Redis service on SAP BTP provides a way to directly consume the Redis cache service provided by the Infrastructure providers such as AWS and Azure. +Personalized Recommendation: Personalized Recommendation is a generic reusable service. It uses state-of-the-art machine learning techniques to give visitors to your website highly personalized recommendations based on their browsing history and/or item description. Train and use machine learning models to deliver these recommendations across a wide range of business scenarios. Personalized Recommendation is part of the SAP AI Business Services portfolio. `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-93-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-93-if-properties-name.md index fed9a319..d16258f0 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-93-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-93-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"responsibility-management-service-beta" +"redis-cache" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-93-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-93-if.md index 975f42b8..9e636885 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-93-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-93-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"responsibility-management-service-beta" +"redis-cache" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-0-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-0-if-properties-plan.md index 538fc6a8..c97f5143 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-0-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-0-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"beta" +"free" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-0-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-0-if.md index 20d03e90..fc4626de 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-0-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-0-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"beta" +"free" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-0-then-properties-parameters-properties-engine_version.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-0-then-properties-parameters-properties-engine_version.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-0-then-properties-parameters-properties-engine_version.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-0-then-properties-parameters-properties-engine_version.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-0-then-properties-parameters-properties-eviction_policy.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-0-then-properties-parameters-properties-eviction_policy.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-0-then-properties-parameters-properties-eviction_policy.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-0-then-properties-parameters-properties-eviction_policy.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-0-then-properties-parameters.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-0-then-properties-parameters.md similarity index 87% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-0-then-properties-parameters.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-0-then-properties-parameters.md index bf5c10f8..d50e7342 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-0-then-properties-parameters.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-0-then-properties-parameters.md @@ -1,13 +1,13 @@ ## parameters Type -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-0-then-properties-parameters.md)) +`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-0-then-properties-parameters.md)) # parameters Properties | Property | Type | Required | Nullable | Defined by | | :----------------------------------- | :------- | :------- | :------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [engine\_version](#engine_version) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-0-then-properties-parameters-properties-engine_version.md "http://example.com/schemas/redis-free-create.json#/properties/services/items/allOf/1/then/allOf/92/then/allOf/0/then/properties/parameters/properties/engine_version") | -| [eviction\_policy](#eviction_policy) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-0-then-properties-parameters-properties-eviction_policy.md "http://example.com/schemas/redis-free-create.json#/properties/services/items/allOf/1/then/allOf/92/then/allOf/0/then/properties/parameters/properties/eviction_policy") | +| [engine\_version](#engine_version) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-0-then-properties-parameters-properties-engine_version.md "http://example.com/schemas/redis-free-create.json#/properties/services/items/allOf/1/then/allOf/93/then/allOf/0/then/properties/parameters/properties/engine_version") | +| [eviction\_policy](#eviction_policy) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-0-then-properties-parameters-properties-eviction_policy.md "http://example.com/schemas/redis-free-create.json#/properties/services/items/allOf/1/then/allOf/93/then/allOf/0/then/properties/parameters/properties/eviction_policy") | | Additional Properties | Any | Optional | can be null | | ## engine\_version @@ -22,7 +22,7 @@ The major version number of the cache engine to be used for the clusters. If not * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-0-then-properties-parameters-properties-engine_version.md "http://example.com/schemas/redis-free-create.json#/properties/services/items/allOf/1/then/allOf/92/then/allOf/0/then/properties/parameters/properties/engine_version") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-0-then-properties-parameters-properties-engine_version.md "http://example.com/schemas/redis-free-create.json#/properties/services/items/allOf/1/then/allOf/93/then/allOf/0/then/properties/parameters/properties/engine_version") ### engine\_version Type @@ -57,7 +57,7 @@ The eviction policy for keys when maximum memory usage is reached. Default is 'n * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-0-then-properties-parameters-properties-eviction_policy.md "http://example.com/schemas/redis-free-create.json#/properties/services/items/allOf/1/then/allOf/92/then/allOf/0/then/properties/parameters/properties/eviction_policy") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-0-then-properties-parameters-properties-eviction_policy.md "http://example.com/schemas/redis-free-create.json#/properties/services/items/allOf/1/then/allOf/93/then/allOf/0/then/properties/parameters/properties/eviction_policy") ### eviction\_policy Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-0-then.md index f31e25be..dd27e0b0 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-0-then.md @@ -4,15 +4,30 @@ unknown # then Properties -| Property | Type | Required | Nullable | Defined by | -| :------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-0-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/93/then/allOf/0/then/properties/plan") | +| Property | Type | Required | Nullable | Defined by | +| :------------------------ | :------------ | :------- | :------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-0-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/93/then/allOf/0/then/properties/plan") | +| [parameters](#parameters) | `object` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-0-then-properties-parameters.md "http://example.com/schemas/redis-free-create.json#/properties/services/items/allOf/1/then/allOf/93/then/allOf/0/then/properties/parameters") | ## plan -service plan >beta< for >responsibility-management-service-beta< is available in data centers: +service plan >free< for >redis-cache< is available in data centers: +* {'region': 'ap10', 'name': 'Australia (Sydney)'} +* {'region': 'ap11', 'name': 'Singapore'} +* {'region': 'ap12', 'name': 'South Korea (Seoul)'} +* {'region': 'ap20', 'name': 'Australia (Sydney) Azure'} +* {'region': 'ap21', 'name': 'Singapore'} +* {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} +* {'region': 'ca10', 'name': 'Canada (Montreal)'} * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} +* {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} +* {'region': 'eu20', 'name': 'Europe (Netherlands)'} +* {'region': 'jp10', 'name': 'Japan (Tokyo)'} +* {'region': 'jp20', 'name': 'Japan (Tokyo)'} +* {'region': 'us10', 'name': 'US East (VA)'} +* {'region': 'us20', 'name': 'US West (WA)'} +* {'region': 'us21', 'name': 'US East (VA)'} `plan` @@ -27,3 +42,21 @@ service plan >beta< for >responsibility-management-service-beta< is available in ### plan Type unknown + +## parameters + + + +`parameters` + +* is required + +* Type: `object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-0-then-properties-parameters.md)) + +* cannot be null + +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-0-then-properties-parameters.md "http://example.com/schemas/redis-free-create.json#/properties/services/items/allOf/1/then/allOf/93/then/allOf/0/then/properties/parameters") + +### parameters Type + +`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-0-then-properties-parameters.md)) diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-26-then-allof-1-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-1-if-properties-plan.md similarity index 92% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-26-then-allof-1-if-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-1-if-properties-plan.md index 6b7ff7e5..9afdf414 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-26-then-allof-1-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-1-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"proxy" +"premium" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-2-if-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-1-if-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-2-if-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-1-if-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-20-then-allof-1-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-1-if.md similarity index 82% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-20-then-allof-1-if.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-1-if.md index 98ad56da..7aa9bf47 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-20-then-allof-1-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-1-if.md @@ -6,7 +6,7 @@ unknown | Property | Type | Required | Nullable | Defined by | | :------------ | :------------ | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-20-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/20/then/allOf/1/if/properties/plan") | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/93/then/allOf/1/if/properties/plan") | ## plan @@ -20,7 +20,7 @@ unknown * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-20-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/20/then/allOf/1/if/properties/plan") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/93/then/allOf/1/if/properties/plan") ### plan Type @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"local" +"premium" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-1-then-properties-parameters-properties-cluster_mode.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-1-then-properties-parameters-properties-cluster_mode.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-1-then-properties-parameters-properties-cluster_mode.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-1-then-properties-parameters-properties-cluster_mode.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-1-then-properties-parameters-properties-engine_version.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-1-then-properties-parameters-properties-engine_version.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-1-then-properties-parameters-properties-engine_version.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-1-then-properties-parameters-properties-engine_version.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-1-then-properties-parameters-properties-eviction_policy.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-1-then-properties-parameters-properties-eviction_policy.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-1-then-properties-parameters-properties-eviction_policy.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-1-then-properties-parameters-properties-eviction_policy.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-1-then-properties-parameters-properties-maintenance_window-properties-day_of_week.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-1-then-properties-parameters-properties-maintenance_window-properties-day_of_week.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-1-then-properties-parameters-properties-maintenance_window-properties-day_of_week.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-1-then-properties-parameters-properties-maintenance_window-properties-day_of_week.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-1-then-properties-parameters-properties-maintenance_window-properties-duration.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-1-then-properties-parameters-properties-maintenance_window-properties-duration.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-1-then-properties-parameters-properties-maintenance_window-properties-duration.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-1-then-properties-parameters-properties-maintenance_window-properties-duration.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-1-then-properties-parameters-properties-maintenance_window-properties-start_hour_utc.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-1-then-properties-parameters-properties-maintenance_window-properties-start_hour_utc.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-1-then-properties-parameters-properties-maintenance_window-properties-start_hour_utc.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-1-then-properties-parameters-properties-maintenance_window-properties-start_hour_utc.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-1-then-properties-parameters-properties-maintenance_window.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-1-then-properties-parameters-properties-maintenance_window.md similarity index 84% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-1-then-properties-parameters-properties-maintenance_window.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-1-then-properties-parameters-properties-maintenance_window.md index e85da543..5e45a844 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-1-then-properties-parameters-properties-maintenance_window.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-1-then-properties-parameters-properties-maintenance_window.md @@ -1,14 +1,14 @@ ## maintenance\_window Type -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-1-then-properties-parameters-properties-maintenance_window.md)) +`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-1-then-properties-parameters-properties-maintenance_window.md)) # maintenance\_window Properties | Property | Type | Required | Nullable | Defined by | | :---------------------------------- | :-------- | :------- | :------------- | :--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [day\_of\_week](#day_of_week) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-1-then-properties-parameters-properties-maintenance_window-properties-day_of_week.md "http://example.com/schemas/redis-premium-create.json#/properties/services/items/allOf/1/then/allOf/92/then/allOf/1/then/properties/parameters/properties/maintenance_window/properties/day_of_week") | -| [duration](#duration) | `integer` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-1-then-properties-parameters-properties-maintenance_window-properties-duration.md "http://example.com/schemas/redis-premium-create.json#/properties/services/items/allOf/1/then/allOf/92/then/allOf/1/then/properties/parameters/properties/maintenance_window/properties/duration") | -| [start\_hour\_utc](#start_hour_utc) | `integer` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-1-then-properties-parameters-properties-maintenance_window-properties-start_hour_utc.md "http://example.com/schemas/redis-premium-create.json#/properties/services/items/allOf/1/then/allOf/92/then/allOf/1/then/properties/parameters/properties/maintenance_window/properties/start_hour_utc") | +| [day\_of\_week](#day_of_week) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-1-then-properties-parameters-properties-maintenance_window-properties-day_of_week.md "http://example.com/schemas/redis-premium-create.json#/properties/services/items/allOf/1/then/allOf/93/then/allOf/1/then/properties/parameters/properties/maintenance_window/properties/day_of_week") | +| [duration](#duration) | `integer` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-1-then-properties-parameters-properties-maintenance_window-properties-duration.md "http://example.com/schemas/redis-premium-create.json#/properties/services/items/allOf/1/then/allOf/93/then/allOf/1/then/properties/parameters/properties/maintenance_window/properties/duration") | +| [start\_hour\_utc](#start_hour_utc) | `integer` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-1-then-properties-parameters-properties-maintenance_window-properties-start_hour_utc.md "http://example.com/schemas/redis-premium-create.json#/properties/services/items/allOf/1/then/allOf/93/then/allOf/1/then/properties/parameters/properties/maintenance_window/properties/start_hour_utc") | ## day\_of\_week @@ -22,7 +22,7 @@ Day of the week when Redis cache instance can be patched. * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-1-then-properties-parameters-properties-maintenance_window-properties-day_of_week.md "http://example.com/schemas/redis-premium-create.json#/properties/services/items/allOf/1/then/allOf/92/then/allOf/1/then/properties/parameters/properties/maintenance_window/properties/day_of_week") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-1-then-properties-parameters-properties-maintenance_window-properties-day_of_week.md "http://example.com/schemas/redis-premium-create.json#/properties/services/items/allOf/1/then/allOf/93/then/allOf/1/then/properties/parameters/properties/maintenance_window/properties/day_of_week") ### day\_of\_week Type @@ -62,7 +62,7 @@ Number of hours required for patching the Redis cache instance. * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-1-then-properties-parameters-properties-maintenance_window-properties-duration.md "http://example.com/schemas/redis-premium-create.json#/properties/services/items/allOf/1/then/allOf/92/then/allOf/1/then/properties/parameters/properties/maintenance_window/properties/duration") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-1-then-properties-parameters-properties-maintenance_window-properties-duration.md "http://example.com/schemas/redis-premium-create.json#/properties/services/items/allOf/1/then/allOf/93/then/allOf/1/then/properties/parameters/properties/maintenance_window/properties/duration") ### duration Type @@ -94,7 +94,7 @@ Start hour after which patching of the Redis cache instance can start. * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-1-then-properties-parameters-properties-maintenance_window-properties-start_hour_utc.md "http://example.com/schemas/redis-premium-create.json#/properties/services/items/allOf/1/then/allOf/92/then/allOf/1/then/properties/parameters/properties/maintenance_window/properties/start_hour_utc") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-1-then-properties-parameters-properties-maintenance_window-properties-start_hour_utc.md "http://example.com/schemas/redis-premium-create.json#/properties/services/items/allOf/1/then/allOf/93/then/allOf/1/then/properties/parameters/properties/maintenance_window/properties/start_hour_utc") ### start\_hour\_utc Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-1-then-properties-parameters-properties-memory.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-1-then-properties-parameters-properties-memory.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-1-then-properties-parameters-properties-memory.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-1-then-properties-parameters-properties-memory.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-1-then-properties-parameters-properties-multi_az.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-1-then-properties-parameters-properties-multi_az.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-1-then-properties-parameters-properties-multi_az.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-1-then-properties-parameters-properties-multi_az.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-1-then-properties-parameters-properties-node_count.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-1-then-properties-parameters-properties-node_count.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-1-then-properties-parameters-properties-node_count.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-1-then-properties-parameters-properties-node_count.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-1-then-properties-parameters-properties-notify_keyspace_events.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-1-then-properties-parameters-properties-notify_keyspace_events.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-1-then-properties-parameters-properties-notify_keyspace_events.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-1-then-properties-parameters-properties-notify_keyspace_events.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-1-then-properties-parameters-properties-shard_count.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-1-then-properties-parameters-properties-shard_count.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-1-then-properties-parameters-properties-shard_count.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-1-then-properties-parameters-properties-shard_count.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-1-then-properties-parameters.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-1-then-properties-parameters.md similarity index 82% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-1-then-properties-parameters.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-1-then-properties-parameters.md index 62361dae..7c0a609f 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-1-then-properties-parameters.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-1-then-properties-parameters.md @@ -1,20 +1,20 @@ ## parameters Type -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-1-then-properties-parameters.md)) +`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-1-then-properties-parameters.md)) # parameters Properties | Property | Type | Required | Nullable | Defined by | | :-------------------------------------------------- | :-------- | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [cluster\_mode](#cluster_mode) | `boolean` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-1-then-properties-parameters-properties-cluster_mode.md "http://example.com/schemas/redis-premium-create.json#/properties/services/items/allOf/1/then/allOf/92/then/allOf/1/then/properties/parameters/properties/cluster_mode") | -| [engine\_version](#engine_version) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-1-then-properties-parameters-properties-engine_version.md "http://example.com/schemas/redis-premium-create.json#/properties/services/items/allOf/1/then/allOf/92/then/allOf/1/then/properties/parameters/properties/engine_version") | -| [eviction\_policy](#eviction_policy) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-1-then-properties-parameters-properties-eviction_policy.md "http://example.com/schemas/redis-premium-create.json#/properties/services/items/allOf/1/then/allOf/92/then/allOf/1/then/properties/parameters/properties/eviction_policy") | -| [maintenance\_window](#maintenance_window) | `object` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-1-then-properties-parameters-properties-maintenance_window.md "http://example.com/schemas/redis-premium-create.json#/properties/services/items/allOf/1/then/allOf/92/then/allOf/1/then/properties/parameters/properties/maintenance_window") | -| [memory](#memory) | `integer` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-1-then-properties-parameters-properties-memory.md "http://example.com/schemas/redis-premium-create.json#/properties/services/items/allOf/1/then/allOf/92/then/allOf/1/then/properties/parameters/properties/memory") | -| [multi\_az](#multi_az) | `boolean` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-1-then-properties-parameters-properties-multi_az.md "http://example.com/schemas/redis-premium-create.json#/properties/services/items/allOf/1/then/allOf/92/then/allOf/1/then/properties/parameters/properties/multi_az") | -| [node\_count](#node_count) | `integer` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-1-then-properties-parameters-properties-node_count.md "http://example.com/schemas/redis-premium-create.json#/properties/services/items/allOf/1/then/allOf/92/then/allOf/1/then/properties/parameters/properties/node_count") | -| [notify\_keyspace\_events](#notify_keyspace_events) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-1-then-properties-parameters-properties-notify_keyspace_events.md "http://example.com/schemas/redis-premium-create.json#/properties/services/items/allOf/1/then/allOf/92/then/allOf/1/then/properties/parameters/properties/notify_keyspace_events") | -| [shard\_count](#shard_count) | `integer` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-1-then-properties-parameters-properties-shard_count.md "http://example.com/schemas/redis-premium-create.json#/properties/services/items/allOf/1/then/allOf/92/then/allOf/1/then/properties/parameters/properties/shard_count") | +| [cluster\_mode](#cluster_mode) | `boolean` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-1-then-properties-parameters-properties-cluster_mode.md "http://example.com/schemas/redis-premium-create.json#/properties/services/items/allOf/1/then/allOf/93/then/allOf/1/then/properties/parameters/properties/cluster_mode") | +| [engine\_version](#engine_version) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-1-then-properties-parameters-properties-engine_version.md "http://example.com/schemas/redis-premium-create.json#/properties/services/items/allOf/1/then/allOf/93/then/allOf/1/then/properties/parameters/properties/engine_version") | +| [eviction\_policy](#eviction_policy) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-1-then-properties-parameters-properties-eviction_policy.md "http://example.com/schemas/redis-premium-create.json#/properties/services/items/allOf/1/then/allOf/93/then/allOf/1/then/properties/parameters/properties/eviction_policy") | +| [maintenance\_window](#maintenance_window) | `object` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-1-then-properties-parameters-properties-maintenance_window.md "http://example.com/schemas/redis-premium-create.json#/properties/services/items/allOf/1/then/allOf/93/then/allOf/1/then/properties/parameters/properties/maintenance_window") | +| [memory](#memory) | `integer` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-1-then-properties-parameters-properties-memory.md "http://example.com/schemas/redis-premium-create.json#/properties/services/items/allOf/1/then/allOf/93/then/allOf/1/then/properties/parameters/properties/memory") | +| [multi\_az](#multi_az) | `boolean` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-1-then-properties-parameters-properties-multi_az.md "http://example.com/schemas/redis-premium-create.json#/properties/services/items/allOf/1/then/allOf/93/then/allOf/1/then/properties/parameters/properties/multi_az") | +| [node\_count](#node_count) | `integer` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-1-then-properties-parameters-properties-node_count.md "http://example.com/schemas/redis-premium-create.json#/properties/services/items/allOf/1/then/allOf/93/then/allOf/1/then/properties/parameters/properties/node_count") | +| [notify\_keyspace\_events](#notify_keyspace_events) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-1-then-properties-parameters-properties-notify_keyspace_events.md "http://example.com/schemas/redis-premium-create.json#/properties/services/items/allOf/1/then/allOf/93/then/allOf/1/then/properties/parameters/properties/notify_keyspace_events") | +| [shard\_count](#shard_count) | `integer` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-1-then-properties-parameters-properties-shard_count.md "http://example.com/schemas/redis-premium-create.json#/properties/services/items/allOf/1/then/allOf/93/then/allOf/1/then/properties/parameters/properties/shard_count") | | Additional Properties | Any | Optional | can be null | | ## cluster\_mode @@ -29,7 +29,7 @@ Indicates whether the instance is clustered redis deployment. If not provided, i * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-1-then-properties-parameters-properties-cluster_mode.md "http://example.com/schemas/redis-premium-create.json#/properties/services/items/allOf/1/then/allOf/92/then/allOf/1/then/properties/parameters/properties/cluster_mode") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-1-then-properties-parameters-properties-cluster_mode.md "http://example.com/schemas/redis-premium-create.json#/properties/services/items/allOf/1/then/allOf/93/then/allOf/1/then/properties/parameters/properties/cluster_mode") ### cluster\_mode Type @@ -55,7 +55,7 @@ The major version number of the cache engine to be used for the clusters. If not * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-1-then-properties-parameters-properties-engine_version.md "http://example.com/schemas/redis-premium-create.json#/properties/services/items/allOf/1/then/allOf/92/then/allOf/1/then/properties/parameters/properties/engine_version") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-1-then-properties-parameters-properties-engine_version.md "http://example.com/schemas/redis-premium-create.json#/properties/services/items/allOf/1/then/allOf/93/then/allOf/1/then/properties/parameters/properties/engine_version") ### engine\_version Type @@ -90,7 +90,7 @@ The eviction policy for keys when maximum memory usage is reached. Default is 'n * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-1-then-properties-parameters-properties-eviction_policy.md "http://example.com/schemas/redis-premium-create.json#/properties/services/items/allOf/1/then/allOf/92/then/allOf/1/then/properties/parameters/properties/eviction_policy") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-1-then-properties-parameters-properties-eviction_policy.md "http://example.com/schemas/redis-premium-create.json#/properties/services/items/allOf/1/then/allOf/93/then/allOf/1/then/properties/parameters/properties/eviction_policy") ### eviction\_policy Type @@ -127,15 +127,15 @@ Indicates the maintenance window for the Redis cache. * is optional -* Type: `object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-1-then-properties-parameters-properties-maintenance_window.md)) +* Type: `object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-1-then-properties-parameters-properties-maintenance_window.md)) * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-1-then-properties-parameters-properties-maintenance_window.md "http://example.com/schemas/redis-premium-create.json#/properties/services/items/allOf/1/then/allOf/92/then/allOf/1/then/properties/parameters/properties/maintenance_window") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-1-then-properties-parameters-properties-maintenance_window.md "http://example.com/schemas/redis-premium-create.json#/properties/services/items/allOf/1/then/allOf/93/then/allOf/1/then/properties/parameters/properties/maintenance_window") ### maintenance\_window Type -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-1-then-properties-parameters-properties-maintenance_window.md)) +`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-1-then-properties-parameters-properties-maintenance_window.md)) ## memory @@ -149,7 +149,7 @@ Defines amount of memory (in GB) to be used for the instance. The number of CPU * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-1-then-properties-parameters-properties-memory.md "http://example.com/schemas/redis-premium-create.json#/properties/services/items/allOf/1/then/allOf/92/then/allOf/1/then/properties/parameters/properties/memory") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-1-then-properties-parameters-properties-memory.md "http://example.com/schemas/redis-premium-create.json#/properties/services/items/allOf/1/then/allOf/93/then/allOf/1/then/properties/parameters/properties/memory") ### memory Type @@ -186,7 +186,7 @@ Indicates whether the instance is a multi-AZ deployment. If not provided, it is * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-1-then-properties-parameters-properties-multi_az.md "http://example.com/schemas/redis-premium-create.json#/properties/services/items/allOf/1/then/allOf/92/then/allOf/1/then/properties/parameters/properties/multi_az") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-1-then-properties-parameters-properties-multi_az.md "http://example.com/schemas/redis-premium-create.json#/properties/services/items/allOf/1/then/allOf/93/then/allOf/1/then/properties/parameters/properties/multi_az") ### multi\_az Type @@ -212,7 +212,7 @@ Indicates the number of nodes per shard within the Redis cluster. If not provide * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-1-then-properties-parameters-properties-node_count.md "http://example.com/schemas/redis-premium-create.json#/properties/services/items/allOf/1/then/allOf/92/then/allOf/1/then/properties/parameters/properties/node_count") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-1-then-properties-parameters-properties-node_count.md "http://example.com/schemas/redis-premium-create.json#/properties/services/items/allOf/1/then/allOf/93/then/allOf/1/then/properties/parameters/properties/node_count") ### node\_count Type @@ -244,7 +244,7 @@ Indicates the keyspace events for which notifications are enabled. If not provid * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-1-then-properties-parameters-properties-notify_keyspace_events.md "http://example.com/schemas/redis-premium-create.json#/properties/services/items/allOf/1/then/allOf/92/then/allOf/1/then/properties/parameters/properties/notify_keyspace_events") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-1-then-properties-parameters-properties-notify_keyspace_events.md "http://example.com/schemas/redis-premium-create.json#/properties/services/items/allOf/1/then/allOf/93/then/allOf/1/then/properties/parameters/properties/notify_keyspace_events") ### notify\_keyspace\_events Type @@ -272,7 +272,7 @@ Indicates the number of shards within the Redis cluster. If not provided, it is * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-1-then-properties-parameters-properties-shard_count.md "http://example.com/schemas/redis-premium-create.json#/properties/services/items/allOf/1/then/allOf/92/then/allOf/1/then/properties/parameters/properties/shard_count") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-1-then-properties-parameters-properties-shard_count.md "http://example.com/schemas/redis-premium-create.json#/properties/services/items/allOf/1/then/allOf/93/then/allOf/1/then/properties/parameters/properties/shard_count") ### shard\_count Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-90-then-allof-4-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-1-then-properties-plan.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-90-then-allof-4-then-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-1-then-properties-plan.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-2-then-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-1-then-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-2-then-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-1-then-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-26-then-allof-1-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-1-then.md similarity index 69% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-26-then-allof-1-then.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-1-then.md index f8acef79..fc99e0f2 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-26-then-allof-1-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-1-then.md @@ -4,14 +4,14 @@ unknown # then Properties -| Property | Type | Required | Nullable | Defined by | -| :------------------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-26-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/26/then/allOf/1/then/properties/plan") | -| [parameters](#parameters) | `object` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-26-then-allof-1-then-properties-parameters.md "undefined#/properties/services/items/allOf/1/then/allOf/26/then/allOf/1/then/properties/parameters") | +| Property | Type | Required | Nullable | Defined by | +| :------------------------ | :------------ | :------- | :------------- | :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/93/then/allOf/1/then/properties/plan") | +| [parameters](#parameters) | `object` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-1-then-properties-parameters.md "http://example.com/schemas/redis-premium-create.json#/properties/services/items/allOf/1/then/allOf/93/then/allOf/1/then/properties/parameters") | ## plan -service plan >proxy< for >credstore< is available in data centers: +service plan >premium< for >redis-cache< is available in data centers: * {'region': 'ap10', 'name': 'Australia (Sydney)'} * {'region': 'ap11', 'name': 'Singapore'} @@ -41,7 +41,7 @@ service plan >proxy< for >credstore< is available in data centers: * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-26-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/26/then/allOf/1/then/properties/plan") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/93/then/allOf/1/then/properties/plan") ### plan Type @@ -55,12 +55,12 @@ unknown * is required -* Type: `object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-26-then-allof-1-then-properties-parameters.md)) +* Type: `object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-1-then-properties-parameters.md)) * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-26-then-allof-1-then-properties-parameters.md "undefined#/properties/services/items/allOf/1/then/allOf/26/then/allOf/1/then/properties/parameters") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-1-then-properties-parameters.md "http://example.com/schemas/redis-premium-create.json#/properties/services/items/allOf/1/then/allOf/93/then/allOf/1/then/properties/parameters") ### parameters Type -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-26-then-allof-1-then-properties-parameters.md)) +`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-1-then-properties-parameters.md)) diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-87-then-allof-1.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-1.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-87-then-allof-1.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-1.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-95-then-allof-1-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-2-if-properties-plan.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-95-then-allof-1-if-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-2-if-properties-plan.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-95-then-allof-1-if-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-2-if-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-95-then-allof-1-if-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-2-if-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-39-then-allof-2-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-2-if.md similarity index 82% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-39-then-allof-2-if.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-2-if.md index ec71ae78..ec4745e1 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-39-then-allof-2-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-2-if.md @@ -6,7 +6,7 @@ unknown | Property | Type | Required | Nullable | Defined by | | :------------ | :------------ | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-39-then-allof-2-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/39/then/allOf/2/if/properties/plan") | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-2-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/93/then/allOf/2/if/properties/plan") | ## plan @@ -20,7 +20,7 @@ unknown * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-39-then-allof-2-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/39/then/allOf/2/if/properties/plan") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-2-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/93/then/allOf/2/if/properties/plan") ### plan Type @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"schema" +"standard" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-2-then-properties-parameters-properties-cluster_mode.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-2-then-properties-parameters-properties-cluster_mode.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-2-then-properties-parameters-properties-cluster_mode.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-2-then-properties-parameters-properties-cluster_mode.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-2-then-properties-parameters-properties-engine_version.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-2-then-properties-parameters-properties-engine_version.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-2-then-properties-parameters-properties-engine_version.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-2-then-properties-parameters-properties-engine_version.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-2-then-properties-parameters-properties-eviction_policy.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-2-then-properties-parameters-properties-eviction_policy.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-2-then-properties-parameters-properties-eviction_policy.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-2-then-properties-parameters-properties-eviction_policy.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-2-then-properties-parameters-properties-maintenance_window-properties-day_of_week.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-2-then-properties-parameters-properties-maintenance_window-properties-day_of_week.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-2-then-properties-parameters-properties-maintenance_window-properties-day_of_week.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-2-then-properties-parameters-properties-maintenance_window-properties-day_of_week.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-2-then-properties-parameters-properties-maintenance_window-properties-duration.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-2-then-properties-parameters-properties-maintenance_window-properties-duration.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-2-then-properties-parameters-properties-maintenance_window-properties-duration.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-2-then-properties-parameters-properties-maintenance_window-properties-duration.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-2-then-properties-parameters-properties-maintenance_window-properties-start_hour_utc.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-2-then-properties-parameters-properties-maintenance_window-properties-start_hour_utc.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-2-then-properties-parameters-properties-maintenance_window-properties-start_hour_utc.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-2-then-properties-parameters-properties-maintenance_window-properties-start_hour_utc.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-2-then-properties-parameters-properties-maintenance_window.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-2-then-properties-parameters-properties-maintenance_window.md similarity index 84% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-2-then-properties-parameters-properties-maintenance_window.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-2-then-properties-parameters-properties-maintenance_window.md index 7c1b1837..430f2494 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-2-then-properties-parameters-properties-maintenance_window.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-2-then-properties-parameters-properties-maintenance_window.md @@ -1,14 +1,14 @@ ## maintenance\_window Type -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-2-then-properties-parameters-properties-maintenance_window.md)) +`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-2-then-properties-parameters-properties-maintenance_window.md)) # maintenance\_window Properties | Property | Type | Required | Nullable | Defined by | | :---------------------------------- | :-------- | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [day\_of\_week](#day_of_week) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-2-then-properties-parameters-properties-maintenance_window-properties-day_of_week.md "http://example.com/schemas/redis-standard-create.json#/properties/services/items/allOf/1/then/allOf/92/then/allOf/2/then/properties/parameters/properties/maintenance_window/properties/day_of_week") | -| [duration](#duration) | `integer` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-2-then-properties-parameters-properties-maintenance_window-properties-duration.md "http://example.com/schemas/redis-standard-create.json#/properties/services/items/allOf/1/then/allOf/92/then/allOf/2/then/properties/parameters/properties/maintenance_window/properties/duration") | -| [start\_hour\_utc](#start_hour_utc) | `integer` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-2-then-properties-parameters-properties-maintenance_window-properties-start_hour_utc.md "http://example.com/schemas/redis-standard-create.json#/properties/services/items/allOf/1/then/allOf/92/then/allOf/2/then/properties/parameters/properties/maintenance_window/properties/start_hour_utc") | +| [day\_of\_week](#day_of_week) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-2-then-properties-parameters-properties-maintenance_window-properties-day_of_week.md "http://example.com/schemas/redis-standard-create.json#/properties/services/items/allOf/1/then/allOf/93/then/allOf/2/then/properties/parameters/properties/maintenance_window/properties/day_of_week") | +| [duration](#duration) | `integer` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-2-then-properties-parameters-properties-maintenance_window-properties-duration.md "http://example.com/schemas/redis-standard-create.json#/properties/services/items/allOf/1/then/allOf/93/then/allOf/2/then/properties/parameters/properties/maintenance_window/properties/duration") | +| [start\_hour\_utc](#start_hour_utc) | `integer` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-2-then-properties-parameters-properties-maintenance_window-properties-start_hour_utc.md "http://example.com/schemas/redis-standard-create.json#/properties/services/items/allOf/1/then/allOf/93/then/allOf/2/then/properties/parameters/properties/maintenance_window/properties/start_hour_utc") | ## day\_of\_week @@ -22,7 +22,7 @@ Day of the week when Redis cache instance can be patched. * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-2-then-properties-parameters-properties-maintenance_window-properties-day_of_week.md "http://example.com/schemas/redis-standard-create.json#/properties/services/items/allOf/1/then/allOf/92/then/allOf/2/then/properties/parameters/properties/maintenance_window/properties/day_of_week") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-2-then-properties-parameters-properties-maintenance_window-properties-day_of_week.md "http://example.com/schemas/redis-standard-create.json#/properties/services/items/allOf/1/then/allOf/93/then/allOf/2/then/properties/parameters/properties/maintenance_window/properties/day_of_week") ### day\_of\_week Type @@ -62,7 +62,7 @@ Number of hours required for patching the Redis cache instance. * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-2-then-properties-parameters-properties-maintenance_window-properties-duration.md "http://example.com/schemas/redis-standard-create.json#/properties/services/items/allOf/1/then/allOf/92/then/allOf/2/then/properties/parameters/properties/maintenance_window/properties/duration") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-2-then-properties-parameters-properties-maintenance_window-properties-duration.md "http://example.com/schemas/redis-standard-create.json#/properties/services/items/allOf/1/then/allOf/93/then/allOf/2/then/properties/parameters/properties/maintenance_window/properties/duration") ### duration Type @@ -94,7 +94,7 @@ Start hour after which patching of the Redis cache instance can start. * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-2-then-properties-parameters-properties-maintenance_window-properties-start_hour_utc.md "http://example.com/schemas/redis-standard-create.json#/properties/services/items/allOf/1/then/allOf/92/then/allOf/2/then/properties/parameters/properties/maintenance_window/properties/start_hour_utc") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-2-then-properties-parameters-properties-maintenance_window-properties-start_hour_utc.md "http://example.com/schemas/redis-standard-create.json#/properties/services/items/allOf/1/then/allOf/93/then/allOf/2/then/properties/parameters/properties/maintenance_window/properties/start_hour_utc") ### start\_hour\_utc Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-2-then-properties-parameters-properties-memory.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-2-then-properties-parameters-properties-memory.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-2-then-properties-parameters-properties-memory.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-2-then-properties-parameters-properties-memory.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-2-then-properties-parameters-properties-multi_az.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-2-then-properties-parameters-properties-multi_az.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-2-then-properties-parameters-properties-multi_az.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-2-then-properties-parameters-properties-multi_az.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-2-then-properties-parameters-properties-node_count.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-2-then-properties-parameters-properties-node_count.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-2-then-properties-parameters-properties-node_count.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-2-then-properties-parameters-properties-node_count.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-2-then-properties-parameters-properties-notify_keyspace_events.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-2-then-properties-parameters-properties-notify_keyspace_events.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-2-then-properties-parameters-properties-notify_keyspace_events.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-2-then-properties-parameters-properties-notify_keyspace_events.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-2-then-properties-parameters-properties-shard_count.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-2-then-properties-parameters-properties-shard_count.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-2-then-properties-parameters-properties-shard_count.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-2-then-properties-parameters-properties-shard_count.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-2-then-properties-parameters.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-2-then-properties-parameters.md similarity index 82% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-2-then-properties-parameters.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-2-then-properties-parameters.md index fbd0c8ee..08006e31 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-2-then-properties-parameters.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-2-then-properties-parameters.md @@ -1,20 +1,20 @@ ## parameters Type -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-2-then-properties-parameters.md)) +`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-2-then-properties-parameters.md)) # parameters Properties | Property | Type | Required | Nullable | Defined by | | :-------------------------------------------------- | :-------- | :------- | :------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [cluster\_mode](#cluster_mode) | `boolean` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-2-then-properties-parameters-properties-cluster_mode.md "http://example.com/schemas/redis-standard-create.json#/properties/services/items/allOf/1/then/allOf/92/then/allOf/2/then/properties/parameters/properties/cluster_mode") | -| [engine\_version](#engine_version) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-2-then-properties-parameters-properties-engine_version.md "http://example.com/schemas/redis-standard-create.json#/properties/services/items/allOf/1/then/allOf/92/then/allOf/2/then/properties/parameters/properties/engine_version") | -| [eviction\_policy](#eviction_policy) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-2-then-properties-parameters-properties-eviction_policy.md "http://example.com/schemas/redis-standard-create.json#/properties/services/items/allOf/1/then/allOf/92/then/allOf/2/then/properties/parameters/properties/eviction_policy") | -| [maintenance\_window](#maintenance_window) | `object` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-2-then-properties-parameters-properties-maintenance_window.md "http://example.com/schemas/redis-standard-create.json#/properties/services/items/allOf/1/then/allOf/92/then/allOf/2/then/properties/parameters/properties/maintenance_window") | -| [memory](#memory) | `integer` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-2-then-properties-parameters-properties-memory.md "http://example.com/schemas/redis-standard-create.json#/properties/services/items/allOf/1/then/allOf/92/then/allOf/2/then/properties/parameters/properties/memory") | -| [multi\_az](#multi_az) | `boolean` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-2-then-properties-parameters-properties-multi_az.md "http://example.com/schemas/redis-standard-create.json#/properties/services/items/allOf/1/then/allOf/92/then/allOf/2/then/properties/parameters/properties/multi_az") | -| [node\_count](#node_count) | `integer` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-2-then-properties-parameters-properties-node_count.md "http://example.com/schemas/redis-standard-create.json#/properties/services/items/allOf/1/then/allOf/92/then/allOf/2/then/properties/parameters/properties/node_count") | -| [notify\_keyspace\_events](#notify_keyspace_events) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-2-then-properties-parameters-properties-notify_keyspace_events.md "http://example.com/schemas/redis-standard-create.json#/properties/services/items/allOf/1/then/allOf/92/then/allOf/2/then/properties/parameters/properties/notify_keyspace_events") | -| [shard\_count](#shard_count) | `integer` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-2-then-properties-parameters-properties-shard_count.md "http://example.com/schemas/redis-standard-create.json#/properties/services/items/allOf/1/then/allOf/92/then/allOf/2/then/properties/parameters/properties/shard_count") | +| [cluster\_mode](#cluster_mode) | `boolean` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-2-then-properties-parameters-properties-cluster_mode.md "http://example.com/schemas/redis-standard-create.json#/properties/services/items/allOf/1/then/allOf/93/then/allOf/2/then/properties/parameters/properties/cluster_mode") | +| [engine\_version](#engine_version) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-2-then-properties-parameters-properties-engine_version.md "http://example.com/schemas/redis-standard-create.json#/properties/services/items/allOf/1/then/allOf/93/then/allOf/2/then/properties/parameters/properties/engine_version") | +| [eviction\_policy](#eviction_policy) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-2-then-properties-parameters-properties-eviction_policy.md "http://example.com/schemas/redis-standard-create.json#/properties/services/items/allOf/1/then/allOf/93/then/allOf/2/then/properties/parameters/properties/eviction_policy") | +| [maintenance\_window](#maintenance_window) | `object` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-2-then-properties-parameters-properties-maintenance_window.md "http://example.com/schemas/redis-standard-create.json#/properties/services/items/allOf/1/then/allOf/93/then/allOf/2/then/properties/parameters/properties/maintenance_window") | +| [memory](#memory) | `integer` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-2-then-properties-parameters-properties-memory.md "http://example.com/schemas/redis-standard-create.json#/properties/services/items/allOf/1/then/allOf/93/then/allOf/2/then/properties/parameters/properties/memory") | +| [multi\_az](#multi_az) | `boolean` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-2-then-properties-parameters-properties-multi_az.md "http://example.com/schemas/redis-standard-create.json#/properties/services/items/allOf/1/then/allOf/93/then/allOf/2/then/properties/parameters/properties/multi_az") | +| [node\_count](#node_count) | `integer` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-2-then-properties-parameters-properties-node_count.md "http://example.com/schemas/redis-standard-create.json#/properties/services/items/allOf/1/then/allOf/93/then/allOf/2/then/properties/parameters/properties/node_count") | +| [notify\_keyspace\_events](#notify_keyspace_events) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-2-then-properties-parameters-properties-notify_keyspace_events.md "http://example.com/schemas/redis-standard-create.json#/properties/services/items/allOf/1/then/allOf/93/then/allOf/2/then/properties/parameters/properties/notify_keyspace_events") | +| [shard\_count](#shard_count) | `integer` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-2-then-properties-parameters-properties-shard_count.md "http://example.com/schemas/redis-standard-create.json#/properties/services/items/allOf/1/then/allOf/93/then/allOf/2/then/properties/parameters/properties/shard_count") | | Additional Properties | Any | Optional | can be null | | ## cluster\_mode @@ -29,7 +29,7 @@ Indicates whether the instance is clustered redis deployment. If not provided, i * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-2-then-properties-parameters-properties-cluster_mode.md "http://example.com/schemas/redis-standard-create.json#/properties/services/items/allOf/1/then/allOf/92/then/allOf/2/then/properties/parameters/properties/cluster_mode") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-2-then-properties-parameters-properties-cluster_mode.md "http://example.com/schemas/redis-standard-create.json#/properties/services/items/allOf/1/then/allOf/93/then/allOf/2/then/properties/parameters/properties/cluster_mode") ### cluster\_mode Type @@ -55,7 +55,7 @@ The major version number of the cache engine to be used for the clusters. If not * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-2-then-properties-parameters-properties-engine_version.md "http://example.com/schemas/redis-standard-create.json#/properties/services/items/allOf/1/then/allOf/92/then/allOf/2/then/properties/parameters/properties/engine_version") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-2-then-properties-parameters-properties-engine_version.md "http://example.com/schemas/redis-standard-create.json#/properties/services/items/allOf/1/then/allOf/93/then/allOf/2/then/properties/parameters/properties/engine_version") ### engine\_version Type @@ -90,7 +90,7 @@ The eviction policy for keys when maximum memory usage is reached. Default is 'n * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-2-then-properties-parameters-properties-eviction_policy.md "http://example.com/schemas/redis-standard-create.json#/properties/services/items/allOf/1/then/allOf/92/then/allOf/2/then/properties/parameters/properties/eviction_policy") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-2-then-properties-parameters-properties-eviction_policy.md "http://example.com/schemas/redis-standard-create.json#/properties/services/items/allOf/1/then/allOf/93/then/allOf/2/then/properties/parameters/properties/eviction_policy") ### eviction\_policy Type @@ -127,15 +127,15 @@ Indicates the maintenance window for the Redis cache. * is optional -* Type: `object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-2-then-properties-parameters-properties-maintenance_window.md)) +* Type: `object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-2-then-properties-parameters-properties-maintenance_window.md)) * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-2-then-properties-parameters-properties-maintenance_window.md "http://example.com/schemas/redis-standard-create.json#/properties/services/items/allOf/1/then/allOf/92/then/allOf/2/then/properties/parameters/properties/maintenance_window") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-2-then-properties-parameters-properties-maintenance_window.md "http://example.com/schemas/redis-standard-create.json#/properties/services/items/allOf/1/then/allOf/93/then/allOf/2/then/properties/parameters/properties/maintenance_window") ### maintenance\_window Type -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-2-then-properties-parameters-properties-maintenance_window.md)) +`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-2-then-properties-parameters-properties-maintenance_window.md)) ## memory @@ -149,7 +149,7 @@ Defines amount of memory (in GB) to be used for the instance. The number of CPU * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-2-then-properties-parameters-properties-memory.md "http://example.com/schemas/redis-standard-create.json#/properties/services/items/allOf/1/then/allOf/92/then/allOf/2/then/properties/parameters/properties/memory") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-2-then-properties-parameters-properties-memory.md "http://example.com/schemas/redis-standard-create.json#/properties/services/items/allOf/1/then/allOf/93/then/allOf/2/then/properties/parameters/properties/memory") ### memory Type @@ -184,7 +184,7 @@ Indicates whether the instance is a multi-AZ deployment. If not provided, it is * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-2-then-properties-parameters-properties-multi_az.md "http://example.com/schemas/redis-standard-create.json#/properties/services/items/allOf/1/then/allOf/92/then/allOf/2/then/properties/parameters/properties/multi_az") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-2-then-properties-parameters-properties-multi_az.md "http://example.com/schemas/redis-standard-create.json#/properties/services/items/allOf/1/then/allOf/93/then/allOf/2/then/properties/parameters/properties/multi_az") ### multi\_az Type @@ -210,7 +210,7 @@ Indicates the number of nodes per shard within the Redis cluster. If not provide * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-2-then-properties-parameters-properties-node_count.md "http://example.com/schemas/redis-standard-create.json#/properties/services/items/allOf/1/then/allOf/92/then/allOf/2/then/properties/parameters/properties/node_count") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-2-then-properties-parameters-properties-node_count.md "http://example.com/schemas/redis-standard-create.json#/properties/services/items/allOf/1/then/allOf/93/then/allOf/2/then/properties/parameters/properties/node_count") ### node\_count Type @@ -242,7 +242,7 @@ Indicates the keyspace events for which notifications are enabled. If not provid * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-2-then-properties-parameters-properties-notify_keyspace_events.md "http://example.com/schemas/redis-standard-create.json#/properties/services/items/allOf/1/then/allOf/92/then/allOf/2/then/properties/parameters/properties/notify_keyspace_events") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-2-then-properties-parameters-properties-notify_keyspace_events.md "http://example.com/schemas/redis-standard-create.json#/properties/services/items/allOf/1/then/allOf/93/then/allOf/2/then/properties/parameters/properties/notify_keyspace_events") ### notify\_keyspace\_events Type @@ -270,7 +270,7 @@ Indicates the number of shards within the Redis cluster. If not provided, it is * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-2-then-properties-parameters-properties-shard_count.md "http://example.com/schemas/redis-standard-create.json#/properties/services/items/allOf/1/then/allOf/92/then/allOf/2/then/properties/parameters/properties/shard_count") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-2-then-properties-parameters-properties-shard_count.md "http://example.com/schemas/redis-standard-create.json#/properties/services/items/allOf/1/then/allOf/93/then/allOf/2/then/properties/parameters/properties/shard_count") ### shard\_count Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-2-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-2-then-properties-plan.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-2-then-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-2-then-properties-plan.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-95-then-allof-1-then-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-2-then-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-95-then-allof-1-then-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-2-then-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-2-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-2-then.md similarity index 82% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-2-then.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-2-then.md index 67702b28..a75175de 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-2-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-2-then.md @@ -6,8 +6,8 @@ unknown | Property | Type | Required | Nullable | Defined by | | :------------------------ | :------------ | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-2-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/92/then/allOf/2/then/properties/plan") | -| [parameters](#parameters) | `object` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-2-then-properties-parameters.md "http://example.com/schemas/redis-standard-create.json#/properties/services/items/allOf/1/then/allOf/92/then/allOf/2/then/properties/parameters") | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-2-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/93/then/allOf/2/then/properties/plan") | +| [parameters](#parameters) | `object` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-2-then-properties-parameters.md "http://example.com/schemas/redis-standard-create.json#/properties/services/items/allOf/1/then/allOf/93/then/allOf/2/then/properties/parameters") | ## plan @@ -41,7 +41,7 @@ service plan >standard< for >redis-cache< is available in data centers: * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-2-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/92/then/allOf/2/then/properties/plan") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-2-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/93/then/allOf/2/then/properties/plan") ### plan Type @@ -55,12 +55,12 @@ unknown * is required -* Type: `object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-2-then-properties-parameters.md)) +* Type: `object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-2-then-properties-parameters.md)) * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-2-then-properties-parameters.md "http://example.com/schemas/redis-standard-create.json#/properties/services/items/allOf/1/then/allOf/92/then/allOf/2/then/properties/parameters") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-2-then-properties-parameters.md "http://example.com/schemas/redis-standard-create.json#/properties/services/items/allOf/1/then/allOf/93/then/allOf/2/then/properties/parameters") ### parameters Type -`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-2-then-properties-parameters.md)) +`object` ([Details](btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-2-then-properties-parameters.md)) diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-2.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-2.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-92-then-allof-2.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-2.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-properties-plan.md index 5184db98..f7dd2b05 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-properties-plan.md @@ -6,6 +6,8 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :------- | :---------- | -| `"beta"` | | +| Value | Explanation | +| :----------- | :---------- | +| `"free"` | | +| `"premium"` | | +| `"standard"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-93-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-93-then.md index c8badf0c..66581d10 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-93-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-93-then.md @@ -6,6 +6,10 @@ all of * [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-0.md "check type definition") +* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-1.md "check type definition") + +* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-93-then-allof-2.md "check type definition") + # then Properties | Property | Type | Required | Nullable | Defined by | @@ -35,13 +39,15 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :------- | :---------- | -| `"beta"` | | +| Value | Explanation | +| :----------- | :---------- | +| `"free"` | | +| `"premium"` | | +| `"standard"` | | ## name -SAP Responsibility Management service: Provides APIs for DetermineAgents using responsibility rules or external APIs(bring your own code) and AgentDeterminationRequest. +Redis on SAP BTP, hyperscaler option: The Redis service on SAP BTP provides a way to directly consume the Redis cache service provided by the Infrastructure providers such as AWS and Azure. `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-94-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-94-if-properties-name.md index 7bda0d78..fed9a319 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-94-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-94-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"responsibilitymanagement-service" +"responsibility-management-service-beta" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-94-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-94-if.md index a891e56c..d1eec187 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-94-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-94-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"responsibilitymanagement-service" +"responsibility-management-service-beta" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-94-then-allof-0-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-94-then-allof-0-if-properties-plan.md index 126392b1..538fc6a8 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-94-then-allof-0-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-94-then-allof-0-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"standard" +"beta" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-94-then-allof-0-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-94-then-allof-0-if.md index 2f7b9757..36878f30 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-94-then-allof-0-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-94-then-allof-0-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"standard" +"beta" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-94-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-94-then-allof-0-then.md index a0b81d0d..52055617 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-94-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-94-then-allof-0-then.md @@ -10,14 +10,9 @@ unknown ## plan -service plan >standard< for >responsibilitymanagement-service< is available in data centers: +service plan >beta< for >responsibility-management-service-beta< is available in data centers: * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} -* {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} -* {'region': 'eu20', 'name': 'Europe (Netherlands)'} -* {'region': 'us10', 'name': 'US East (VA)'} -* {'region': 'us20', 'name': 'US West (WA)'} -* {'region': 'us21', 'name': 'US East (VA)'} `plan` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-94-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-94-then-properties-plan.md index 248cb3df..5184db98 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-94-then-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-94-then-properties-plan.md @@ -6,6 +6,6 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :----------- | :---------- | -| `"standard"` | | +| Value | Explanation | +| :------- | :---------- | +| `"beta"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-94-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-94-then.md index 0526e1d7..c239c03d 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-94-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-94-then.md @@ -35,13 +35,13 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :----------- | :---------- | -| `"standard"` | | +| Value | Explanation | +| :------- | :---------- | +| `"beta"` | | ## name -SAP Responsibility Management service: As we move toward an intelligent enterprise, intelligent systems need to determine agents who are responsible for business processes and objects, and automatically notify them. It is essential to define and manage these responsibilities for various contexts and retrieve responsible agents who can respond to tasks and activities. +SAP Responsibility Management service: Provides APIs for DetermineAgents using responsibility rules or external APIs(bring your own code) and AgentDeterminationRequest. `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-95-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-95-if-properties-name.md index eea35f07..7bda0d78 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-95-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-95-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"retention-manager" +"responsibilitymanagement-service" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-95-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-95-if.md index de5c3a47..9d6b0b2f 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-95-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-95-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"retention-manager" +"responsibilitymanagement-service" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-95-then-allof-0-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-95-then-allof-0-if-properties-plan.md index c97f5143..126392b1 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-95-then-allof-0-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-95-then-allof-0-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"free" +"standard" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-95-then-allof-0-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-95-then-allof-0-if.md index f3466437..30c4898d 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-95-then-allof-0-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-95-then-allof-0-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"free" +"standard" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-95-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-95-then-allof-0-then.md index 5d6275e9..b388db9b 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-95-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-95-then-allof-0-then.md @@ -10,18 +10,14 @@ unknown ## plan -service plan >free< for >retention-manager< is available in data centers: +service plan >standard< for >responsibilitymanagement-service< is available in data centers: -* {'region': 'ap10', 'name': 'Australia (Sydney)'} -* {'region': 'ap11', 'name': 'Singapore'} -* {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} * {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} * {'region': 'eu20', 'name': 'Europe (Netherlands)'} * {'region': 'us10', 'name': 'US East (VA)'} * {'region': 'us20', 'name': 'US West (WA)'} * {'region': 'us21', 'name': 'US East (VA)'} -* {'region': 'us30', 'name': 'US Central (IA)'} `plan` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-95-then-allof-1-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-95-then-allof-1-if.md deleted file mode 100644 index b0a5c804..00000000 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-95-then-allof-1-if.md +++ /dev/null @@ -1,35 +0,0 @@ -## if Type - -unknown - -# if Properties - -| Property | Type | Required | Nullable | Defined by | -| :------------ | :------------ | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-95-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/95/then/allOf/1/if/properties/plan") | - -## plan - - - -`plan` - -* is optional - -* Type: unknown - -* cannot be null - -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-95-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/95/then/allOf/1/if/properties/plan") - -### plan Type - -unknown - -### plan Constraints - -**constant**: the value of this property must be equal to: - -```json -"standard" -``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-95-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-95-then-properties-plan.md index 49c8bb8c..248cb3df 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-95-then-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-95-then-properties-plan.md @@ -8,5 +8,4 @@ unknown | Value | Explanation | | :----------- | :---------- | -| `"free"` | | | `"standard"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-95-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-95-then.md index 900ebedf..03a1d0e5 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-95-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-95-then.md @@ -6,8 +6,6 @@ all of * [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-95-then-allof-0.md "check type definition") -* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-95-then-allof-1.md "check type definition") - # then Properties | Property | Type | Required | Nullable | Defined by | @@ -39,12 +37,11 @@ unknown | Value | Explanation | | :----------- | :---------- | -| `"free"` | | | `"standard"` | | ## name -SAP Data Retention Manager: SAP Data Retention Manager service lets you block or delete personal data based on the residence and retention rules maintained. +SAP Responsibility Management service: As we move toward an intelligent enterprise, intelligent systems need to determine agents who are responsible for business processes and objects, and automatically notify them. It is essential to define and manage these responsibilities for various contexts and retrieve responsible agents who can respond to tasks and activities. `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-96-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-96-if-properties-name.md index 39bc7f53..eea35f07 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-96-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-96-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"saas-registry" +"retention-manager" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-96-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-96-if.md index bd5f71e5..27c6fcb9 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-96-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-96-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"saas-registry" +"retention-manager" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-96-then-allof-0-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-96-then-allof-0-if-properties-plan.md index 9ae791c7..c97f5143 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-96-then-allof-0-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-96-then-allof-0-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"application" +"free" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-96-then-allof-0-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-96-then-allof-0-if.md index 9172e3bf..22bcbb1b 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-96-then-allof-0-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-96-then-allof-0-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"application" +"free" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-96-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-96-then-allof-0-then.md index afec73b4..1ac5598d 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-96-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-96-then-allof-0-then.md @@ -10,23 +10,14 @@ unknown ## plan -service plan >application< for >saas-registry< is available in data centers: +service plan >free< for >retention-manager< is available in data centers: * {'region': 'ap10', 'name': 'Australia (Sydney)'} * {'region': 'ap11', 'name': 'Singapore'} -* {'region': 'ap12', 'name': 'South Korea (Seoul)'} -* {'region': 'ap20', 'name': 'Australia (Sydney) Azure'} -* {'region': 'ap21', 'name': 'Singapore'} * {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} -* {'region': 'ca10', 'name': 'Canada (Montreal)'} -* {'region': 'ch20', 'name': 'cf-ch20'} * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} * {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} * {'region': 'eu20', 'name': 'Europe (Netherlands)'} -* {'region': 'eu30', 'name': 'Europe (Frankfurt)'} -* {'region': 'in30', 'name': 'India (Mumbai)'} -* {'region': 'jp10', 'name': 'Japan (Tokyo)'} -* {'region': 'jp20', 'name': 'Japan (Tokyo)'} * {'region': 'us10', 'name': 'US East (VA)'} * {'region': 'us20', 'name': 'US West (WA)'} * {'region': 'us21', 'name': 'US East (VA)'} diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-25-then-allof-2-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-96-then-allof-1-if-properties-plan.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-25-then-allof-2-if-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-96-then-allof-1-if-properties-plan.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-10-then-allof-1-if-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-96-then-allof-1-if-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-10-then-allof-1-if-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-96-then-allof-1-if-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-96-then-allof-1-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-96-then-allof-1-if.md new file mode 100644 index 00000000..cc6d1b52 --- /dev/null +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-96-then-allof-1-if.md @@ -0,0 +1,35 @@ +## if Type + +unknown + +# if Properties + +| Property | Type | Required | Nullable | Defined by | +| :------------ | :------------ | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-96-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/96/then/allOf/1/if/properties/plan") | + +## plan + + + +`plan` + +* is optional + +* Type: unknown + +* cannot be null + +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-96-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/96/then/allOf/1/if/properties/plan") + +### plan Type + +unknown + +### plan Constraints + +**constant**: the value of this property must be equal to: + +```json +"standard" +``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-95-then-allof-1-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-96-then-allof-1-then-properties-plan.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-95-then-allof-1-then-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-96-then-allof-1-then-properties-plan.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-10-then-allof-1-then-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-96-then-allof-1-then-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-10-then-allof-1-then-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-96-then-allof-1-then-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-95-then-allof-1-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-96-then-allof-1-then.md similarity index 87% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-95-then-allof-1-then.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-96-then-allof-1-then.md index 96839f99..3b409ca4 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-95-then-allof-1-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-96-then-allof-1-then.md @@ -6,7 +6,7 @@ unknown | Property | Type | Required | Nullable | Defined by | | :------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-95-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/95/then/allOf/1/then/properties/plan") | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-96-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/96/then/allOf/1/then/properties/plan") | ## plan @@ -32,7 +32,7 @@ service plan >standard< for >retention-manager< is available in data centers: * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-95-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/95/then/allOf/1/then/properties/plan") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-96-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/1/then/allOf/96/then/allOf/1/then/properties/plan") ### plan Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-89-then-allof-1.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-96-then-allof-1.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-89-then-allof-1.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-96-then-allof-1.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-96-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-96-then-properties-plan.md index c582c964..49c8bb8c 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-96-then-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-96-then-properties-plan.md @@ -6,6 +6,7 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :-------------- | :---------- | -| `"application"` | | +| Value | Explanation | +| :----------- | :---------- | +| `"free"` | | +| `"standard"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-96-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-96-then.md index c62d04ff..f6be21ce 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-96-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-96-then.md @@ -6,6 +6,8 @@ all of * [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-96-then-allof-0.md "check type definition") +* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-96-then-allof-1.md "check type definition") + # then Properties | Property | Type | Required | Nullable | Defined by | @@ -35,13 +37,14 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :-------------- | :---------- | -| `"application"` | | +| Value | Explanation | +| :----------- | :---------- | +| `"free"` | | +| `"standard"` | | ## name -SAP Software-as-a-Service Provisioning service: Service for application providers to register multitenant applications and services. +SAP Data Retention Manager: SAP Data Retention Manager service lets you block or delete personal data based on the residence and retention rules maintained. `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-97-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-97-if-properties-name.md index fea13267..39bc7f53 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-97-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-97-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"sap-analytics-cloud-embedded-edition" +"saas-registry" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-97-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-97-if.md index 4acf0d4d..79d804a6 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-97-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-97-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"sap-analytics-cloud-embedded-edition" +"saas-registry" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-97-then-allof-0-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-97-then-allof-0-if-properties-plan.md index 126392b1..9ae791c7 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-97-then-allof-0-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-97-then-allof-0-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"standard" +"application" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-97-then-allof-0-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-97-then-allof-0-if.md index 22f382cf..09456f29 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-97-then-allof-0-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-97-then-allof-0-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"standard" +"application" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-97-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-97-then-allof-0-then.md index 85767b6e..ae160648 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-97-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-97-then-allof-0-then.md @@ -10,18 +10,26 @@ unknown ## plan -service plan >standard< for >sap-analytics-cloud-embedded-edition< is available in data centers: +service plan >application< for >saas-registry< is available in data centers: * {'region': 'ap10', 'name': 'Australia (Sydney)'} * {'region': 'ap11', 'name': 'Singapore'} * {'region': 'ap12', 'name': 'South Korea (Seoul)'} +* {'region': 'ap20', 'name': 'Australia (Sydney) Azure'} +* {'region': 'ap21', 'name': 'Singapore'} * {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} * {'region': 'ca10', 'name': 'Canada (Montreal)'} +* {'region': 'ch20', 'name': 'cf-ch20'} * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} * {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} * {'region': 'eu20', 'name': 'Europe (Netherlands)'} +* {'region': 'eu30', 'name': 'Europe (Frankfurt)'} +* {'region': 'in30', 'name': 'India (Mumbai)'} * {'region': 'jp10', 'name': 'Japan (Tokyo)'} +* {'region': 'jp20', 'name': 'Japan (Tokyo)'} * {'region': 'us10', 'name': 'US East (VA)'} +* {'region': 'us20', 'name': 'US West (WA)'} +* {'region': 'us21', 'name': 'US East (VA)'} * {'region': 'us30', 'name': 'US Central (IA)'} `plan` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-97-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-97-then-properties-plan.md index 248cb3df..c582c964 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-97-then-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-97-then-properties-plan.md @@ -6,6 +6,6 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :----------- | :---------- | -| `"standard"` | | +| Value | Explanation | +| :-------------- | :---------- | +| `"application"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-97-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-97-then.md index f364a418..3e9abf5f 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-97-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-97-then.md @@ -35,13 +35,13 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :----------- | :---------- | -| `"standard"` | | +| Value | Explanation | +| :-------------- | :---------- | +| `"application"` | | ## name -SAP Analytics Cloud, embedded edition: With SAP Analytics Cloud, embedded edition, you can build and embed reports, dashboards, and visuals into your business application to make confident decisions. Explore your business data via live connection between your SAP Analytics Cloud tenant and the remote SAP HANA database on SAP Business Technology Platform. +SAP Software-as-a-Service Provisioning service: Service for application providers to register multitenant applications and services. `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-98-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-98-if-properties-name.md index 0486952e..fea13267 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-98-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-98-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"sap-bigdataservices" +"sap-analytics-cloud-embedded-edition" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-98-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-98-if.md index 5268e199..40d102ca 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-98-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-98-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"sap-bigdataservices" +"sap-analytics-cloud-embedded-edition" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-98-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-98-then-allof-0-then.md index d1ed0044..93e5e80f 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-98-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-98-then-allof-0-then.md @@ -10,10 +10,19 @@ unknown ## plan -service plan >standard< for >sap-bigdataservices< is available in data centers: +service plan >standard< for >sap-analytics-cloud-embedded-edition< is available in data centers: +* {'region': 'ap10', 'name': 'Australia (Sydney)'} +* {'region': 'ap11', 'name': 'Singapore'} +* {'region': 'ap12', 'name': 'South Korea (Seoul)'} +* {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} +* {'region': 'ca10', 'name': 'Canada (Montreal)'} * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} +* {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} +* {'region': 'eu20', 'name': 'Europe (Netherlands)'} +* {'region': 'jp10', 'name': 'Japan (Tokyo)'} * {'region': 'us10', 'name': 'US East (VA)'} +* {'region': 'us30', 'name': 'US Central (IA)'} `plan` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-98-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-98-then.md index acc92eaa..c5abbba1 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-98-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-98-then.md @@ -41,7 +41,7 @@ unknown ## name -SAP Big Data Services: Big Data Services +SAP Analytics Cloud, embedded edition: With SAP Analytics Cloud, embedded edition, you can build and embed reports, dashboards, and visuals into your business application to make confident decisions. Explore your business data via live connection between your SAP Analytics Cloud tenant and the remote SAP HANA database on SAP Business Technology Platform. `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-99-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-99-if-properties-name.md index 8b460896..0486952e 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-99-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-99-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"sap-build-apps-runtime" +"sap-bigdataservices" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-99-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-99-if.md index 213fa075..2f4807fd 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-99-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-99-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"sap-build-apps-runtime" +"sap-bigdataservices" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-99-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-99-then-allof-0-then.md index f9898f67..b15a0b6d 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-99-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-99-then-allof-0-then.md @@ -10,7 +10,7 @@ unknown ## plan -service plan >standard< for >sap-build-apps-runtime< is available in data centers: +service plan >standard< for >sap-bigdataservices< is available in data centers: * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} * {'region': 'us10', 'name': 'US East (VA)'} diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-99-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-99-then.md index 15d53b45..2da0202f 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-99-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-99-then.md @@ -41,7 +41,7 @@ unknown ## name -SAP Build Apps runtime: The runtime service for SAP Build Apps. Allows connectivity to visual cloud functions applications developed and deployed on the SAP Build Apps runtime. A subscription to SAP Build Apps is required to use this service. +SAP Big Data Services: Big Data Services `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-properties-name.md index 8ace6bf5..1d79b04c 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-properties-name.md @@ -19,6 +19,7 @@ unknown | `"apimanagement-devportal"` | | | `"application-logs"` | | | `"ASE_PROVISIONING"` | | +| `"auditlog"` | | | `"auditlog-api"` | | | `"auditlog-management"` | | | `"autoscaler"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then.md index ce360177..a4237052 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-1-then.md @@ -240,6 +240,8 @@ all of * [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-117.md "check type definition") +* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-1-then-allof-118.md "check type definition") + # then Properties | Property | Type | Required | Nullable | Defined by | @@ -281,6 +283,7 @@ unknown | `"apimanagement-devportal"` | | | `"application-logs"` | | | `"ASE_PROVISIONING"` | | +| `"auditlog"` | | | `"auditlog-api"` | | | `"auditlog-management"` | | | `"autoscaler"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-10-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-10-if-properties-name.md index 66827575..3a7c68a9 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-10-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-10-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"cicd-app" +"cias" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-10-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-10-if.md index c35d35f3..b0694c3f 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-10-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-10-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"cicd-app" +"cias" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-10-then-allof-0-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-10-then-allof-0-if-properties-plan.md index 4f94ce99..126392b1 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-10-then-allof-0-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-10-then-allof-0-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"default" +"standard" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-10-then-allof-0-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-10-then-allof-0-if.md index b976403e..d7978d02 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-10-then-allof-0-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-10-then-allof-0-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"default" +"standard" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-10-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-10-then-allof-0-then.md index 5fa843ee..9d359f24 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-10-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-10-then-allof-0-then.md @@ -10,13 +10,14 @@ unknown ## plan -application plan >default< for >cicd-app< is available in data centers: +application plan >standard< for >cias< is available in data centers: +* {'region': 'ap10', 'name': 'Australia (Sydney)'} * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} * {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} +* {'region': 'eu20', 'name': 'Europe (Netherlands)'} * {'region': 'jp10', 'name': 'Japan (Tokyo)'} * {'region': 'us10', 'name': 'US East (VA)'} -* {'region': 'us20', 'name': 'US West (WA)'} `plan` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-10-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-10-then-properties-plan.md index 5c4db72d..248cb3df 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-10-then-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-10-then-properties-plan.md @@ -6,7 +6,6 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :---------- | :---------- | -| `"default"` | | -| `"free"` | | +| Value | Explanation | +| :----------- | :---------- | +| `"standard"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-10-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-10-then.md index 4f0e6780..c243b1c5 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-10-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-10-then.md @@ -6,8 +6,6 @@ all of * [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-10-then-allof-0.md "check type definition") -* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-10-then-allof-1.md "check type definition") - # then Properties | Property | Type | Required | Nullable | Defined by | @@ -37,14 +35,13 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :---------- | :---------- | -| `"default"` | | -| `"free"` | | +| Value | Explanation | +| :----------- | :---------- | +| `"standard"` | | ## name -SAP Continuous Integration and Delivery: SAP Continuous Integration and Delivery lets you configure and run predefined continuous integration and delivery (CI/CD) pipelines that automatically build, test and deploy your code changes to speed up your development and delivery cycles. +Cloud Integration Automation: Cloud Integration Automation service provides you a guided workflow to integrate SAP cloud solutions to On-Premise and other SAP Cloud solutions. The guided workflow contains instructions for manual and automated tasks to enable a simpler and faster integration configuration setup. `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-11-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-11-if-properties-name.md index 729a0a27..66827575 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-11-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-11-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"content-agent-ui" +"cicd-app" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-11-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-11-if.md index c8fd565f..15587d55 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-11-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-11-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"content-agent-ui" +"cicd-app" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-11-then-allof-0-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-11-then-allof-0-if-properties-plan.md index c97f5143..4f94ce99 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-11-then-allof-0-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-11-then-allof-0-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"free" +"default" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-11-then-allof-0-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-11-then-allof-0-if.md index f0341e59..86e433ed 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-11-then-allof-0-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-11-then-allof-0-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"free" +"default" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-11-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-11-then-allof-0-then.md index 394aff55..0959e957 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-11-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-11-then-allof-0-then.md @@ -10,27 +10,13 @@ unknown ## plan -application plan >free< for >content-agent-ui< is available in data centers: - -* {'region': 'ap10', 'name': 'Australia (Sydney)'} -* {'region': 'ap11', 'name': 'Singapore'} -* {'region': 'ap12', 'name': 'South Korea (Seoul)'} -* {'region': 'ap20', 'name': 'Australia (Sydney) Azure'} -* {'region': 'ap21', 'name': 'Singapore'} -* {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} -* {'region': 'ca10', 'name': 'Canada (Montreal)'} -* {'region': 'ch20', 'name': 'cf-ch20'} +application plan >default< for >cicd-app< is available in data centers: + * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} * {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} -* {'region': 'eu20', 'name': 'Europe (Netherlands)'} -* {'region': 'eu30', 'name': 'Europe (Frankfurt)'} -* {'region': 'in30', 'name': 'India (Mumbai)'} * {'region': 'jp10', 'name': 'Japan (Tokyo)'} -* {'region': 'jp20', 'name': 'Japan (Tokyo)'} * {'region': 'us10', 'name': 'US East (VA)'} * {'region': 'us20', 'name': 'US West (WA)'} -* {'region': 'us21', 'name': 'US East (VA)'} -* {'region': 'us30', 'name': 'US Central (IA)'} `plan` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-10-then-allof-1-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-11-then-allof-1-if-properties-plan.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-10-then-allof-1-if-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-11-then-allof-1-if-properties-plan.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-17-then-allof-1-if-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-11-then-allof-1-if-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-17-then-allof-1-if-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-11-then-allof-1-if-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-24-then-allof-1-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-11-then-allof-1-if.md similarity index 83% rename from docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-24-then-allof-1-if.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-11-then-allof-1-if.md index 37bf47c8..f2298910 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-24-then-allof-1-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-11-then-allof-1-if.md @@ -6,7 +6,7 @@ unknown | Property | Type | Required | Nullable | Defined by | | :------------ | :------------ | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-24-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/2/then/allOf/24/then/allOf/1/if/properties/plan") | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-11-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/2/then/allOf/11/then/allOf/1/if/properties/plan") | ## plan @@ -20,7 +20,7 @@ unknown * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-24-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/2/then/allOf/24/then/allOf/1/if/properties/plan") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-11-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/2/then/allOf/11/then/allOf/1/if/properties/plan") ### plan Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-10-then-allof-1-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-11-then-allof-1-then-properties-plan.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-10-then-allof-1-then-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-11-then-allof-1-then-properties-plan.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-17-then-allof-1-then-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-11-then-allof-1-then-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-17-then-allof-1-then-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-11-then-allof-1-then-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-10-then-allof-1-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-11-then-allof-1-then.md similarity index 85% rename from docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-10-then-allof-1-then.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-11-then-allof-1-then.md index 11fe8d16..99da0101 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-10-then-allof-1-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-11-then-allof-1-then.md @@ -6,7 +6,7 @@ unknown | Property | Type | Required | Nullable | Defined by | | :------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-10-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/2/then/allOf/10/then/allOf/1/then/properties/plan") | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-11-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/2/then/allOf/11/then/allOf/1/then/properties/plan") | ## plan @@ -26,7 +26,7 @@ application plan >free< for >cicd-app< is available in data centers: * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-10-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/2/then/allOf/10/then/allOf/1/then/properties/plan") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-11-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/2/then/allOf/11/then/allOf/1/then/properties/plan") ### plan Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-95-then-allof-1.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-11-then-allof-1.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-95-then-allof-1.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-11-then-allof-1.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-11-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-11-then-properties-plan.md index f02fcbf6..5c4db72d 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-11-then-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-11-then-properties-plan.md @@ -6,6 +6,7 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :------- | :---------- | -| `"free"` | | +| Value | Explanation | +| :---------- | :---------- | +| `"default"` | | +| `"free"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-11-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-11-then.md index 6283daed..ddd09377 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-11-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-11-then.md @@ -6,6 +6,8 @@ all of * [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-11-then-allof-0.md "check type definition") +* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-11-then-allof-1.md "check type definition") + # then Properties | Property | Type | Required | Nullable | Defined by | @@ -35,13 +37,14 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :------- | :---------- | -| `"free"` | | +| Value | Explanation | +| :---------- | :---------- | +| `"default"` | | +| `"free"` | | ## name -SAP Content Agent service: SAP Content Agent service is a tool for SAP BTP applications offering generic content management operations such as view, export and import content with inter-dependencies and integration with SAP Cloud Transport Management service. It offers a view to track all activities along with logs, status and other information. +SAP Continuous Integration and Delivery: SAP Continuous Integration and Delivery lets you configure and run predefined continuous integration and delivery (CI/CD) pipelines that automatically build, test and deploy your code changes to speed up your development and delivery cycles. `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-12-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-12-if-properties-name.md index d1f0b42f..729a0a27 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-12-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-12-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"custom-domain-manager" +"content-agent-ui" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-12-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-12-if.md index 52016a48..24a99ca4 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-12-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-12-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"custom-domain-manager" +"content-agent-ui" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-12-then-allof-0-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-12-then-allof-0-if-properties-plan.md index 126392b1..c97f5143 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-12-then-allof-0-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-12-then-allof-0-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"standard" +"free" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-12-then-allof-0-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-12-then-allof-0-if.md index 7ec21f6a..bb949e6a 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-12-then-allof-0-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-12-then-allof-0-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"standard" +"free" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-12-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-12-then-allof-0-then.md index 1bdf5cff..bae7559f 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-12-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-12-then-allof-0-then.md @@ -10,7 +10,7 @@ unknown ## plan -application plan >standard< for >custom-domain-manager< is available in data centers: +application plan >free< for >content-agent-ui< is available in data centers: * {'region': 'ap10', 'name': 'Australia (Sydney)'} * {'region': 'ap11', 'name': 'Singapore'} diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-12-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-12-then-properties-plan.md index 248cb3df..f02fcbf6 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-12-then-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-12-then-properties-plan.md @@ -6,6 +6,6 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :----------- | :---------- | -| `"standard"` | | +| Value | Explanation | +| :------- | :---------- | +| `"free"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-12-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-12-then.md index bf88b6bc..20d17c5e 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-12-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-12-then.md @@ -35,13 +35,13 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :----------- | :---------- | -| `"standard"` | | +| Value | Explanation | +| :------- | :---------- | +| `"free"` | | ## name -SAP Custom Domain service: The SAP Business Technology Platform Custom Domain service lets you configure your own custom domain to expose publicly your SAP Business Technology Platform application instead of using the default subdomain. +SAP Content Agent service: SAP Content Agent service is a tool for SAP BTP applications offering generic content management operations such as view, export and import content with inter-dependencies and integration with SAP Cloud Transport Management service. It offers a view to track all activities along with logs, status and other information. `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-13-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-13-if-properties-name.md index ad623d65..d1f0b42f 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-13-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-13-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"data-privacy-integration-application" +"custom-domain-manager" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-13-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-13-if.md index 56e61193..fa7994c3 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-13-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-13-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"data-privacy-integration-application" +"custom-domain-manager" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-13-then-allof-0-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-13-then-allof-0-if-properties-plan.md index 4f94ce99..126392b1 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-13-then-allof-0-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-13-then-allof-0-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"default" +"standard" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-13-then-allof-0-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-13-then-allof-0-if.md index f6da6c92..68bbc3e3 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-13-then-allof-0-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-13-then-allof-0-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"default" +"standard" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-13-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-13-then-allof-0-then.md index c5f72d51..feaadf66 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-13-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-13-then-allof-0-then.md @@ -10,14 +10,23 @@ unknown ## plan -application plan >default< for >data-privacy-integration-application< is available in data centers: +application plan >standard< for >custom-domain-manager< is available in data centers: * {'region': 'ap10', 'name': 'Australia (Sydney)'} * {'region': 'ap11', 'name': 'Singapore'} +* {'region': 'ap12', 'name': 'South Korea (Seoul)'} +* {'region': 'ap20', 'name': 'Australia (Sydney) Azure'} +* {'region': 'ap21', 'name': 'Singapore'} * {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} +* {'region': 'ca10', 'name': 'Canada (Montreal)'} +* {'region': 'ch20', 'name': 'cf-ch20'} * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} * {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} * {'region': 'eu20', 'name': 'Europe (Netherlands)'} +* {'region': 'eu30', 'name': 'Europe (Frankfurt)'} +* {'region': 'in30', 'name': 'India (Mumbai)'} +* {'region': 'jp10', 'name': 'Japan (Tokyo)'} +* {'region': 'jp20', 'name': 'Japan (Tokyo)'} * {'region': 'us10', 'name': 'US East (VA)'} * {'region': 'us20', 'name': 'US West (WA)'} * {'region': 'us21', 'name': 'US East (VA)'} diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-13-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-13-then-properties-plan.md index 916e7975..248cb3df 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-13-then-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-13-then-properties-plan.md @@ -6,6 +6,6 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :---------- | :---------- | -| `"default"` | | +| Value | Explanation | +| :----------- | :---------- | +| `"standard"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-13-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-13-then.md index ad4543db..09e8b4e0 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-13-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-13-then.md @@ -35,13 +35,13 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :---------- | :---------- | -| `"default"` | | +| Value | Explanation | +| :----------- | :---------- | +| `"standard"` | | ## name -SAP Data Privacy Integration: SAP Data Privacy Integration service supports applications realize their data privacy functions i.e Business Purpose Management ( Ensure Data is processed in a compliant manner based on valid Business Purpose ), Data Deletion and Retrieval of personal data. Applications that are part of an end to end business process can integrate with DPI to provide a centralized management of data privacy. +SAP Custom Domain service: The SAP Business Technology Platform Custom Domain service lets you configure your own custom domain to expose publicly your SAP Business Technology Platform application instead of using the default subdomain. `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-14-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-14-if-properties-name.md index 7f6cd37f..ad623d65 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-14-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-14-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"document-information-extraction-application" +"data-privacy-integration-application" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-14-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-14-if.md index 7be64c87..d43e4720 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-14-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-14-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"document-information-extraction-application" +"data-privacy-integration-application" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-14-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-14-then-allof-0-then.md index 62e1ba38..d8f057e3 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-14-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-14-then-allof-0-then.md @@ -10,13 +10,18 @@ unknown ## plan -application plan >default< for >document-information-extraction-application< is available in data centers: +application plan >default< for >data-privacy-integration-application< is available in data centers: * {'region': 'ap10', 'name': 'Australia (Sydney)'} +* {'region': 'ap11', 'name': 'Singapore'} +* {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} * {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} -* {'region': 'jp10', 'name': 'Japan (Tokyo)'} +* {'region': 'eu20', 'name': 'Europe (Netherlands)'} * {'region': 'us10', 'name': 'US East (VA)'} +* {'region': 'us20', 'name': 'US West (WA)'} +* {'region': 'us21', 'name': 'US East (VA)'} +* {'region': 'us30', 'name': 'US Central (IA)'} `plan` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-14-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-14-then.md index 1cc5893c..03e5c8d7 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-14-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-14-then.md @@ -41,7 +41,7 @@ unknown ## name -Document Information Extraction UI: Document Information Extraction helps you to process various documents that have content in headers and tables. You can use the extracted information, for example, to automatically process payables, invoices, or payment notes while making sure that invoices and payables match. +SAP Data Privacy Integration: SAP Data Privacy Integration service supports applications realize their data privacy functions i.e Business Purpose Management ( Ensure Data is processed in a compliant manner based on valid Business Purpose ), Data Deletion and Retrieval of personal data. Applications that are part of an end to end business process can integrate with DPI to provide a centralized management of data privacy. `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-15-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-15-if-properties-name.md index 42af1803..7f6cd37f 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-15-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-15-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"dqmmicroui" +"document-information-extraction-application" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-15-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-15-if.md index 1fb94132..2cc2a89a 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-15-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-15-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"dqmmicroui" +"document-information-extraction-application" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-15-then-allof-0-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-15-then-allof-0-if-properties-plan.md index 126392b1..4f94ce99 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-15-then-allof-0-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-15-then-allof-0-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"standard" +"default" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-15-then-allof-0-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-15-then-allof-0-if.md index 54416287..8d9cdad3 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-15-then-allof-0-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-15-then-allof-0-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"standard" +"default" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-15-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-15-then-allof-0-then.md index 21e67f5c..347a3ef5 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-15-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-15-then-allof-0-then.md @@ -10,9 +10,13 @@ unknown ## plan -application plan >standard< for >dqmmicroui< is available in data centers: +application plan >default< for >document-information-extraction-application< is available in data centers: +* {'region': 'ap10', 'name': 'Australia (Sydney)'} * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} +* {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} +* {'region': 'jp10', 'name': 'Japan (Tokyo)'} +* {'region': 'us10', 'name': 'US East (VA)'} `plan` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-15-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-15-then-properties-plan.md index 248cb3df..916e7975 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-15-then-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-15-then-properties-plan.md @@ -6,6 +6,6 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :----------- | :---------- | -| `"standard"` | | +| Value | Explanation | +| :---------- | :---------- | +| `"default"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-15-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-15-then.md index b8243dca..3acf7bbd 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-15-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-15-then.md @@ -35,13 +35,13 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :----------- | :---------- | -| `"standard"` | | +| Value | Explanation | +| :---------- | :---------- | +| `"default"` | | ## name -Data Quality Services UI: Manage settings and field mappings using configurations. View number of transactions performed over a spefici time period. +Document Information Extraction UI: Document Information Extraction helps you to process various documents that have content in headers and tables. You can use the extracted information, for example, to automatically process payables, invoices, or payment notes while making sure that invoices and payables match. `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-16-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-16-if-properties-name.md index 3caaa894..42af1803 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-16-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-16-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"eadesigner" +"dqmmicroui" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-16-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-16-if.md index 41541863..f6434aba 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-16-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-16-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"eadesigner" +"dqmmicroui" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-16-then-allof-0-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-16-then-allof-0-if-properties-plan.md index 9ccd82c0..126392b1 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-16-then-allof-0-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-16-then-allof-0-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"eadesigner" +"standard" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-16-then-allof-0-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-16-then-allof-0-if.md index 924d1a93..e0c5ee53 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-16-then-allof-0-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-16-then-allof-0-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"eadesigner" +"standard" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-16-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-16-then-allof-0-then.md index 8f60197c..9d707f3f 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-16-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-16-then-allof-0-then.md @@ -10,7 +10,7 @@ unknown ## plan -application plan >eadesigner< for >eadesigner< is available in data centers: +application plan >standard< for >dqmmicroui< is available in data centers: * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-16-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-16-then-properties-plan.md index bd5ae7ec..248cb3df 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-16-then-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-16-then-properties-plan.md @@ -6,6 +6,6 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :------------- | :---------- | -| `"eadesigner"` | | +| Value | Explanation | +| :----------- | :---------- | +| `"standard"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-16-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-16-then.md index 07cc29a9..eee02184 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-16-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-16-then.md @@ -35,13 +35,13 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :------------- | :---------- | -| `"eadesigner"` | | +| Value | Explanation | +| :----------- | :---------- | +| `"standard"` | | ## name -SAP Enterprise Architecture Designer, cloud edition: The cloud edition of SAP Enterprise Architecture Designer (SAP EA Designer) lets you capture, analyze, and present your organization's landscapes, strategies, requirements, processes, data, and other artifacts in a shared environment. Using industry-standard notations and techniques, organizations can leverage rich metadata and use models and diagrams to drive understanding and promote shared outcomes in creating innovative systems, information sets, and processes to support goals and capabilities. +Data Quality Services UI: Manage settings and field mappings using configurations. View number of transactions performed over a spefici time period. `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-17-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-17-if-properties-name.md index 1c441ae4..3caaa894 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-17-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-17-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"edge-services" +"eadesigner" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-17-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-17-if.md index 76cc8a1a..435e2bbb 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-17-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-17-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"edge-services" +"eadesigner" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-17-then-allof-0-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-17-then-allof-0-if-properties-plan.md index ce79843e..9ccd82c0 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-17-then-allof-0-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-17-then-allof-0-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"Enterprise" +"eadesigner" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-17-then-allof-0-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-17-then-allof-0-if.md index 89c801d8..2fa461b4 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-17-then-allof-0-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-17-then-allof-0-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"Enterprise" +"eadesigner" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-17-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-17-then-allof-0-then.md index 671d5d4e..2ce6e776 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-17-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-17-then-allof-0-then.md @@ -10,7 +10,7 @@ unknown ## plan -application plan >Enterprise< for >edge-services< is available in data centers: +application plan >eadesigner< for >eadesigner< is available in data centers: * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-17-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-17-then-properties-plan.md index a4e3953f..bd5ae7ec 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-17-then-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-17-then-properties-plan.md @@ -8,5 +8,4 @@ unknown | Value | Explanation | | :------------- | :---------- | -| `"Enterprise"` | | -| `"Standard"` | | +| `"eadesigner"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-17-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-17-then.md index 6c97062d..1fd8d044 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-17-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-17-then.md @@ -6,8 +6,6 @@ all of * [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-17-then-allof-0.md "check type definition") -* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-17-then-allof-1.md "check type definition") - # then Properties | Property | Type | Required | Nullable | Defined by | @@ -39,12 +37,11 @@ unknown | Value | Explanation | | :------------- | :---------- | -| `"Enterprise"` | | -| `"Standard"` | | +| `"eadesigner"` | | ## name -SAP Edge Services: SAP Edge Services +SAP Enterprise Architecture Designer, cloud edition: The cloud edition of SAP Enterprise Architecture Designer (SAP EA Designer) lets you capture, analyze, and present your organization's landscapes, strategies, requirements, processes, data, and other artifacts in a shared environment. Using industry-standard notations and techniques, organizations can leverage rich metadata and use models and diagrams to drive understanding and promote shared outcomes in creating innovative systems, information sets, and processes to support goals and capabilities. `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-18-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-18-if-properties-name.md index 0b67af33..1c441ae4 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-18-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-18-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"enterprise-messaging-hub" +"edge-services" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-18-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-18-if.md index e62be6bc..8b4ec3f7 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-18-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-18-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"enterprise-messaging-hub" +"edge-services" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-18-then-allof-0-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-18-then-allof-0-if-properties-plan.md index 126392b1..ce79843e 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-18-then-allof-0-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-18-then-allof-0-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"standard" +"Enterprise" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-18-then-allof-0-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-18-then-allof-0-if.md index f793237b..90e4e371 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-18-then-allof-0-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-18-then-allof-0-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"standard" +"Enterprise" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-18-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-18-then-allof-0-then.md index 75f57c2a..8a9eaf9b 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-18-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-18-then-allof-0-then.md @@ -10,27 +10,9 @@ unknown ## plan -application plan >standard< for >enterprise-messaging-hub< is available in data centers: - -* {'region': 'ap10', 'name': 'Australia (Sydney)'} -* {'region': 'ap11', 'name': 'Singapore'} -* {'region': 'ap12', 'name': 'South Korea (Seoul)'} -* {'region': 'ap20', 'name': 'Australia (Sydney) Azure'} -* {'region': 'ap21', 'name': 'Singapore'} -* {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} -* {'region': 'ca10', 'name': 'Canada (Montreal)'} -* {'region': 'ch20', 'name': 'cf-ch20'} +application plan >Enterprise< for >edge-services< is available in data centers: + * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} -* {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} -* {'region': 'eu20', 'name': 'Europe (Netherlands)'} -* {'region': 'eu30', 'name': 'Europe (Frankfurt)'} -* {'region': 'in30', 'name': 'India (Mumbai)'} -* {'region': 'jp10', 'name': 'Japan (Tokyo)'} -* {'region': 'jp20', 'name': 'Japan (Tokyo)'} -* {'region': 'us10', 'name': 'US East (VA)'} -* {'region': 'us20', 'name': 'US West (WA)'} -* {'region': 'us21', 'name': 'US East (VA)'} -* {'region': 'us30', 'name': 'US Central (IA)'} `plan` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-17-then-allof-1-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-18-then-allof-1-if-properties-plan.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-17-then-allof-1-if-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-18-then-allof-1-if-properties-plan.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-24-then-allof-1-if-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-18-then-allof-1-if-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-24-then-allof-1-if-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-18-then-allof-1-if-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-17-then-allof-1-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-18-then-allof-1-if.md similarity index 83% rename from docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-17-then-allof-1-if.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-18-then-allof-1-if.md index cee44f09..f34750fd 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-17-then-allof-1-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-18-then-allof-1-if.md @@ -6,7 +6,7 @@ unknown | Property | Type | Required | Nullable | Defined by | | :------------ | :------------ | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-17-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/2/then/allOf/17/then/allOf/1/if/properties/plan") | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-18-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/2/then/allOf/18/then/allOf/1/if/properties/plan") | ## plan @@ -20,7 +20,7 @@ unknown * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-17-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/2/then/allOf/17/then/allOf/1/if/properties/plan") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-18-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/2/then/allOf/18/then/allOf/1/if/properties/plan") ### plan Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-17-then-allof-1-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-18-then-allof-1-then-properties-plan.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-17-then-allof-1-then-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-18-then-allof-1-then-properties-plan.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-24-then-allof-1-then-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-18-then-allof-1-then-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-24-then-allof-1-then-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-18-then-allof-1-then-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-17-then-allof-1-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-18-then-allof-1-then.md similarity index 83% rename from docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-17-then-allof-1-then.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-18-then-allof-1-then.md index dc5f23f8..cc5c5b51 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-17-then-allof-1-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-18-then-allof-1-then.md @@ -6,7 +6,7 @@ unknown | Property | Type | Required | Nullable | Defined by | | :------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-17-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/2/then/allOf/17/then/allOf/1/then/properties/plan") | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-18-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/2/then/allOf/18/then/allOf/1/then/properties/plan") | ## plan @@ -22,7 +22,7 @@ application plan >Standard< for >edge-services< is available in data centers: * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-17-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/2/then/allOf/17/then/allOf/1/then/properties/plan") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-18-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/2/then/allOf/18/then/allOf/1/then/properties/plan") ### plan Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-10-then-allof-1.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-18-then-allof-1.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-10-then-allof-1.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-18-then-allof-1.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-18-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-18-then-properties-plan.md index 248cb3df..a4e3953f 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-18-then-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-18-then-properties-plan.md @@ -6,6 +6,7 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :----------- | :---------- | -| `"standard"` | | +| Value | Explanation | +| :------------- | :---------- | +| `"Enterprise"` | | +| `"Standard"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-18-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-18-then.md index 8be27a2b..7cd49c1f 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-18-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-18-then.md @@ -6,6 +6,8 @@ all of * [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-18-then-allof-0.md "check type definition") +* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-18-then-allof-1.md "check type definition") + # then Properties | Property | Type | Required | Nullable | Defined by | @@ -35,13 +37,14 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :----------- | :---------- | -| `"standard"` | | +| Value | Explanation | +| :------------- | :---------- | +| `"Enterprise"` | | +| `"Standard"` | | ## name -SAP Event Mesh: The SAP Event Mesh service decouples communication and allows for event-driven business processes. +SAP Edge Services: SAP Edge Services `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-19-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-19-if-properties-name.md index 22968a73..0b67af33 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-19-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-19-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"event-mesh-sap2sap" +"enterprise-messaging-hub" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-19-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-19-if.md index c44e2a95..009b823e 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-19-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-19-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"event-mesh-sap2sap" +"enterprise-messaging-hub" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-19-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-19-then-allof-0-then.md index 32dd4154..8f759c41 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-19-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-19-then-allof-0-then.md @@ -10,12 +10,27 @@ unknown ## plan -application plan >standard< for >event-mesh-sap2sap< is available in data centers: - +application plan >standard< for >enterprise-messaging-hub< is available in data centers: + +* {'region': 'ap10', 'name': 'Australia (Sydney)'} +* {'region': 'ap11', 'name': 'Singapore'} +* {'region': 'ap12', 'name': 'South Korea (Seoul)'} +* {'region': 'ap20', 'name': 'Australia (Sydney) Azure'} +* {'region': 'ap21', 'name': 'Singapore'} +* {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} +* {'region': 'ca10', 'name': 'Canada (Montreal)'} +* {'region': 'ch20', 'name': 'cf-ch20'} * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} * {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} * {'region': 'eu20', 'name': 'Europe (Netherlands)'} +* {'region': 'eu30', 'name': 'Europe (Frankfurt)'} +* {'region': 'in30', 'name': 'India (Mumbai)'} +* {'region': 'jp10', 'name': 'Japan (Tokyo)'} +* {'region': 'jp20', 'name': 'Japan (Tokyo)'} * {'region': 'us10', 'name': 'US East (VA)'} +* {'region': 'us20', 'name': 'US West (WA)'} +* {'region': 'us21', 'name': 'US East (VA)'} +* {'region': 'us30', 'name': 'US Central (IA)'} `plan` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-19-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-19-then.md index bd2adb35..b48bc352 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-19-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-19-then.md @@ -41,7 +41,7 @@ unknown ## name -SAP Event Broker for SAP cloud applications: This service supports SAP's strategic event-driven architecture initiative to create a well-defined, easily consumable and extensible ecosystem for exchanging SAP business events between SAP cloud applications, including those built on SAP BTP (SAP, customers and partners). +SAP Event Mesh: The SAP Event Mesh service decouples communication and allows for event-driven business processes. `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-20-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-20-if-properties-name.md index 0de51c93..22968a73 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-20-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-20-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"extension-center" +"event-mesh-sap2sap" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-20-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-20-if.md index 0758ebe6..3ecf8fd0 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-20-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-20-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"extension-center" +"event-mesh-sap2sap" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-20-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-20-then-allof-0-then.md index b61695c2..9a88a1e4 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-20-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-20-then-allof-0-then.md @@ -10,21 +10,12 @@ unknown ## plan -application plan >standard< for >extension-center< is available in data centers: - -* {'region': 'ap10', 'name': 'Australia (Sydney)'} -* {'region': 'ap11', 'name': 'Singapore'} -* {'region': 'ap12', 'name': 'South Korea (Seoul)'} -* {'region': 'ap21', 'name': 'Singapore'} -* {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} -* {'region': 'ca10', 'name': 'Canada (Montreal)'} +application plan >standard< for >event-mesh-sap2sap< is available in data centers: + * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} +* {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} * {'region': 'eu20', 'name': 'Europe (Netherlands)'} -* {'region': 'jp10', 'name': 'Japan (Tokyo)'} -* {'region': 'jp20', 'name': 'Japan (Tokyo)'} * {'region': 'us10', 'name': 'US East (VA)'} -* {'region': 'us20', 'name': 'US West (WA)'} -* {'region': 'us21', 'name': 'US East (VA)'} `plan` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-20-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-20-then.md index 8d4b30b7..34d75c7c 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-20-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-20-then.md @@ -41,7 +41,7 @@ unknown ## name -Extension Center: Allows you to create, manage, configure extensions on SAP Business Technology Platform +SAP Event Broker for SAP cloud applications: This service supports SAP's strategic event-driven architecture initiative to create a well-defined, easily consumable and extensible ecosystem for exchanging SAP business events between SAP cloud applications, including those built on SAP BTP (SAP, customers and partners). `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-21-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-21-if-properties-name.md index 0dd11b39..0de51c93 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-21-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-21-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"feature-flags-dashboard" +"extension-center" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-21-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-21-if.md index 8d8b71ed..94100f09 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-21-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-21-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"feature-flags-dashboard" +"extension-center" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-21-then-allof-0-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-21-then-allof-0-if-properties-plan.md index 4e48959a..126392b1 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-21-then-allof-0-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-21-then-allof-0-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"dashboard" +"standard" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-21-then-allof-0-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-21-then-allof-0-if.md index b48d8cbb..8e6c2994 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-21-then-allof-0-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-21-then-allof-0-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"dashboard" +"standard" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-21-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-21-then-allof-0-then.md index 4f6ac531..3a3b881b 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-21-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-21-then-allof-0-then.md @@ -10,27 +10,21 @@ unknown ## plan -application plan >dashboard< for >feature-flags-dashboard< is available in data centers: +application plan >standard< for >extension-center< is available in data centers: * {'region': 'ap10', 'name': 'Australia (Sydney)'} * {'region': 'ap11', 'name': 'Singapore'} * {'region': 'ap12', 'name': 'South Korea (Seoul)'} -* {'region': 'ap20', 'name': 'Australia (Sydney) Azure'} * {'region': 'ap21', 'name': 'Singapore'} * {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} * {'region': 'ca10', 'name': 'Canada (Montreal)'} -* {'region': 'ch20', 'name': 'cf-ch20'} * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} -* {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} * {'region': 'eu20', 'name': 'Europe (Netherlands)'} -* {'region': 'eu30', 'name': 'Europe (Frankfurt)'} -* {'region': 'in30', 'name': 'India (Mumbai)'} * {'region': 'jp10', 'name': 'Japan (Tokyo)'} * {'region': 'jp20', 'name': 'Japan (Tokyo)'} * {'region': 'us10', 'name': 'US East (VA)'} * {'region': 'us20', 'name': 'US West (WA)'} * {'region': 'us21', 'name': 'US East (VA)'} -* {'region': 'us30', 'name': 'US Central (IA)'} `plan` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-21-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-21-then-properties-plan.md index ec3fed23..248cb3df 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-21-then-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-21-then-properties-plan.md @@ -6,6 +6,6 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :------------ | :---------- | -| `"dashboard"` | | +| Value | Explanation | +| :----------- | :---------- | +| `"standard"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-21-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-21-then.md index 5e011324..4f9e4126 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-21-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-21-then.md @@ -35,13 +35,13 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :------------ | :---------- | -| `"dashboard"` | | +| Value | Explanation | +| :----------- | :---------- | +| `"standard"` | | ## name -SAP Feature Flags service: The Feature Flags service allows you to enable or disable new features at runtime without redeploying or restarting the application. You can use feature flags to control code delivery, synchronized rollout, direct shipment, and fast rollback of features. +Extension Center: Allows you to create, manage, configure extensions on SAP Business Technology Platform `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-22-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-22-if-properties-name.md index 227c9198..0dd11b39 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-22-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-22-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"hana-cloud-tools" +"feature-flags-dashboard" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-22-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-22-if.md index 029e3665..9d959813 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-22-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-22-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"hana-cloud-tools" +"feature-flags-dashboard" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-22-then-allof-0-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-22-then-allof-0-if-properties-plan.md index 12c8f71e..4e48959a 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-22-then-allof-0-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-22-then-allof-0-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"tools" +"dashboard" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-22-then-allof-0-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-22-then-allof-0-if.md index 7cd1c532..e42be6a6 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-22-then-allof-0-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-22-then-allof-0-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"tools" +"dashboard" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-22-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-22-then-allof-0-then.md index c60cb17c..33dbab3e 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-22-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-22-then-allof-0-then.md @@ -10,7 +10,7 @@ unknown ## plan -application plan >tools< for >hana-cloud-tools< is available in data centers: +application plan >dashboard< for >feature-flags-dashboard< is available in data centers: * {'region': 'ap10', 'name': 'Australia (Sydney)'} * {'region': 'ap11', 'name': 'Singapore'} diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-22-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-22-then-properties-plan.md index 741571a8..ec3fed23 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-22-then-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-22-then-properties-plan.md @@ -6,6 +6,6 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :-------- | :---------- | -| `"tools"` | | +| Value | Explanation | +| :------------ | :---------- | +| `"dashboard"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-22-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-22-then.md index 18c24809..5e281030 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-22-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-22-then.md @@ -35,13 +35,13 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :-------- | :---------- | -| `"tools"` | | +| Value | Explanation | +| :------------ | :---------- | +| `"dashboard"` | | ## name -SAP HANA Cloud: SAP HANA Cloud provides a single place to access, store, and process all enterprise data in real time. It is a cloud-native platform that reduces the complexity of multi-cloud or hybrid system landscapes. SAP HANA Cloud provides all of the advanced SAP HANA technologies for multi-model data processing in-memory or on disk. You can benefit from cloud qualities such as automatic software updates, elasticity, and low total cost of ownership by using SAP HANA Cloud either as a stand-alone solution or as an extension to your existing on-premise environment. +SAP Feature Flags service: The Feature Flags service allows you to enable or disable new features at runtime without redeploying or restarting the application. You can use feature flags to control code delivery, synchronized rollout, direct shipment, and fast rollback of features. `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-23-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-23-if-properties-name.md index 68e983e9..227c9198 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-23-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-23-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"integration-suite-advanced-event-mesh" +"hana-cloud-tools" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-23-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-23-if.md index 2234f647..4fd4d092 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-23-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-23-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"integration-suite-advanced-event-mesh" +"hana-cloud-tools" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-23-then-allof-0-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-23-then-allof-0-if-properties-plan.md index 4f94ce99..12c8f71e 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-23-then-allof-0-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-23-then-allof-0-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"default" +"tools" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-23-then-allof-0-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-23-then-allof-0-if.md index ff40281c..c83b8454 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-23-then-allof-0-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-23-then-allof-0-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"default" +"tools" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-23-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-23-then-allof-0-then.md index 0dd1ac24..d992eca6 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-23-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-23-then-allof-0-then.md @@ -4,17 +4,33 @@ unknown # then Properties -| Property | Type | Required | Nullable | Defined by | -| :------------------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-23-then-allof-0-then-properties-plan.md "undefined#/properties/services/items/allOf/2/then/allOf/23/then/allOf/0/then/properties/plan") | -| [parameters](#parameters) | `object` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-23-then-allof-0-then-properties-parameters.md "undefined#/properties/services/items/allOf/2/then/allOf/23/then/allOf/0/then/properties/parameters") | +| Property | Type | Required | Nullable | Defined by | +| :------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-23-then-allof-0-then-properties-plan.md "undefined#/properties/services/items/allOf/2/then/allOf/23/then/allOf/0/then/properties/plan") | ## plan -application plan >default< for >integration-suite-advanced-event-mesh< is available in data centers: +application plan >tools< for >hana-cloud-tools< is available in data centers: +* {'region': 'ap10', 'name': 'Australia (Sydney)'} +* {'region': 'ap11', 'name': 'Singapore'} +* {'region': 'ap12', 'name': 'South Korea (Seoul)'} +* {'region': 'ap20', 'name': 'Australia (Sydney) Azure'} +* {'region': 'ap21', 'name': 'Singapore'} +* {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} +* {'region': 'ca10', 'name': 'Canada (Montreal)'} +* {'region': 'ch20', 'name': 'cf-ch20'} * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} +* {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} +* {'region': 'eu20', 'name': 'Europe (Netherlands)'} +* {'region': 'eu30', 'name': 'Europe (Frankfurt)'} +* {'region': 'in30', 'name': 'India (Mumbai)'} +* {'region': 'jp10', 'name': 'Japan (Tokyo)'} +* {'region': 'jp20', 'name': 'Japan (Tokyo)'} +* {'region': 'us10', 'name': 'US East (VA)'} * {'region': 'us20', 'name': 'US West (WA)'} +* {'region': 'us21', 'name': 'US East (VA)'} +* {'region': 'us30', 'name': 'US Central (IA)'} `plan` @@ -29,21 +45,3 @@ application plan >default< for >integration-suite-advanced-event-mesh< is availa ### plan Type unknown - -## parameters - - - -`parameters` - -* is required - -* Type: `object` ([Details](btpsa-usecase-properties-services-items-allof-2-then-allof-23-then-allof-0-then-properties-parameters.md)) - -* cannot be null - -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-23-then-allof-0-then-properties-parameters.md "undefined#/properties/services/items/allOf/2/then/allOf/23/then/allOf/0/then/properties/parameters") - -### parameters Type - -`object` ([Details](btpsa-usecase-properties-services-items-allof-2-then-allof-23-then-allof-0-then-properties-parameters.md)) diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-23-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-23-then-properties-plan.md index 916e7975..741571a8 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-23-then-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-23-then-properties-plan.md @@ -6,6 +6,6 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :---------- | :---------- | -| `"default"` | | +| Value | Explanation | +| :-------- | :---------- | +| `"tools"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-23-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-23-then.md index 49af1f5b..c27f2520 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-23-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-23-then.md @@ -35,13 +35,13 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :---------- | :---------- | -| `"default"` | | +| Value | Explanation | +| :-------- | :---------- | +| `"tools"` | | ## name -SAP Integration Suite, advanced event mesh: Advanced event mesh for SAP Integration Suite is a complete event streaming, event management, and monitoring platform that incorporates best practices, expertise, and technology for event-driven architecture (EDA) on a single platform. +SAP HANA Cloud: SAP HANA Cloud provides a single place to access, store, and process all enterprise data in real time. It is a cloud-native platform that reduces the complexity of multi-cloud or hybrid system landscapes. SAP HANA Cloud provides all of the advanced SAP HANA technologies for multi-model data processing in-memory or on disk. You can benefit from cloud qualities such as automatic software updates, elasticity, and low total cost of ownership by using SAP HANA Cloud either as a stand-alone solution or as an extension to your existing on-premise environment. `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-24-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-24-if-properties-name.md index 75b9563e..68e983e9 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-24-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-24-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"integrationsuite" +"integration-suite-advanced-event-mesh" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-24-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-24-if.md index fc68b934..1ac84cb5 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-24-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-24-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"integrationsuite" +"integration-suite-advanced-event-mesh" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-24-then-allof-0-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-24-then-allof-0-if-properties-plan.md index d69b51b3..4f94ce99 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-24-then-allof-0-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-24-then-allof-0-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"enterprise_agreement" +"default" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-24-then-allof-0-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-24-then-allof-0-if.md index 87c948ac..63dc0e51 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-24-then-allof-0-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-24-then-allof-0-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"enterprise_agreement" +"default" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-23-then-allof-0-then-properties-parameters-properties-admin-user-email.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-24-then-allof-0-then-properties-parameters-properties-admin-user-email.md similarity index 79% rename from docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-23-then-allof-0-then-properties-parameters-properties-admin-user-email.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-24-then-allof-0-then-properties-parameters-properties-admin-user-email.md index 6ca71bed..343cfb55 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-23-then-allof-0-then-properties-parameters-properties-admin-user-email.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-24-then-allof-0-then-properties-parameters-properties-admin-user-email.md @@ -1,6 +1,6 @@ ## admin\_user\_email Type -`string` ([Admin User Email](btpsa-usecase-properties-services-items-allof-2-then-allof-23-then-allof-0-then-properties-parameters-properties-admin-user-email.md)) +`string` ([Admin User Email](btpsa-usecase-properties-services-items-allof-2-then-allof-24-then-allof-0-then-properties-parameters-properties-admin-user-email.md)) ## admin\_user\_email Constraints diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-23-then-allof-0-then-properties-parameters.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-24-then-allof-0-then-properties-parameters.md similarity index 81% rename from docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-23-then-allof-0-then-properties-parameters.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-24-then-allof-0-then-properties-parameters.md index 7ab90b92..4bc1c4f8 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-23-then-allof-0-then-properties-parameters.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-24-then-allof-0-then-properties-parameters.md @@ -1,12 +1,12 @@ ## parameters Type -`object` ([Details](btpsa-usecase-properties-services-items-allof-2-then-allof-23-then-allof-0-then-properties-parameters.md)) +`object` ([Details](btpsa-usecase-properties-services-items-allof-2-then-allof-24-then-allof-0-then-properties-parameters.md)) # parameters Properties | Property | Type | Required | Nullable | Defined by | | :-------------------------------------- | :------- | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| [admin\_user\_email](#admin_user_email) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-23-then-allof-0-then-properties-parameters-properties-admin-user-email.md "undefined#/properties/services/items/allOf/2/then/allOf/23/then/allOf/0/then/properties/parameters/properties/admin_user_email") | +| [admin\_user\_email](#admin_user_email) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-24-then-allof-0-then-properties-parameters-properties-admin-user-email.md "undefined#/properties/services/items/allOf/2/then/allOf/24/then/allOf/0/then/properties/parameters/properties/admin_user_email") | ## admin\_user\_email @@ -16,15 +16,15 @@ Provide an email that belongs to a user who is onboarded on IAS. This user gets * is optional -* Type: `string` ([Admin User Email](btpsa-usecase-properties-services-items-allof-2-then-allof-23-then-allof-0-then-properties-parameters-properties-admin-user-email.md)) +* Type: `string` ([Admin User Email](btpsa-usecase-properties-services-items-allof-2-then-allof-24-then-allof-0-then-properties-parameters-properties-admin-user-email.md)) * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-23-then-allof-0-then-properties-parameters-properties-admin-user-email.md "undefined#/properties/services/items/allOf/2/then/allOf/23/then/allOf/0/then/properties/parameters/properties/admin_user_email") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-24-then-allof-0-then-properties-parameters-properties-admin-user-email.md "undefined#/properties/services/items/allOf/2/then/allOf/24/then/allOf/0/then/properties/parameters/properties/admin_user_email") ### admin\_user\_email Type -`string` ([Admin User Email](btpsa-usecase-properties-services-items-allof-2-then-allof-23-then-allof-0-then-properties-parameters-properties-admin-user-email.md)) +`string` ([Admin User Email](btpsa-usecase-properties-services-items-allof-2-then-allof-24-then-allof-0-then-properties-parameters-properties-admin-user-email.md)) ### admin\_user\_email Constraints diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-24-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-24-then-allof-0-then.md index 6ba8911a..56f0e0d5 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-24-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-24-then-allof-0-then.md @@ -4,33 +4,18 @@ unknown # then Properties -| Property | Type | Required | Nullable | Defined by | -| :------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-24-then-allof-0-then-properties-plan.md "undefined#/properties/services/items/allOf/2/then/allOf/24/then/allOf/0/then/properties/plan") | +| Property | Type | Required | Nullable | Defined by | +| :------------------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-24-then-allof-0-then-properties-plan.md "undefined#/properties/services/items/allOf/2/then/allOf/24/then/allOf/0/then/properties/plan") | +| [parameters](#parameters) | `object` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-24-then-allof-0-then-properties-parameters.md "undefined#/properties/services/items/allOf/2/then/allOf/24/then/allOf/0/then/properties/parameters") | ## plan -application plan >enterprise\_agreement< for >integrationsuite< is available in data centers: +application plan >default< for >integration-suite-advanced-event-mesh< is available in data centers: -* {'region': 'ap10', 'name': 'Australia (Sydney)'} -* {'region': 'ap11', 'name': 'Singapore'} -* {'region': 'ap12', 'name': 'South Korea (Seoul)'} -* {'region': 'ap20', 'name': 'Australia (Sydney) Azure'} -* {'region': 'ap21', 'name': 'Singapore'} -* {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} -* {'region': 'ca10', 'name': 'Canada (Montreal)'} -* {'region': 'ch20', 'name': 'cf-ch20'} * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} -* {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} -* {'region': 'eu20', 'name': 'Europe (Netherlands)'} -* {'region': 'eu30', 'name': 'Europe (Frankfurt)'} * {'region': 'in30', 'name': 'India (Mumbai)'} -* {'region': 'jp10', 'name': 'Japan (Tokyo)'} -* {'region': 'jp20', 'name': 'Japan (Tokyo)'} -* {'region': 'us10', 'name': 'US East (VA)'} * {'region': 'us20', 'name': 'US West (WA)'} -* {'region': 'us21', 'name': 'US East (VA)'} -* {'region': 'us30', 'name': 'US Central (IA)'} `plan` @@ -45,3 +30,21 @@ application plan >enterprise\_agreement< for >integrationsuite< is available in ### plan Type unknown + +## parameters + + + +`parameters` + +* is required + +* Type: `object` ([Details](btpsa-usecase-properties-services-items-allof-2-then-allof-24-then-allof-0-then-properties-parameters.md)) + +* cannot be null + +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-24-then-allof-0-then-properties-parameters.md "undefined#/properties/services/items/allOf/2/then/allOf/24/then/allOf/0/then/properties/parameters") + +### parameters Type + +`object` ([Details](btpsa-usecase-properties-services-items-allof-2-then-allof-24-then-allof-0-then-properties-parameters.md)) diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-24-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-24-then-properties-plan.md index 2c52496a..916e7975 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-24-then-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-24-then-properties-plan.md @@ -6,7 +6,6 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :----------------------- | :---------- | -| `"enterprise_agreement"` | | -| `"free"` | | +| Value | Explanation | +| :---------- | :---------- | +| `"default"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-24-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-24-then.md index 26cedd42..eecb7661 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-24-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-24-then.md @@ -6,8 +6,6 @@ all of * [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-24-then-allof-0.md "check type definition") -* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-24-then-allof-1.md "check type definition") - # then Properties | Property | Type | Required | Nullable | Defined by | @@ -37,14 +35,13 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :----------------------- | :---------- | -| `"enterprise_agreement"` | | -| `"free"` | | +| Value | Explanation | +| :---------- | :---------- | +| `"default"` | | ## name -SAP Integration Suite: The SAP Integration Suite helps you to quickly develop and manage reliable communication between applications, services, and systems across heterogeneous landscapes. +SAP Integration Suite, advanced event mesh: Advanced event mesh for SAP Integration Suite is a complete event streaming, event management, and monitoring platform that incorporates best practices, expertise, and technology for event-driven architecture (EDA) on a single platform. `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-25-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-25-if-properties-name.md index f600cdda..75b9563e 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-25-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-25-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"intelligent-situation-automation-app" +"integrationsuite" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-25-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-25-if.md index 10229bb3..cdfbf32d 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-25-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-25-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"intelligent-situation-automation-app" +"integrationsuite" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-25-then-allof-0-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-25-then-allof-0-if-properties-plan.md index 538fc6a8..d69b51b3 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-25-then-allof-0-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-25-then-allof-0-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"beta" +"enterprise_agreement" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-25-then-allof-0-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-25-then-allof-0-if.md index 3a58db38..800627d1 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-25-then-allof-0-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-25-then-allof-0-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"beta" +"enterprise_agreement" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-25-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-25-then-allof-0-then.md index d173493c..b69cba5a 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-25-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-25-then-allof-0-then.md @@ -10,9 +10,27 @@ unknown ## plan -application plan >beta< for >intelligent-situation-automation-app< is available in data centers: - +application plan >enterprise\_agreement< for >integrationsuite< is available in data centers: + +* {'region': 'ap10', 'name': 'Australia (Sydney)'} +* {'region': 'ap11', 'name': 'Singapore'} +* {'region': 'ap12', 'name': 'South Korea (Seoul)'} +* {'region': 'ap20', 'name': 'Australia (Sydney) Azure'} +* {'region': 'ap21', 'name': 'Singapore'} +* {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} +* {'region': 'ca10', 'name': 'Canada (Montreal)'} +* {'region': 'ch20', 'name': 'cf-ch20'} * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} +* {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} +* {'region': 'eu20', 'name': 'Europe (Netherlands)'} +* {'region': 'eu30', 'name': 'Europe (Frankfurt)'} +* {'region': 'in30', 'name': 'India (Mumbai)'} +* {'region': 'jp10', 'name': 'Japan (Tokyo)'} +* {'region': 'jp20', 'name': 'Japan (Tokyo)'} +* {'region': 'us10', 'name': 'US East (VA)'} +* {'region': 'us20', 'name': 'US West (WA)'} +* {'region': 'us21', 'name': 'US East (VA)'} +* {'region': 'us30', 'name': 'US Central (IA)'} `plan` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-25-then-allof-1-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-25-then-allof-1-then.md index 76000dec..d0c23b7f 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-25-then-allof-1-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-25-then-allof-1-then.md @@ -10,9 +10,27 @@ unknown ## plan -application plan >free< for >intelligent-situation-automation-app< is available in data centers: - +application plan >free< for >integrationsuite< is available in data centers: + +* {'region': 'ap10', 'name': 'Australia (Sydney)'} +* {'region': 'ap11', 'name': 'Singapore'} +* {'region': 'ap12', 'name': 'South Korea (Seoul)'} +* {'region': 'ap20', 'name': 'Australia (Sydney) Azure'} +* {'region': 'ap21', 'name': 'Singapore'} +* {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} +* {'region': 'ca10', 'name': 'Canada (Montreal)'} +* {'region': 'ch20', 'name': 'cf-ch20'} * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} +* {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} +* {'region': 'eu20', 'name': 'Europe (Netherlands)'} +* {'region': 'eu30', 'name': 'Europe (Frankfurt)'} +* {'region': 'in30', 'name': 'India (Mumbai)'} +* {'region': 'jp10', 'name': 'Japan (Tokyo)'} +* {'region': 'jp20', 'name': 'Japan (Tokyo)'} +* {'region': 'us10', 'name': 'US East (VA)'} +* {'region': 'us20', 'name': 'US West (WA)'} +* {'region': 'us21', 'name': 'US East (VA)'} +* {'region': 'us30', 'name': 'US Central (IA)'} `plan` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-25-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-25-then-properties-plan.md index a823c5c1..2c52496a 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-25-then-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-25-then-properties-plan.md @@ -6,8 +6,7 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :----------- | :---------- | -| `"beta"` | | -| `"free"` | | -| `"standard"` | | +| Value | Explanation | +| :----------------------- | :---------- | +| `"enterprise_agreement"` | | +| `"free"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-25-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-25-then.md index f818ace2..1decc923 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-25-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-25-then.md @@ -8,8 +8,6 @@ all of * [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-25-then-allof-1.md "check type definition") -* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-25-then-allof-2.md "check type definition") - # then Properties | Property | Type | Required | Nullable | Defined by | @@ -39,15 +37,14 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :----------- | :---------- | -| `"beta"` | | -| `"free"` | | -| `"standard"` | | +| Value | Explanation | +| :----------------------- | :---------- | +| `"enterprise_agreement"` | | +| `"free"` | | ## name -Intelligent Situation Automation: Intelligent Situation Automation is an extension of Situation Handling. It processes situations raised and resolves them automatically using business rules, thus reducing the time users spend on routine manual and repetitive tasks. +SAP Integration Suite: The SAP Integration Suite helps you to quickly develop and manage reliable communication between applications, services, and systems across heterogeneous landscapes. `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-26-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-26-if-properties-name.md index 81e4db8d..f600cdda 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-26-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-26-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"iotas" +"intelligent-situation-automation-app" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-26-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-26-if.md index ffee8e34..a0f5f853 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-26-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-26-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"iotas" +"intelligent-situation-automation-app" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-26-then-allof-0-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-26-then-allof-0-if-properties-plan.md index 9aa559f1..538fc6a8 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-26-then-allof-0-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-26-then-allof-0-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"oneproduct" +"beta" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-26-then-allof-0-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-26-then-allof-0-if.md index 5a0b5ee4..41cd9412 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-26-then-allof-0-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-26-then-allof-0-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"oneproduct" +"beta" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-26-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-26-then-allof-0-then.md index 0079a873..6ffc229e 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-26-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-26-then-allof-0-then.md @@ -10,12 +10,9 @@ unknown ## plan -application plan >oneproduct< for >iotas< is available in data centers: +application plan >beta< for >intelligent-situation-automation-app< is available in data centers: * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} -* {'region': 'eu20', 'name': 'Europe (Netherlands)'} -* {'region': 'us10', 'name': 'US East (VA)'} -* {'region': 'us20', 'name': 'US West (WA)'} `plan` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-26-then-allof-1-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-26-then-allof-1-if-properties-plan.md index 126392b1..c97f5143 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-26-then-allof-1-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-26-then-allof-1-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"standard" +"free" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-26-then-allof-1-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-26-then-allof-1-if.md index bc080505..b323c13d 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-26-then-allof-1-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-26-then-allof-1-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"standard" +"free" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-26-then-allof-1-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-26-then-allof-1-then.md index 01c6d846..b9c18d07 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-26-then-allof-1-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-26-then-allof-1-then.md @@ -10,10 +10,9 @@ unknown ## plan -application plan >standard< for >iotas< is available in data centers: +application plan >free< for >intelligent-situation-automation-app< is available in data centers: * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} -* {'region': 'us10', 'name': 'US East (VA)'} `plan` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-39-then-allof-1-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-26-then-allof-2-if-properties-plan.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-39-then-allof-1-if-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-26-then-allof-2-if-properties-plan.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-25-then-allof-2-if-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-26-then-allof-2-if-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-25-then-allof-2-if-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-26-then-allof-2-if-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-25-then-allof-2-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-26-then-allof-2-if.md similarity index 83% rename from docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-25-then-allof-2-if.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-26-then-allof-2-if.md index 7433bb74..65177d23 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-25-then-allof-2-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-26-then-allof-2-if.md @@ -6,7 +6,7 @@ unknown | Property | Type | Required | Nullable | Defined by | | :------------ | :------------ | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-25-then-allof-2-if-properties-plan.md "undefined#/properties/services/items/allOf/2/then/allOf/25/then/allOf/2/if/properties/plan") | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-26-then-allof-2-if-properties-plan.md "undefined#/properties/services/items/allOf/2/then/allOf/26/then/allOf/2/if/properties/plan") | ## plan @@ -20,7 +20,7 @@ unknown * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-25-then-allof-2-if-properties-plan.md "undefined#/properties/services/items/allOf/2/then/allOf/25/then/allOf/2/if/properties/plan") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-26-then-allof-2-if-properties-plan.md "undefined#/properties/services/items/allOf/2/then/allOf/26/then/allOf/2/if/properties/plan") ### plan Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-24-then-allof-1-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-26-then-allof-2-then-properties-plan.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-24-then-allof-1-then-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-26-then-allof-2-then-properties-plan.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-25-then-allof-2-then-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-26-then-allof-2-then-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-25-then-allof-2-then-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-26-then-allof-2-then-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-25-then-allof-2-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-26-then-allof-2-then.md similarity index 83% rename from docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-25-then-allof-2-then.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-26-then-allof-2-then.md index 390d01ac..c62cc66d 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-25-then-allof-2-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-26-then-allof-2-then.md @@ -6,7 +6,7 @@ unknown | Property | Type | Required | Nullable | Defined by | | :------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-25-then-allof-2-then-properties-plan.md "undefined#/properties/services/items/allOf/2/then/allOf/25/then/allOf/2/then/properties/plan") | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-26-then-allof-2-then-properties-plan.md "undefined#/properties/services/items/allOf/2/then/allOf/26/then/allOf/2/then/properties/plan") | ## plan @@ -22,7 +22,7 @@ application plan >standard< for >intelligent-situation-automation-app< is availa * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-25-then-allof-2-then-properties-plan.md "undefined#/properties/services/items/allOf/2/then/allOf/25/then/allOf/2/then/properties/plan") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-26-then-allof-2-then-properties-plan.md "undefined#/properties/services/items/allOf/2/then/allOf/26/then/allOf/2/then/properties/plan") ### plan Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-25-then-allof-2.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-26-then-allof-2.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-25-then-allof-2.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-26-then-allof-2.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-26-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-26-then-properties-plan.md index 3c39a79d..a823c5c1 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-26-then-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-26-then-properties-plan.md @@ -6,7 +6,8 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :------------- | :---------- | -| `"oneproduct"` | | -| `"standard"` | | +| Value | Explanation | +| :----------- | :---------- | +| `"beta"` | | +| `"free"` | | +| `"standard"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-26-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-26-then.md index 42eaf01e..ee48e9f1 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-26-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-26-then.md @@ -8,6 +8,8 @@ all of * [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-26-then-allof-1.md "check type definition") +* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-26-then-allof-2.md "check type definition") + # then Properties | Property | Type | Required | Nullable | Defined by | @@ -37,14 +39,15 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :------------- | :---------- | -| `"oneproduct"` | | -| `"standard"` | | +| Value | Explanation | +| :----------- | :---------- | +| `"beta"` | | +| `"free"` | | +| `"standard"` | | ## name -SAP IoT: SAP IoT business services allow you to put raw sensor data into business object context and then use query models, rules, events and actions to leverage the data near real-time in analytical or transactional business applications. +Intelligent Situation Automation: Intelligent Situation Automation is an extension of Situation Handling. It processes situations raised and resolves them automatically using business rules, thus reducing the time users spend on routine manual and repetitive tasks. `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-27-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-27-if-properties-name.md index a3a86dc4..81e4db8d 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-27-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-27-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"IRPA" +"iotas" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-27-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-27-if.md index 47020516..50fe989c 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-27-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-27-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"IRPA" +"iotas" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-27-then-allof-0-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-27-then-allof-0-if-properties-plan.md index ffe4aedd..9aa559f1 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-27-then-allof-0-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-27-then-allof-0-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"concurrent" +"oneproduct" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-27-then-allof-0-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-27-then-allof-0-if.md index df8fd96f..4d0b65e2 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-27-then-allof-0-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-27-then-allof-0-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"concurrent" +"oneproduct" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-27-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-27-then-allof-0-then.md index 7d44b7f6..c79600fc 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-27-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-27-then-allof-0-then.md @@ -10,12 +10,10 @@ unknown ## plan -application plan >concurrent< for >IRPA< is available in data centers: +application plan >oneproduct< for >iotas< is available in data centers: -* {'region': 'ap10', 'name': 'Australia (Sydney)'} * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} -* {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} -* {'region': 'jp10', 'name': 'Japan (Tokyo)'} +* {'region': 'eu20', 'name': 'Europe (Netherlands)'} * {'region': 'us10', 'name': 'US East (VA)'} * {'region': 'us20', 'name': 'US West (WA)'} diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-27-then-allof-1-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-27-then-allof-1-if-properties-plan.md index 4f94ce99..126392b1 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-27-then-allof-1-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-27-then-allof-1-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"default" +"standard" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-27-then-allof-1-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-27-then-allof-1-if.md index 40eda1a0..5780a943 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-27-then-allof-1-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-27-then-allof-1-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"default" +"standard" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-27-then-allof-1-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-27-then-allof-1-then.md index 0624f916..be250fea 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-27-then-allof-1-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-27-then-allof-1-then.md @@ -10,11 +10,9 @@ unknown ## plan -application plan >default< for >IRPA< is available in data centers: +application plan >standard< for >iotas< is available in data centers: -* {'region': 'ap10', 'name': 'Australia (Sydney)'} * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} -* {'region': 'jp10', 'name': 'Japan (Tokyo)'} * {'region': 'us10', 'name': 'US East (VA)'} `plan` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-27-then-allof-2-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-27-then-allof-2-if-properties-plan.md deleted file mode 100644 index c97f5143..00000000 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-27-then-allof-2-if-properties-plan.md +++ /dev/null @@ -1,11 +0,0 @@ -## plan Type - -unknown - -## plan Constraints - -**constant**: the value of this property must be equal to: - -```json -"free" -``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-27-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-27-then-properties-plan.md index d4252bcb..3c39a79d 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-27-then-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-27-then-properties-plan.md @@ -8,6 +8,5 @@ unknown | Value | Explanation | | :------------- | :---------- | -| `"concurrent"` | | -| `"default"` | | -| `"free"` | | +| `"oneproduct"` | | +| `"standard"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-27-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-27-then.md index 7ef794b2..64654fce 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-27-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-27-then.md @@ -8,8 +8,6 @@ all of * [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-27-then-allof-1.md "check type definition") -* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-27-then-allof-2.md "check type definition") - # then Properties | Property | Type | Required | Nullable | Defined by | @@ -41,13 +39,12 @@ unknown | Value | Explanation | | :------------- | :---------- | -| `"concurrent"` | | -| `"default"` | | -| `"free"` | | +| `"oneproduct"` | | +| `"standard"` | | ## name -SAP Intelligent Robotic Process Automation: SAP Intelligent Robotic Process Automation lets you automate enterprise business processes. Design process automations with the Desktop Studio by creating end-to-end scenarios. Import these scenarios into the cloud Factory to configure and execute them with Agents. An Agent can work as a Digital Assistant (attended automation) or as a Digital Worker (unattended automation). +SAP IoT: SAP IoT business services allow you to put raw sensor data into business object context and then use query models, rules, events and actions to leverage the data near real-time in analytical or transactional business applications. `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-28-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-28-if-properties-name.md index e78e2d18..a3a86dc4 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-28-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-28-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"it-prod" +"IRPA" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-28-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-28-if.md index 3189a28a..c1a02e75 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-28-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-28-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"it-prod" +"IRPA" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-28-then-allof-0-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-28-then-allof-0-if-properties-plan.md index 4c5f5a2a..ffe4aedd 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-28-then-allof-0-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-28-then-allof-0-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"enterprise" +"concurrent" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-28-then-allof-0-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-28-then-allof-0-if.md index bebf293c..bb6f1f6c 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-28-then-allof-0-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-28-then-allof-0-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"enterprise" +"concurrent" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-28-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-28-then-allof-0-then.md index f9be2a57..5df4f9c5 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-28-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-28-then-allof-0-then.md @@ -10,20 +10,14 @@ unknown ## plan -application plan >enterprise< for >it-prod< is available in data centers: +application plan >concurrent< for >IRPA< is available in data centers: * {'region': 'ap10', 'name': 'Australia (Sydney)'} -* {'region': 'ap11', 'name': 'Singapore'} -* {'region': 'ap21', 'name': 'Singapore'} -* {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} -* {'region': 'ca10', 'name': 'Canada (Montreal)'} * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} -* {'region': 'eu20', 'name': 'Europe (Netherlands)'} +* {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} * {'region': 'jp10', 'name': 'Japan (Tokyo)'} -* {'region': 'jp20', 'name': 'Japan (Tokyo)'} * {'region': 'us10', 'name': 'US East (VA)'} * {'region': 'us20', 'name': 'US West (WA)'} -* {'region': 'us21', 'name': 'US East (VA)'} `plan` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-34-then-allof-1-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-28-then-allof-1-if-properties-plan.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-34-then-allof-1-if-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-28-then-allof-1-if-properties-plan.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-27-then-allof-2-if-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-28-then-allof-1-if-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-27-then-allof-2-if-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-28-then-allof-1-if-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-10-then-allof-1-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-28-then-allof-1-if.md similarity index 82% rename from docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-10-then-allof-1-if.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-28-then-allof-1-if.md index b6ee114b..39d463d5 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-10-then-allof-1-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-28-then-allof-1-if.md @@ -6,7 +6,7 @@ unknown | Property | Type | Required | Nullable | Defined by | | :------------ | :------------ | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-10-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/2/then/allOf/10/then/allOf/1/if/properties/plan") | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-28-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/2/then/allOf/28/then/allOf/1/if/properties/plan") | ## plan @@ -20,7 +20,7 @@ unknown * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-10-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/2/then/allOf/10/then/allOf/1/if/properties/plan") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-28-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/2/then/allOf/28/then/allOf/1/if/properties/plan") ### plan Type @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"free" +"default" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-25-then-allof-2-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-28-then-allof-1-then-properties-plan.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-25-then-allof-2-then-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-28-then-allof-1-then-properties-plan.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-27-then-allof-2-then-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-28-then-allof-1-then-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-27-then-allof-2-then-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-28-then-allof-1-then-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-28-then-allof-1-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-28-then-allof-1-then.md new file mode 100644 index 00000000..91bc7693 --- /dev/null +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-28-then-allof-1-then.md @@ -0,0 +1,32 @@ +## then Type + +unknown + +# then Properties + +| Property | Type | Required | Nullable | Defined by | +| :------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-28-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/2/then/allOf/28/then/allOf/1/then/properties/plan") | + +## plan + +application plan >default< for >IRPA< is available in data centers: + +* {'region': 'ap10', 'name': 'Australia (Sydney)'} +* {'region': 'eu10', 'name': 'Europe (Frankfurt)'} +* {'region': 'jp10', 'name': 'Japan (Tokyo)'} +* {'region': 'us10', 'name': 'US East (VA)'} + +`plan` + +* is optional + +* Type: unknown + +* cannot be null + +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-28-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/2/then/allOf/28/then/allOf/1/then/properties/plan") + +### plan Type + +unknown diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-17-then-allof-1.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-28-then-allof-1.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-17-then-allof-1.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-28-then-allof-1.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-24-then-allof-1-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-28-then-allof-2-if-properties-plan.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-24-then-allof-1-if-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-28-then-allof-2-if-properties-plan.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-30-then-allof-1-if-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-28-then-allof-2-if-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-30-then-allof-1-if-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-28-then-allof-2-if-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-27-then-allof-2-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-28-then-allof-2-if.md similarity index 83% rename from docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-27-then-allof-2-if.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-28-then-allof-2-if.md index 3217609f..2489ad4c 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-27-then-allof-2-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-28-then-allof-2-if.md @@ -6,7 +6,7 @@ unknown | Property | Type | Required | Nullable | Defined by | | :------------ | :------------ | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-27-then-allof-2-if-properties-plan.md "undefined#/properties/services/items/allOf/2/then/allOf/27/then/allOf/2/if/properties/plan") | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-28-then-allof-2-if-properties-plan.md "undefined#/properties/services/items/allOf/2/then/allOf/28/then/allOf/2/if/properties/plan") | ## plan @@ -20,7 +20,7 @@ unknown * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-27-then-allof-2-if-properties-plan.md "undefined#/properties/services/items/allOf/2/then/allOf/27/then/allOf/2/if/properties/plan") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-28-then-allof-2-if-properties-plan.md "undefined#/properties/services/items/allOf/2/then/allOf/28/then/allOf/2/if/properties/plan") ### plan Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-27-then-allof-2-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-28-then-allof-2-then-properties-plan.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-27-then-allof-2-then-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-28-then-allof-2-then-properties-plan.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-30-then-allof-1-then-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-28-then-allof-2-then-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-30-then-allof-1-then-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-28-then-allof-2-then-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-27-then-allof-2-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-28-then-allof-2-then.md similarity index 85% rename from docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-27-then-allof-2-then.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-28-then-allof-2-then.md index 6bd90790..a1b89445 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-27-then-allof-2-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-28-then-allof-2-then.md @@ -6,7 +6,7 @@ unknown | Property | Type | Required | Nullable | Defined by | | :------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-27-then-allof-2-then-properties-plan.md "undefined#/properties/services/items/allOf/2/then/allOf/27/then/allOf/2/then/properties/plan") | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-28-then-allof-2-then-properties-plan.md "undefined#/properties/services/items/allOf/2/then/allOf/28/then/allOf/2/then/properties/plan") | ## plan @@ -27,7 +27,7 @@ application plan >free< for >IRPA< is available in data centers: * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-27-then-allof-2-then-properties-plan.md "undefined#/properties/services/items/allOf/2/then/allOf/27/then/allOf/2/then/properties/plan") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-28-then-allof-2-then-properties-plan.md "undefined#/properties/services/items/allOf/2/then/allOf/28/then/allOf/2/then/properties/plan") ### plan Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-27-then-allof-2.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-28-then-allof-2.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-27-then-allof-2.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-28-then-allof-2.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-28-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-28-then-properties-plan.md index 2a9cb18b..d4252bcb 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-28-then-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-28-then-properties-plan.md @@ -8,4 +8,6 @@ unknown | Value | Explanation | | :------------- | :---------- | -| `"enterprise"` | | +| `"concurrent"` | | +| `"default"` | | +| `"free"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-28-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-28-then.md index 3759dc69..b45a713e 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-28-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-28-then.md @@ -6,6 +6,10 @@ all of * [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-28-then-allof-0.md "check type definition") +* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-28-then-allof-1.md "check type definition") + +* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-28-then-allof-2.md "check type definition") + # then Properties | Property | Type | Required | Nullable | Defined by | @@ -37,11 +41,13 @@ unknown | Value | Explanation | | :------------- | :---------- | -| `"enterprise"` | | +| `"concurrent"` | | +| `"default"` | | +| `"free"` | | ## name -Process Integration: The SAP Cloud Integration connects cloud applications with other SAP and non-SAP cloud and on-premise apps. +SAP Intelligent Robotic Process Automation: SAP Intelligent Robotic Process Automation lets you automate enterprise business processes. Design process automations with the Desktop Studio by creating end-to-end scenarios. Import these scenarios into the cloud Factory to configure and execute them with Agents. An Agent can work as a Digital Assistant (attended automation) or as a Digital Worker (unattended automation). `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-29-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-29-if-properties-name.md index 2a3f4b8b..e78e2d18 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-29-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-29-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"LandscapePortal" +"it-prod" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-29-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-29-if.md index 7f4bac6e..cf8b85ae 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-29-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-29-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"LandscapePortal" +"it-prod" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-29-then-allof-0-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-29-then-allof-0-if-properties-plan.md index 126392b1..4c5f5a2a 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-29-then-allof-0-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-29-then-allof-0-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"standard" +"enterprise" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-29-then-allof-0-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-29-then-allof-0-if.md index a84abc5e..dc3530fc 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-29-then-allof-0-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-29-then-allof-0-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"standard" +"enterprise" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-29-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-29-then-allof-0-then.md index 023e113b..b6a60df4 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-29-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-29-then-allof-0-then.md @@ -10,9 +10,20 @@ unknown ## plan -application plan >standard< for >LandscapePortal< is available in data centers: +application plan >enterprise< for >it-prod< is available in data centers: +* {'region': 'ap10', 'name': 'Australia (Sydney)'} +* {'region': 'ap11', 'name': 'Singapore'} +* {'region': 'ap21', 'name': 'Singapore'} +* {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} +* {'region': 'ca10', 'name': 'Canada (Montreal)'} * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} +* {'region': 'eu20', 'name': 'Europe (Netherlands)'} +* {'region': 'jp10', 'name': 'Japan (Tokyo)'} +* {'region': 'jp20', 'name': 'Japan (Tokyo)'} +* {'region': 'us10', 'name': 'US East (VA)'} +* {'region': 'us20', 'name': 'US West (WA)'} +* {'region': 'us21', 'name': 'US East (VA)'} `plan` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-29-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-29-then-properties-plan.md index 248cb3df..2a9cb18b 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-29-then-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-29-then-properties-plan.md @@ -6,6 +6,6 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :----------- | :---------- | -| `"standard"` | | +| Value | Explanation | +| :------------- | :---------- | +| `"enterprise"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-29-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-29-then.md index 5410b2b0..f530b870 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-29-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-29-then.md @@ -35,13 +35,13 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :----------- | :---------- | -| `"standard"` | | +| Value | Explanation | +| :------------- | :---------- | +| `"enterprise"` | | ## name -Landscape Portal: The Landscape Portal acts as a central tool that allows SaaS providers to keep track of the distribution of their consumers across their systems as well as perform lifecycle management operations such as updating add-ons, creating new tenants, and more. +Process Integration: The SAP Cloud Integration connects cloud applications with other SAP and non-SAP cloud and on-premise apps. `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-30-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-30-if-properties-name.md index 8121ee90..2a3f4b8b 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-30-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-30-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"market-rates-ux" +"LandscapePortal" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-30-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-30-if.md index 73658b7b..3c811c3e 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-30-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-30-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"market-rates-ux" +"LandscapePortal" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-30-then-allof-0-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-30-then-allof-0-if-properties-plan.md index 14155839..126392b1 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-30-then-allof-0-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-30-then-allof-0-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"mror" +"standard" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-30-then-allof-0-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-30-then-allof-0-if.md index 422f6d10..91f5cd95 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-30-then-allof-0-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-30-then-allof-0-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"mror" +"standard" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-30-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-30-then-allof-0-then.md index ad0c6bd3..3e5226f5 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-30-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-30-then-allof-0-then.md @@ -10,10 +10,9 @@ unknown ## plan -application plan >mror< for >market-rates-ux< is available in data centers: +application plan >standard< for >LandscapePortal< is available in data centers: * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} -* {'region': 'us10', 'name': 'US East (VA)'} `plan` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-30-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-30-then-properties-plan.md index c3a99b54..248cb3df 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-30-then-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-30-then-properties-plan.md @@ -6,7 +6,6 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :------- | :---------- | -| `"mror"` | | -| `"mrtr"` | | +| Value | Explanation | +| :----------- | :---------- | +| `"standard"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-30-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-30-then.md index 5e14b57e..e8d8055c 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-30-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-30-then.md @@ -6,8 +6,6 @@ all of * [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-30-then-allof-0.md "check type definition") -* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-30-then-allof-1.md "check type definition") - # then Properties | Property | Type | Required | Nullable | Defined by | @@ -37,14 +35,13 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :------- | :---------- | -| `"mror"` | | -| `"mrtr"` | | +| Value | Explanation | +| :----------- | :---------- | +| `"standard"` | | ## name -SAP Market Rates Management: SAP Market Rates Management application enables you to read and manage market data you have uploaded by using the data options available with the SAP Market Rates Management service. +Landscape Portal: The Landscape Portal acts as a central tool that allows SaaS providers to keep track of the distribution of their consumers across their systems as well as perform lifecycle management operations such as updating add-ons, creating new tenants, and more. `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-31-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-31-if-properties-name.md index 72e1f76b..8121ee90 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-31-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-31-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"mdgce" +"market-rates-ux" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-31-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-31-if.md index d7cf3085..7899b523 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-31-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-31-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"mdgce" +"market-rates-ux" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-31-then-allof-0-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-31-then-allof-0-if-properties-plan.md index c97f5143..14155839 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-31-then-allof-0-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-31-then-allof-0-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"free" +"mror" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-31-then-allof-0-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-31-then-allof-0-if.md index 32a20e0c..f2796d50 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-31-then-allof-0-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-31-then-allof-0-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"free" +"mror" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-31-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-31-then-allof-0-then.md index 1070d459..ded7825d 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-31-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-31-then-allof-0-then.md @@ -10,9 +10,10 @@ unknown ## plan -application plan >free< for >mdgce< is available in data centers: +application plan >mror< for >market-rates-ux< is available in data centers: * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} +* {'region': 'us10', 'name': 'US East (VA)'} `plan` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-31-then-allof-1-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-31-then-allof-1-if-properties-plan.md index 126392b1..57a1f571 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-31-then-allof-1-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-31-then-allof-1-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"standard" +"mrtr" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-31-then-allof-1-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-31-then-allof-1-if.md index 91902633..3f03ff56 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-31-then-allof-1-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-31-then-allof-1-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"standard" +"mrtr" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-31-then-allof-1-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-31-then-allof-1-then.md index 5304bdfa..0dbdbfac 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-31-then-allof-1-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-31-then-allof-1-then.md @@ -10,10 +10,9 @@ unknown ## plan -application plan >standard< for >mdgce< is available in data centers: +application plan >mrtr< for >market-rates-ux< is available in data centers: * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} -* {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} * {'region': 'us10', 'name': 'US East (VA)'} `plan` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-31-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-31-then-properties-plan.md index 49c8bb8c..c3a99b54 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-31-then-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-31-then-properties-plan.md @@ -6,7 +6,7 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :----------- | :---------- | -| `"free"` | | -| `"standard"` | | +| Value | Explanation | +| :------- | :---------- | +| `"mror"` | | +| `"mrtr"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-31-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-31-then.md index 30801969..3f2e0732 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-31-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-31-then.md @@ -37,14 +37,14 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :----------- | :---------- | -| `"free"` | | -| `"standard"` | | +| Value | Explanation | +| :------- | :---------- | +| `"mror"` | | +| `"mrtr"` | | ## name -SAP Master Data Governance, cloud edition: SAP Master Data Governance, cloud edition supports you in maintaining a high level of master data quality, offering capabilities to manage core attributes of business partners and to evaluate their quality. +SAP Market Rates Management: SAP Market Rates Management application enables you to read and manage market data you have uploaded by using the data options available with the SAP Market Rates Management service. `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-32-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-32-if-properties-name.md index 5ec5c524..72e1f76b 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-32-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-32-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"MDMBusinessPartnerApplication" +"mdgce" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-32-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-32-if.md index fd5b58e2..ac4d9487 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-32-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-32-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"MDMBusinessPartnerApplication" +"mdgce" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-32-then-allof-0-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-32-then-allof-0-if-properties-plan.md index 77bcc974..c97f5143 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-32-then-allof-0-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-32-then-allof-0-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"saas-application" +"free" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-32-then-allof-0-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-32-then-allof-0-if.md index 41bc8368..05031ad1 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-32-then-allof-0-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-32-then-allof-0-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"saas-application" +"free" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-32-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-32-then-allof-0-then.md index 7ff69105..e6c54583 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-32-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-32-then-allof-0-then.md @@ -10,10 +10,9 @@ unknown ## plan -application plan >saas-application< for >MDMBusinessPartnerApplication< is available in data centers: +application plan >free< for >mdgce< is available in data centers: * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} -* {'region': 'us10', 'name': 'US East (VA)'} `plan` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-43-then-allof-1-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-32-then-allof-1-if-properties-plan.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-43-then-allof-1-if-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-32-then-allof-1-if-properties-plan.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-39-then-allof-1-if-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-32-then-allof-1-if-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-39-then-allof-1-if-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-32-then-allof-1-if-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-39-then-allof-1-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-32-then-allof-1-if.md similarity index 83% rename from docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-39-then-allof-1-if.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-32-then-allof-1-if.md index 4849977c..c2e925f7 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-39-then-allof-1-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-32-then-allof-1-if.md @@ -6,7 +6,7 @@ unknown | Property | Type | Required | Nullable | Defined by | | :------------ | :------------ | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-39-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/2/then/allOf/39/then/allOf/1/if/properties/plan") | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-32-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/2/then/allOf/32/then/allOf/1/if/properties/plan") | ## plan @@ -20,7 +20,7 @@ unknown * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-39-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/2/then/allOf/39/then/allOf/1/if/properties/plan") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-32-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/2/then/allOf/32/then/allOf/1/if/properties/plan") ### plan Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-30-then-allof-1-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-32-then-allof-1-then-properties-plan.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-30-then-allof-1-then-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-32-then-allof-1-then-properties-plan.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-39-then-allof-1-then-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-32-then-allof-1-then-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-39-then-allof-1-then-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-32-then-allof-1-then-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-30-then-allof-1-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-32-then-allof-1-then.md similarity index 75% rename from docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-30-then-allof-1-then.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-32-then-allof-1-then.md index a630f81b..b292498b 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-30-then-allof-1-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-32-then-allof-1-then.md @@ -6,13 +6,14 @@ unknown | Property | Type | Required | Nullable | Defined by | | :------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-30-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/2/then/allOf/30/then/allOf/1/then/properties/plan") | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-32-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/2/then/allOf/32/then/allOf/1/then/properties/plan") | ## plan -application plan >mrtr< for >market-rates-ux< is available in data centers: +application plan >standard< for >mdgce< is available in data centers: * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} +* {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} * {'region': 'us10', 'name': 'US East (VA)'} `plan` @@ -23,7 +24,7 @@ application plan >mrtr< for >market-rates-ux< is available in data centers: * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-30-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/2/then/allOf/30/then/allOf/1/then/properties/plan") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-32-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/2/then/allOf/32/then/allOf/1/then/properties/plan") ### plan Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-24-then-allof-1.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-32-then-allof-1.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-24-then-allof-1.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-32-then-allof-1.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-32-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-32-then-properties-plan.md index 8cfb4fe3..49c8bb8c 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-32-then-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-32-then-properties-plan.md @@ -6,6 +6,7 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :------------------- | :---------- | -| `"saas-application"` | | +| Value | Explanation | +| :----------- | :---------- | +| `"free"` | | +| `"standard"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-32-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-32-then.md index 7d6e9555..25589b5b 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-32-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-32-then.md @@ -6,6 +6,8 @@ all of * [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-32-then-allof-0.md "check type definition") +* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-32-then-allof-1.md "check type definition") + # then Properties | Property | Type | Required | Nullable | Defined by | @@ -35,13 +37,14 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :------------------- | :---------- | -| `"saas-application"` | | +| Value | Explanation | +| :----------- | :---------- | +| `"free"` | | +| `"standard"` | | ## name -SAP Business Partner Application: SAP Business Partner Application +SAP Master Data Governance, cloud edition: SAP Master Data Governance, cloud edition supports you in maintaining a high level of master data quality, offering capabilities to manage core attributes of business partners and to evaluate their quality. `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-33-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-33-if-properties-name.md index 7a2568b0..5ec5c524 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-33-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-33-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"mdo-one-mds-master" +"MDMBusinessPartnerApplication" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-33-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-33-if.md index 3adda35b..837266dd 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-33-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-33-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"mdo-one-mds-master" +"MDMBusinessPartnerApplication" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-33-then-allof-0-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-33-then-allof-0-if-properties-plan.md index 126392b1..77bcc974 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-33-then-allof-0-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-33-then-allof-0-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"standard" +"saas-application" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-33-then-allof-0-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-33-then-allof-0-if.md index 55dc578d..72b158cc 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-33-then-allof-0-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-33-then-allof-0-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"standard" +"saas-application" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-33-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-33-then-allof-0-then.md index fce37e75..dfb0f785 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-33-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-33-then-allof-0-then.md @@ -10,12 +10,9 @@ unknown ## plan -application plan >standard< for >mdo-one-mds-master< is available in data centers: +application plan >saas-application< for >MDMBusinessPartnerApplication< is available in data centers: -* {'region': 'ap10', 'name': 'Australia (Sydney)'} -* {'region': 'ap11', 'name': 'Singapore'} * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} -* {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} * {'region': 'us10', 'name': 'US East (VA)'} `plan` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-33-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-33-then-properties-plan.md index 248cb3df..8cfb4fe3 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-33-then-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-33-then-properties-plan.md @@ -6,6 +6,6 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :----------- | :---------- | -| `"standard"` | | +| Value | Explanation | +| :------------------- | :---------- | +| `"saas-application"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-33-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-33-then.md index 28180ae8..d5405f39 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-33-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-33-then.md @@ -35,13 +35,13 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :----------- | :---------- | -| `"standard"` | | +| Value | Explanation | +| :------------------- | :---------- | +| `"saas-application"` | | ## name -Master Data Integration (Orchestration): Master data application that allows master data replication according to predetermined master data distribution models. SAP Master Data Orchestration can only be used in combination with the SAP Master Data Integration service. +SAP Business Partner Application: SAP Business Partner Application `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-34-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-34-if-properties-name.md index 5c91ce91..7a2568b0 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-34-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-34-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"MDOrchestrationApplication" +"mdo-one-mds-master" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-34-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-34-if.md index 26caed7f..c4d731dc 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-34-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-34-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"MDOrchestrationApplication" +"mdo-one-mds-master" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-34-then-allof-0-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-34-then-allof-0-if-properties-plan.md index 77bcc974..126392b1 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-34-then-allof-0-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-34-then-allof-0-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"saas-application" +"standard" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-34-then-allof-0-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-34-then-allof-0-if.md index 48686306..2bbfa22c 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-34-then-allof-0-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-34-then-allof-0-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"saas-application" +"standard" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-34-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-34-then-allof-0-then.md index 84ee2686..52d2f7ac 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-34-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-34-then-allof-0-then.md @@ -10,9 +10,12 @@ unknown ## plan -application plan >saas-application< for >MDOrchestrationApplication< is available in data centers: +application plan >standard< for >mdo-one-mds-master< is available in data centers: +* {'region': 'ap10', 'name': 'Australia (Sydney)'} +* {'region': 'ap11', 'name': 'Singapore'} * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} +* {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} * {'region': 'us10', 'name': 'US East (VA)'} `plan` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-34-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-34-then-properties-plan.md index 8cfb4fe3..248cb3df 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-34-then-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-34-then-properties-plan.md @@ -6,6 +6,6 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :------------------- | :---------- | -| `"saas-application"` | | +| Value | Explanation | +| :----------- | :---------- | +| `"standard"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-34-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-34-then.md index 51ed5736..44e2848f 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-34-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-34-then.md @@ -35,13 +35,13 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :------------------- | :---------- | -| `"saas-application"` | | +| Value | Explanation | +| :----------- | :---------- | +| `"standard"` | | ## name -SAP Master Data Orchestration: Master data application for existing customers of SAP Master Data service for business partners and SAP Master Data service for products. New customers should use the Master Data Integration (Orchestration) tile. SAP Master Data Orchestration should only be used in combination with the SAP Master Data Integration service. +Master Data Integration (Orchestration): Master data application that allows master data replication according to predetermined master data distribution models. SAP Master Data Orchestration can only be used in combination with the SAP Master Data Integration service. `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-35-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-35-if-properties-name.md index d8e16024..5c91ce91 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-35-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-35-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"ocnselfserviceagent" +"MDOrchestrationApplication" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-35-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-35-if.md index 9b7af7a4..4574fc04 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-35-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-35-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"ocnselfserviceagent" +"MDOrchestrationApplication" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-35-then-allof-0-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-35-then-allof-0-if-properties-plan.md index 126392b1..77bcc974 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-35-then-allof-0-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-35-then-allof-0-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"standard" +"saas-application" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-35-then-allof-0-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-35-then-allof-0-if.md index 262af7ef..a179cf9a 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-35-then-allof-0-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-35-then-allof-0-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"standard" +"saas-application" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-35-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-35-then-allof-0-then.md index b13c5c38..c2678112 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-35-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-35-then-allof-0-then.md @@ -10,25 +10,10 @@ unknown ## plan -application plan >standard< for >ocnselfserviceagent< is available in data centers: - -* {'region': 'ap10', 'name': 'Australia (Sydney)'} -* {'region': 'ap11', 'name': 'Singapore'} -* {'region': 'ap12', 'name': 'South Korea (Seoul)'} -* {'region': 'ap20', 'name': 'Australia (Sydney) Azure'} -* {'region': 'ap21', 'name': 'Singapore'} -* {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} -* {'region': 'ca10', 'name': 'Canada (Montreal)'} +application plan >saas-application< for >MDOrchestrationApplication< is available in data centers: + * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} -* {'region': 'eu20', 'name': 'Europe (Netherlands)'} -* {'region': 'eu30', 'name': 'Europe (Frankfurt)'} -* {'region': 'in30', 'name': 'India (Mumbai)'} -* {'region': 'jp10', 'name': 'Japan (Tokyo)'} -* {'region': 'jp20', 'name': 'Japan (Tokyo)'} * {'region': 'us10', 'name': 'US East (VA)'} -* {'region': 'us20', 'name': 'US West (WA)'} -* {'region': 'us21', 'name': 'US East (VA)'} -* {'region': 'us30', 'name': 'US Central (IA)'} `plan` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-35-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-35-then-properties-plan.md index 248cb3df..8cfb4fe3 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-35-then-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-35-then-properties-plan.md @@ -6,6 +6,6 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :----------- | :---------- | -| `"standard"` | | +| Value | Explanation | +| :------------------- | :---------- | +| `"saas-application"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-35-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-35-then.md index b595d9a4..3c147939 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-35-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-35-then.md @@ -35,13 +35,13 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :----------- | :---------- | -| `"standard"` | | +| Value | Explanation | +| :------------------- | :---------- | +| `"saas-application"` | | ## name -Open Connectors: Open Connectors provides pre-built and feature-rich connectors to simplify the connectivity and seamless integration with over 150 non-SAP cloud applications. Customers benefit from connectivity to third-party APIs via harmonized RESTful APIs and can develop and map canonical data models to extend pre-built connectors. Furthermore customers can easily build API compositions across the different connectors. +SAP Master Data Orchestration: Master data application for existing customers of SAP Master Data service for business partners and SAP Master Data service for products. New customers should use the Master Data Integration (Orchestration) tile. SAP Master Data Orchestration should only be used in combination with the SAP Master Data Integration service. `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-36-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-36-if-properties-name.md index 25db03d3..d8e16024 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-36-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-36-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"PersonalDataManagerApp" +"ocnselfserviceagent" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-36-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-36-if.md index 0069b3c4..77c5e45a 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-36-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-36-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"PersonalDataManagerApp" +"ocnselfserviceagent" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-36-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-36-then-allof-0-then.md index fac206d9..6599e335 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-36-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-36-then-allof-0-then.md @@ -10,14 +10,21 @@ unknown ## plan -application plan >standard< for >PersonalDataManagerApp< is available in data centers: +application plan >standard< for >ocnselfserviceagent< is available in data centers: * {'region': 'ap10', 'name': 'Australia (Sydney)'} * {'region': 'ap11', 'name': 'Singapore'} +* {'region': 'ap12', 'name': 'South Korea (Seoul)'} +* {'region': 'ap20', 'name': 'Australia (Sydney) Azure'} +* {'region': 'ap21', 'name': 'Singapore'} * {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} +* {'region': 'ca10', 'name': 'Canada (Montreal)'} * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} -* {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} * {'region': 'eu20', 'name': 'Europe (Netherlands)'} +* {'region': 'eu30', 'name': 'Europe (Frankfurt)'} +* {'region': 'in30', 'name': 'India (Mumbai)'} +* {'region': 'jp10', 'name': 'Japan (Tokyo)'} +* {'region': 'jp20', 'name': 'Japan (Tokyo)'} * {'region': 'us10', 'name': 'US East (VA)'} * {'region': 'us20', 'name': 'US West (WA)'} * {'region': 'us21', 'name': 'US East (VA)'} diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-36-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-36-then.md index 43caca9f..2dbb7582 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-36-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-36-then.md @@ -41,7 +41,7 @@ unknown ## name -SAP Personal Data Manager: SAP Personal Data Manager provides the capability to generate reports showing the personal data stored in an application point of view with the help of a CSR. The reports can be generated and exported either in machine readable form (JSON) or human readable form (PDF). Data subjects can request the correction and deletion of personal data that is stored in an application point of view. +Open Connectors: Open Connectors provides pre-built and feature-rich connectors to simplify the connectivity and seamless integration with over 150 non-SAP cloud applications. Customers benefit from connectivity to third-party APIs via harmonized RESTful APIs and can develop and map canonical data models to extend pre-built connectors. Furthermore customers can easily build API compositions across the different connectors. `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-37-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-37-if-properties-name.md index 1425abe9..25db03d3 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-37-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-37-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"PortalApplication" +"PersonalDataManagerApp" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-37-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-37-if.md index 008fa15e..3af13996 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-37-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-37-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"PortalApplication" +"PersonalDataManagerApp" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-37-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-37-then-allof-0-then.md index acc8d310..cba5ff5f 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-37-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-37-then-allof-0-then.md @@ -10,22 +10,14 @@ unknown ## plan -application plan >standard< for >PortalApplication< is available in data centers: +application plan >standard< for >PersonalDataManagerApp< is available in data centers: * {'region': 'ap10', 'name': 'Australia (Sydney)'} * {'region': 'ap11', 'name': 'Singapore'} -* {'region': 'ap12', 'name': 'South Korea (Seoul)'} -* {'region': 'ap20', 'name': 'Australia (Sydney) Azure'} -* {'region': 'ap21', 'name': 'Singapore'} * {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} -* {'region': 'ca10', 'name': 'Canada (Montreal)'} * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} * {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} * {'region': 'eu20', 'name': 'Europe (Netherlands)'} -* {'region': 'eu30', 'name': 'Europe (Frankfurt)'} -* {'region': 'in30', 'name': 'India (Mumbai)'} -* {'region': 'jp10', 'name': 'Japan (Tokyo)'} -* {'region': 'jp20', 'name': 'Japan (Tokyo)'} * {'region': 'us10', 'name': 'US East (VA)'} * {'region': 'us20', 'name': 'US West (WA)'} * {'region': 'us21', 'name': 'US East (VA)'} diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-37-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-37-then.md index 57188bf4..6e179e9f 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-37-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-37-then.md @@ -41,7 +41,7 @@ unknown ## name -SAP Cloud Portal service: SAP Cloud Portal service lets you build digital experience portals for employees, customers, and partners. You can streamline access to business data so that your employees can execute their daily business tasks securely, from any device. +SAP Personal Data Manager: SAP Personal Data Manager provides the capability to generate reports showing the personal data stored in an application point of view with the help of a CSR. The reports can be generated and exported either in machine readable form (JSON) or human readable form (PDF). Data subjects can request the correction and deletion of personal data that is stored in an application point of view. `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-38-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-38-if-properties-name.md index 7d06c4a1..1425abe9 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-38-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-38-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"print-app" +"PortalApplication" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-38-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-38-if.md index d196fc54..9dcc35fd 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-38-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-38-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"print-app" +"PortalApplication" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-38-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-38-then-allof-0-then.md index d9032b1c..b5cb9e5d 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-38-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-38-then-allof-0-then.md @@ -10,14 +10,26 @@ unknown ## plan -application plan >standard< for >print-app< is available in data centers: - +application plan >standard< for >PortalApplication< is available in data centers: + +* {'region': 'ap10', 'name': 'Australia (Sydney)'} +* {'region': 'ap11', 'name': 'Singapore'} +* {'region': 'ap12', 'name': 'South Korea (Seoul)'} +* {'region': 'ap20', 'name': 'Australia (Sydney) Azure'} +* {'region': 'ap21', 'name': 'Singapore'} +* {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} +* {'region': 'ca10', 'name': 'Canada (Montreal)'} * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} * {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} * {'region': 'eu20', 'name': 'Europe (Netherlands)'} +* {'region': 'eu30', 'name': 'Europe (Frankfurt)'} +* {'region': 'in30', 'name': 'India (Mumbai)'} +* {'region': 'jp10', 'name': 'Japan (Tokyo)'} +* {'region': 'jp20', 'name': 'Japan (Tokyo)'} * {'region': 'us10', 'name': 'US East (VA)'} * {'region': 'us20', 'name': 'US West (WA)'} * {'region': 'us21', 'name': 'US East (VA)'} +* {'region': 'us30', 'name': 'US Central (IA)'} `plan` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-38-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-38-then.md index b36ddeb0..a112031b 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-38-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-38-then.md @@ -41,7 +41,7 @@ unknown ## name -SAP Print service: SAP Print service is used in business applications that are based on SAP Business Technology Platform (BTP) as well as other SAP Cloud products across SAP Intelligent Enterprise Suite. Using this service, the business application's development team can easily establish the connection between SAP Print service and the customer’s local printers. This means you can significantly reduce the development effort. +SAP Cloud Portal service: SAP Cloud Portal service lets you build digital experience portals for employees, customers, and partners. You can streamline access to business data so that your employees can execute their daily business tasks securely, from any device. `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-39-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-39-if-properties-name.md index 0ef550f8..7d06c4a1 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-39-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-39-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"process-automation" +"print-app" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-39-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-39-if.md index 7275a95b..5cff72cc 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-39-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-39-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"process-automation" +"print-app" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-39-then-allof-0-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-39-then-allof-0-if-properties-plan.md index c97f5143..126392b1 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-39-then-allof-0-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-39-then-allof-0-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"free" +"standard" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-39-then-allof-0-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-39-then-allof-0-if.md index 02881b70..f23807ad 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-39-then-allof-0-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-39-then-allof-0-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"free" +"standard" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-39-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-39-then-allof-0-then.md index c17f5542..8eb987ed 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-39-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-39-then-allof-0-then.md @@ -10,14 +10,14 @@ unknown ## plan -application plan >free< for >process-automation< is available in data centers: +application plan >standard< for >print-app< is available in data centers: -* {'region': 'ap10', 'name': 'Australia (Sydney)'} * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} * {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} -* {'region': 'jp10', 'name': 'Japan (Tokyo)'} +* {'region': 'eu20', 'name': 'Europe (Netherlands)'} * {'region': 'us10', 'name': 'US East (VA)'} -* {'region': 'us30', 'name': 'US Central (IA)'} +* {'region': 'us20', 'name': 'US West (WA)'} +* {'region': 'us21', 'name': 'US East (VA)'} `plan` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-39-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-39-then-properties-plan.md index 49c8bb8c..248cb3df 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-39-then-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-39-then-properties-plan.md @@ -8,5 +8,4 @@ unknown | Value | Explanation | | :----------- | :---------- | -| `"free"` | | | `"standard"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-39-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-39-then.md index cb364a8c..54e8a5ce 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-39-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-39-then.md @@ -6,8 +6,6 @@ all of * [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-39-then-allof-0.md "check type definition") -* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-39-then-allof-1.md "check type definition") - # then Properties | Property | Type | Required | Nullable | Defined by | @@ -39,12 +37,11 @@ unknown | Value | Explanation | | :----------- | :---------- | -| `"free"` | | | `"standard"` | | ## name -SAP Build Process Automation: SAP Build Process Automation combines capabilities from SAP Workflow Management and SAP Intelligent RPA with a powerful, yet intuitive no-code development experience. SAP Build Process Automation enables business users and technologists to become citizen developers. With powerful yet intuitive low-code and no-code capabilities, the solution supports you in driving automation by tapping into the expertise of citizen developers. +SAP Print service: SAP Print service is used in business applications that are based on SAP Business Technology Platform (BTP) as well as other SAP Cloud products across SAP Intelligent Enterprise Suite. Using this service, the business application's development team can easily establish the connection between SAP Print service and the customer’s local printers. This means you can significantly reduce the development effort. `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-40-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-40-if-properties-name.md index d989fb51..0ef550f8 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-40-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-40-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"responsibility-management-application-beta" +"process-automation" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-40-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-40-if.md index 17dab2a6..4abee1e2 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-40-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-40-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"responsibility-management-application-beta" +"process-automation" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-40-then-allof-0-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-40-then-allof-0-if-properties-plan.md index 538fc6a8..c97f5143 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-40-then-allof-0-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-40-then-allof-0-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"beta" +"free" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-40-then-allof-0-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-40-then-allof-0-if.md index 7463e8e7..9a547178 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-40-then-allof-0-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-40-then-allof-0-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"beta" +"free" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-40-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-40-then-allof-0-then.md index cb56c5ca..02a317a9 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-40-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-40-then-allof-0-then.md @@ -10,9 +10,14 @@ unknown ## plan -application plan >beta< for >responsibility-management-application-beta< is available in data centers: +application plan >free< for >process-automation< is available in data centers: +* {'region': 'ap10', 'name': 'Australia (Sydney)'} * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} +* {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} +* {'region': 'jp10', 'name': 'Japan (Tokyo)'} +* {'region': 'us10', 'name': 'US East (VA)'} +* {'region': 'us30', 'name': 'US Central (IA)'} `plan` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-50-then-allof-1-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-40-then-allof-1-if-properties-plan.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-50-then-allof-1-if-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-40-then-allof-1-if-properties-plan.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-43-then-allof-1-if-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-40-then-allof-1-if-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-43-then-allof-1-if-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-40-then-allof-1-if-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-43-then-allof-1-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-40-then-allof-1-if.md similarity index 83% rename from docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-43-then-allof-1-if.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-40-then-allof-1-if.md index b3e70412..657dbe60 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-43-then-allof-1-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-40-then-allof-1-if.md @@ -6,7 +6,7 @@ unknown | Property | Type | Required | Nullable | Defined by | | :------------ | :------------ | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-43-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/2/then/allOf/43/then/allOf/1/if/properties/plan") | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-40-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/2/then/allOf/40/then/allOf/1/if/properties/plan") | ## plan @@ -20,7 +20,7 @@ unknown * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-43-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/2/then/allOf/43/then/allOf/1/if/properties/plan") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-40-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/2/then/allOf/40/then/allOf/1/if/properties/plan") ### plan Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-39-then-allof-1-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-40-then-allof-1-then-properties-plan.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-39-then-allof-1-then-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-40-then-allof-1-then-properties-plan.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-43-then-allof-1-then-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-40-then-allof-1-then-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-43-then-allof-1-then-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-40-then-allof-1-then-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-39-then-allof-1-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-40-then-allof-1-then.md similarity index 85% rename from docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-39-then-allof-1-then.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-40-then-allof-1-then.md index be1de0a9..16f954f1 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-39-then-allof-1-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-40-then-allof-1-then.md @@ -6,7 +6,7 @@ unknown | Property | Type | Required | Nullable | Defined by | | :------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-39-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/2/then/allOf/39/then/allOf/1/then/properties/plan") | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-40-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/2/then/allOf/40/then/allOf/1/then/properties/plan") | ## plan @@ -27,7 +27,7 @@ application plan >standard< for >process-automation< is available in data center * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-39-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/2/then/allOf/39/then/allOf/1/then/properties/plan") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-40-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/2/then/allOf/40/then/allOf/1/then/properties/plan") ### plan Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-30-then-allof-1.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-40-then-allof-1.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-30-then-allof-1.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-40-then-allof-1.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-40-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-40-then-properties-plan.md index 5184db98..49c8bb8c 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-40-then-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-40-then-properties-plan.md @@ -6,6 +6,7 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :------- | :---------- | -| `"beta"` | | +| Value | Explanation | +| :----------- | :---------- | +| `"free"` | | +| `"standard"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-40-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-40-then.md index 0d20be75..30128a15 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-40-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-40-then.md @@ -6,6 +6,8 @@ all of * [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-40-then-allof-0.md "check type definition") +* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-40-then-allof-1.md "check type definition") + # then Properties | Property | Type | Required | Nullable | Defined by | @@ -35,13 +37,14 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :------- | :---------- | -| `"beta"` | | +| Value | Explanation | +| :----------- | :---------- | +| `"free"` | | +| `"standard"` | | ## name -SAP Responsibility Management service: Provides APIs for DetermineAgents using responsibility rules or external APIs(bring your own code) and AgentDeterminationRequest. +SAP Build Process Automation: SAP Build Process Automation combines capabilities from SAP Workflow Management and SAP Intelligent RPA with a powerful, yet intuitive no-code development experience. SAP Build Process Automation enables business users and technologists to become citizen developers. With powerful yet intuitive low-code and no-code capabilities, the solution supports you in driving automation by tapping into the expertise of citizen developers. `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-41-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-41-if-properties-name.md index ebadd4b8..d989fb51 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-41-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-41-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"responsibilitymanagement-application" +"responsibility-management-application-beta" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-41-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-41-if.md index 93144cd0..48fba29a 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-41-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-41-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"responsibilitymanagement-application" +"responsibility-management-application-beta" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-41-then-allof-0-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-41-then-allof-0-if-properties-plan.md index 126392b1..538fc6a8 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-41-then-allof-0-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-41-then-allof-0-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"standard" +"beta" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-41-then-allof-0-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-41-then-allof-0-if.md index 41227a10..f322d152 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-41-then-allof-0-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-41-then-allof-0-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"standard" +"beta" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-41-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-41-then-allof-0-then.md index 9e0e868b..29716411 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-41-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-41-then-allof-0-then.md @@ -10,14 +10,9 @@ unknown ## plan -application plan >standard< for >responsibilitymanagement-application< is available in data centers: +application plan >beta< for >responsibility-management-application-beta< is available in data centers: * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} -* {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} -* {'region': 'eu20', 'name': 'Europe (Netherlands)'} -* {'region': 'us10', 'name': 'US East (VA)'} -* {'region': 'us20', 'name': 'US West (WA)'} -* {'region': 'us21', 'name': 'US East (VA)'} `plan` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-41-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-41-then-properties-plan.md index 248cb3df..5184db98 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-41-then-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-41-then-properties-plan.md @@ -6,6 +6,6 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :----------- | :---------- | -| `"standard"` | | +| Value | Explanation | +| :------- | :---------- | +| `"beta"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-41-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-41-then.md index 6d2abf79..5ca61f59 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-41-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-41-then.md @@ -35,13 +35,13 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :----------- | :---------- | -| `"standard"` | | +| Value | Explanation | +| :------- | :---------- | +| `"beta"` | | ## name -Responsibility Management Service: As we move toward an intelligent enterprise, intelligent systems need to determine agents who are responsible for business processes and objects, and automatically notify them. It is essential to define and manage these responsibilities for various contexts and retrieve responsible agents who can respond to tasks and activities. +SAP Responsibility Management service: Provides APIs for DetermineAgents using responsibility rules or external APIs(bring your own code) and AgentDeterminationRequest. `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-42-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-42-if-properties-name.md index e6f07df0..ebadd4b8 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-42-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-42-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"retention-manager-app" +"responsibilitymanagement-application" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-42-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-42-if.md index 2b9b5ded..31480fc5 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-42-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-42-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"retention-manager-app" +"responsibilitymanagement-application" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-42-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-42-then-allof-0-then.md index 409218cb..adba2e17 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-42-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-42-then-allof-0-then.md @@ -10,18 +10,14 @@ unknown ## plan -application plan >standard< for >retention-manager-app< is available in data centers: +application plan >standard< for >responsibilitymanagement-application< is available in data centers: -* {'region': 'ap10', 'name': 'Australia (Sydney)'} -* {'region': 'ap11', 'name': 'Singapore'} -* {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} * {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} * {'region': 'eu20', 'name': 'Europe (Netherlands)'} * {'region': 'us10', 'name': 'US East (VA)'} * {'region': 'us20', 'name': 'US West (WA)'} * {'region': 'us21', 'name': 'US East (VA)'} -* {'region': 'us30', 'name': 'US Central (IA)'} `plan` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-42-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-42-then.md index 4799fb37..680b9c84 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-42-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-42-then.md @@ -41,7 +41,7 @@ unknown ## name -SAP Data Retention Manager: SAP Data Retention Manager service lets you block or delete personal data based on the residence and retention rules maintained. +Responsibility Management Service: As we move toward an intelligent enterprise, intelligent systems need to determine agents who are responsible for business processes and objects, and automatically notify them. It is essential to define and manage these responsibilities for various contexts and retrieve responsible agents who can respond to tasks and activities. `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-43-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-43-if-properties-name.md index bb86b441..e6f07df0 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-43-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-43-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"sap-build-apps" +"retention-manager-app" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-43-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-43-if.md index 5ecf1184..3359a469 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-43-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-43-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"sap-build-apps" +"retention-manager-app" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-43-then-allof-0-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-43-then-allof-0-if-properties-plan.md index c97f5143..126392b1 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-43-then-allof-0-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-43-then-allof-0-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"free" +"standard" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-43-then-allof-0-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-43-then-allof-0-if.md index c7ae5db5..c3bf08cb 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-43-then-allof-0-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-43-then-allof-0-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"free" +"standard" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-43-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-43-then-allof-0-then.md index 64079d98..4f556544 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-43-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-43-then-allof-0-then.md @@ -10,10 +10,18 @@ unknown ## plan -application plan >free< for >sap-build-apps< is available in data centers: +application plan >standard< for >retention-manager-app< is available in data centers: +* {'region': 'ap10', 'name': 'Australia (Sydney)'} +* {'region': 'ap11', 'name': 'Singapore'} +* {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} +* {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} +* {'region': 'eu20', 'name': 'Europe (Netherlands)'} * {'region': 'us10', 'name': 'US East (VA)'} +* {'region': 'us20', 'name': 'US West (WA)'} +* {'region': 'us21', 'name': 'US East (VA)'} +* {'region': 'us30', 'name': 'US Central (IA)'} `plan` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-43-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-43-then-properties-plan.md index 49c8bb8c..248cb3df 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-43-then-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-43-then-properties-plan.md @@ -8,5 +8,4 @@ unknown | Value | Explanation | | :----------- | :---------- | -| `"free"` | | | `"standard"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-43-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-43-then.md index 454ee98b..e49054f2 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-43-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-43-then.md @@ -6,8 +6,6 @@ all of * [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-43-then-allof-0.md "check type definition") -* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-43-then-allof-1.md "check type definition") - # then Properties | Property | Type | Required | Nullable | Defined by | @@ -39,12 +37,11 @@ unknown | Value | Explanation | | :----------- | :---------- | -| `"free"` | | | `"standard"` | | ## name -SAP Build Apps: SAP Build Apps is a full stack no-code development platform for creating Web and native mobile applications. Please note that an instance of Cloud Identity Services is required to successfully create a subscription. See Documentation for more information. +SAP Data Retention Manager: SAP Data Retention Manager service lets you block or delete personal data based on the residence and retention rules maintained. `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-44-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-44-if-properties-name.md index fa09c482..bb86b441 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-44-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-44-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"sap-cai-onboarding" +"sap-build-apps" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-44-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-44-if.md index e6fcfa35..36539bb5 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-44-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-44-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"sap-cai-onboarding" +"sap-build-apps" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-44-then-allof-0-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-44-then-allof-0-if-properties-plan.md index 126392b1..c97f5143 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-44-then-allof-0-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-44-then-allof-0-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"standard" +"free" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-44-then-allof-0-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-44-then-allof-0-if.md index 35bf5a49..b090cb45 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-44-then-allof-0-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-44-then-allof-0-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"standard" +"free" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-44-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-44-then-allof-0-then.md index ca7ef413..2c228cef 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-44-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-44-then-allof-0-then.md @@ -10,10 +10,9 @@ unknown ## plan -application plan >standard< for >sap-cai-onboarding< is available in data centers: +application plan >free< for >sap-build-apps< is available in data centers: * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} -* {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} * {'region': 'us10', 'name': 'US East (VA)'} `plan` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-44-then-allof-1-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-44-then-allof-1-if-properties-plan.md new file mode 100644 index 00000000..126392b1 --- /dev/null +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-44-then-allof-1-if-properties-plan.md @@ -0,0 +1,11 @@ +## plan Type + +unknown + +## plan Constraints + +**constant**: the value of this property must be equal to: + +```json +"standard" +``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-45-then-allof-1-if-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-44-then-allof-1-if-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-45-then-allof-1-if-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-44-then-allof-1-if-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-50-then-allof-1-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-44-then-allof-1-if.md similarity index 83% rename from docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-50-then-allof-1-if.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-44-then-allof-1-if.md index 6208364c..6cb90ec7 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-50-then-allof-1-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-44-then-allof-1-if.md @@ -6,7 +6,7 @@ unknown | Property | Type | Required | Nullable | Defined by | | :------------ | :------------ | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-50-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/2/then/allOf/50/then/allOf/1/if/properties/plan") | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-44-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/2/then/allOf/44/then/allOf/1/if/properties/plan") | ## plan @@ -20,7 +20,7 @@ unknown * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-50-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/2/then/allOf/50/then/allOf/1/if/properties/plan") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-44-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/2/then/allOf/44/then/allOf/1/if/properties/plan") ### plan Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-43-then-allof-1-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-44-then-allof-1-then-properties-plan.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-43-then-allof-1-then-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-44-then-allof-1-then-properties-plan.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-45-then-allof-1-then-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-44-then-allof-1-then-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-45-then-allof-1-then-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-44-then-allof-1-then-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-43-then-allof-1-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-44-then-allof-1-then.md similarity index 83% rename from docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-43-then-allof-1-then.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-44-then-allof-1-then.md index 12cd4392..3ad4a266 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-43-then-allof-1-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-44-then-allof-1-then.md @@ -6,7 +6,7 @@ unknown | Property | Type | Required | Nullable | Defined by | | :------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-43-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/2/then/allOf/43/then/allOf/1/then/properties/plan") | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-44-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/2/then/allOf/44/then/allOf/1/then/properties/plan") | ## plan @@ -23,7 +23,7 @@ application plan >standard< for >sap-build-apps< is available in data centers: * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-43-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/2/then/allOf/43/then/allOf/1/then/properties/plan") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-44-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/2/then/allOf/44/then/allOf/1/then/properties/plan") ### plan Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-39-then-allof-1.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-44-then-allof-1.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-39-then-allof-1.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-44-then-allof-1.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-44-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-44-then-properties-plan.md index 248cb3df..49c8bb8c 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-44-then-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-44-then-properties-plan.md @@ -8,4 +8,5 @@ unknown | Value | Explanation | | :----------- | :---------- | +| `"free"` | | | `"standard"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-44-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-44-then.md index 68c28c73..8049242d 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-44-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-44-then.md @@ -6,6 +6,8 @@ all of * [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-44-then-allof-0.md "check type definition") +* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-44-then-allof-1.md "check type definition") + # then Properties | Property | Type | Required | Nullable | Defined by | @@ -37,11 +39,12 @@ unknown | Value | Explanation | | :----------- | :---------- | +| `"free"` | | | `"standard"` | | ## name -SAP Conversational AI: SAP Conversational AI is a collaborative end-to-end platform for creating chatbots. Along with conversational natural language processing (NLP) and dialog management features supported with detailed API documentation, SAP Conversational AI makes it easy to connect your bots to different messaging channels. +SAP Build Apps: SAP Build Apps is a full stack no-code development platform for creating Web and native mobile applications. Please note that an instance of Cloud Identity Services is required to successfully create a subscription. See Documentation for more information. `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-45-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-45-if-properties-name.md index 98a40aba..fa09c482 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-45-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-45-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"sap-identity-services-onboarding" +"sap-cai-onboarding" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-45-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-45-if.md index 8d9fa53f..59cdd7b1 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-45-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-45-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"sap-identity-services-onboarding" +"sap-cai-onboarding" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-45-then-allof-0-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-45-then-allof-0-if-properties-plan.md index a411afb2..126392b1 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-45-then-allof-0-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-45-then-allof-0-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"additional-tenant" +"standard" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-45-then-allof-0-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-45-then-allof-0-if.md index 56afdabb..db878dd9 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-45-then-allof-0-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-45-then-allof-0-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"additional-tenant" +"standard" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-45-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-45-then-allof-0-then.md index b691a122..1629a2b8 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-45-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-45-then-allof-0-then.md @@ -4,33 +4,17 @@ unknown # then Properties -| Property | Type | Required | Nullable | Defined by | -| :------------------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-45-then-allof-0-then-properties-plan.md "undefined#/properties/services/items/allOf/2/then/allOf/45/then/allOf/0/then/properties/plan") | -| [parameters](#parameters) | `object` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-45-then-allof-0-then-properties-parameters.md "undefined#/properties/services/items/allOf/2/then/allOf/45/then/allOf/0/then/properties/parameters") | +| Property | Type | Required | Nullable | Defined by | +| :------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-45-then-allof-0-then-properties-plan.md "undefined#/properties/services/items/allOf/2/then/allOf/45/then/allOf/0/then/properties/plan") | ## plan -application plan >additional-tenant< for >sap-identity-services-onboarding< is available in data centers: +application plan >standard< for >sap-cai-onboarding< is available in data centers: -* {'region': 'ap10', 'name': 'Australia (Sydney)'} -* {'region': 'ap11', 'name': 'Singapore'} -* {'region': 'ap12', 'name': 'South Korea (Seoul)'} -* {'region': 'ap20', 'name': 'Australia (Sydney) Azure'} -* {'region': 'ap21', 'name': 'Singapore'} -* {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} -* {'region': 'ca10', 'name': 'Canada (Montreal)'} -* {'region': 'ch20', 'name': 'cf-ch20'} * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} * {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} -* {'region': 'eu20', 'name': 'Europe (Netherlands)'} -* {'region': 'in30', 'name': 'India (Mumbai)'} -* {'region': 'jp10', 'name': 'Japan (Tokyo)'} -* {'region': 'jp20', 'name': 'Japan (Tokyo)'} * {'region': 'us10', 'name': 'US East (VA)'} -* {'region': 'us20', 'name': 'US West (WA)'} -* {'region': 'us21', 'name': 'US East (VA)'} -* {'region': 'us30', 'name': 'US Central (IA)'} `plan` @@ -45,21 +29,3 @@ application plan >additional-tenant< for >sap-identity-services-onboarding< is a ### plan Type unknown - -## parameters - - - -`parameters` - -* is required - -* Type: `object` ([Details](btpsa-usecase-properties-services-items-allof-2-then-allof-45-then-allof-0-then-properties-parameters.md)) - -* cannot be null - -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-45-then-allof-0-then-properties-parameters.md "undefined#/properties/services/items/allOf/2/then/allOf/45/then/allOf/0/then/properties/parameters") - -### parameters Type - -`object` ([Details](btpsa-usecase-properties-services-items-allof-2-then-allof-45-then-allof-0-then-properties-parameters.md)) diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-45-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-45-then-properties-plan.md index fde3f548..248cb3df 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-45-then-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-45-then-properties-plan.md @@ -6,8 +6,6 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :-------------------- | :---------- | -| `"additional-tenant"` | | -| `"connectivity"` | | -| `"default"` | | +| Value | Explanation | +| :----------- | :---------- | +| `"standard"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-45-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-45-then.md index 3e29e4c2..42330dd4 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-45-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-45-then.md @@ -6,10 +6,6 @@ all of * [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-45-then-allof-0.md "check type definition") -* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-45-then-allof-1.md "check type definition") - -* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-45-then-allof-2.md "check type definition") - # then Properties | Property | Type | Required | Nullable | Defined by | @@ -39,15 +35,13 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :-------------------- | :---------- | -| `"additional-tenant"` | | -| `"connectivity"` | | -| `"default"` | | +| Value | Explanation | +| :----------- | :---------- | +| `"standard"` | | ## name -SAP Cloud Identity Services: Cloud Identity Services provide basic capabilities for user authentication. +SAP Conversational AI: SAP Conversational AI is a collaborative end-to-end platform for creating chatbots. Along with conversational natural language processing (NLP) and dialog management features supported with detailed API documentation, SAP Conversational AI makes it easy to connect your bots to different messaging channels. `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-46-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-46-if-properties-name.md index 48333542..98a40aba 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-46-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-46-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"sapappgyver" +"sap-identity-services-onboarding" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-46-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-46-if.md index 2dfc424a..d9d430a9 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-46-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-46-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"sapappgyver" +"sap-identity-services-onboarding" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-46-then-allof-0-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-46-then-allof-0-if-properties-plan.md index 126392b1..a411afb2 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-46-then-allof-0-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-46-then-allof-0-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"standard" +"additional-tenant" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-46-then-allof-0-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-46-then-allof-0-if.md index fc8bdec5..f066cb10 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-46-then-allof-0-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-46-then-allof-0-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"standard" +"additional-tenant" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-45-then-allof-0-then-properties-parameters-properties-service-type-_enumdisplayname.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-46-then-allof-0-then-properties-parameters-properties-service-type-_enumdisplayname.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-45-then-allof-0-then-properties-parameters-properties-service-type-_enumdisplayname.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-46-then-allof-0-then-properties-parameters-properties-service-type-_enumdisplayname.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-45-then-allof-2-then-properties-parameters-properties-service-type.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-46-then-allof-0-then-properties-parameters-properties-service-type.md similarity index 87% rename from docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-45-then-allof-2-then-properties-parameters-properties-service-type.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-46-then-allof-0-then-properties-parameters-properties-service-type.md index 6407f947..d9902095 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-45-then-allof-2-then-properties-parameters-properties-service-type.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-46-then-allof-0-then-properties-parameters-properties-service-type.md @@ -1,6 +1,6 @@ ## cloud\_service Type -`string` ([Service type](btpsa-usecase-properties-services-items-allof-2-then-allof-45-then-allof-2-then-properties-parameters-properties-service-type.md)) +`string` ([Service type](btpsa-usecase-properties-services-items-allof-2-then-allof-46-then-allof-0-then-properties-parameters-properties-service-type.md)) ## cloud\_service Constraints diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-45-then-allof-0-then-properties-parameters.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-46-then-allof-0-then-properties-parameters.md similarity index 84% rename from docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-45-then-allof-0-then-properties-parameters.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-46-then-allof-0-then-properties-parameters.md index cea0df0d..ec918fcd 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-45-then-allof-0-then-properties-parameters.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-46-then-allof-0-then-properties-parameters.md @@ -1,12 +1,12 @@ ## parameters Type -`object` ([Details](btpsa-usecase-properties-services-items-allof-2-then-allof-45-then-allof-0-then-properties-parameters.md)) +`object` ([Details](btpsa-usecase-properties-services-items-allof-2-then-allof-46-then-allof-0-then-properties-parameters.md)) # parameters Properties | Property | Type | Required | Nullable | Defined by | | :------------------------------- | :------- | :------- | :------------- | :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [cloud\_service](#cloud_service) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-45-then-allof-0-then-properties-parameters-properties-service-type.md "undefined#/properties/services/items/allOf/2/then/allOf/45/then/allOf/0/then/properties/parameters/properties/cloud_service") | +| [cloud\_service](#cloud_service) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-46-then-allof-0-then-properties-parameters-properties-service-type.md "undefined#/properties/services/items/allOf/2/then/allOf/46/then/allOf/0/then/properties/parameters/properties/cloud_service") | | Additional Properties | Any | Optional | can be null | | ## cloud\_service @@ -17,15 +17,15 @@ Choose a productive or test service type from the drop down. * is optional -* Type: `string` ([Service type](btpsa-usecase-properties-services-items-allof-2-then-allof-45-then-allof-0-then-properties-parameters-properties-service-type.md)) +* Type: `string` ([Service type](btpsa-usecase-properties-services-items-allof-2-then-allof-46-then-allof-0-then-properties-parameters-properties-service-type.md)) * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-45-then-allof-0-then-properties-parameters-properties-service-type.md "undefined#/properties/services/items/allOf/2/then/allOf/45/then/allOf/0/then/properties/parameters/properties/cloud_service") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-46-then-allof-0-then-properties-parameters-properties-service-type.md "undefined#/properties/services/items/allOf/2/then/allOf/46/then/allOf/0/then/properties/parameters/properties/cloud_service") ### cloud\_service Type -`string` ([Service type](btpsa-usecase-properties-services-items-allof-2-then-allof-45-then-allof-0-then-properties-parameters-properties-service-type.md)) +`string` ([Service type](btpsa-usecase-properties-services-items-allof-2-then-allof-46-then-allof-0-then-properties-parameters-properties-service-type.md)) ### cloud\_service Constraints diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-46-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-46-then-allof-0-then.md index a72fa10b..a05ace33 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-46-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-46-then-allof-0-then.md @@ -4,15 +4,33 @@ unknown # then Properties -| Property | Type | Required | Nullable | Defined by | -| :------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-46-then-allof-0-then-properties-plan.md "undefined#/properties/services/items/allOf/2/then/allOf/46/then/allOf/0/then/properties/plan") | +| Property | Type | Required | Nullable | Defined by | +| :------------------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-46-then-allof-0-then-properties-plan.md "undefined#/properties/services/items/allOf/2/then/allOf/46/then/allOf/0/then/properties/plan") | +| [parameters](#parameters) | `object` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-46-then-allof-0-then-properties-parameters.md "undefined#/properties/services/items/allOf/2/then/allOf/46/then/allOf/0/then/properties/parameters") | ## plan -application plan >standard< for >sapappgyver< is available in data centers: +application plan >additional-tenant< for >sap-identity-services-onboarding< is available in data centers: +* {'region': 'ap10', 'name': 'Australia (Sydney)'} +* {'region': 'ap11', 'name': 'Singapore'} +* {'region': 'ap12', 'name': 'South Korea (Seoul)'} +* {'region': 'ap20', 'name': 'Australia (Sydney) Azure'} +* {'region': 'ap21', 'name': 'Singapore'} +* {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} +* {'region': 'ca10', 'name': 'Canada (Montreal)'} +* {'region': 'ch20', 'name': 'cf-ch20'} * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} +* {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} +* {'region': 'eu20', 'name': 'Europe (Netherlands)'} +* {'region': 'in30', 'name': 'India (Mumbai)'} +* {'region': 'jp10', 'name': 'Japan (Tokyo)'} +* {'region': 'jp20', 'name': 'Japan (Tokyo)'} +* {'region': 'us10', 'name': 'US East (VA)'} +* {'region': 'us20', 'name': 'US West (WA)'} +* {'region': 'us21', 'name': 'US East (VA)'} +* {'region': 'us30', 'name': 'US Central (IA)'} `plan` @@ -27,3 +45,21 @@ application plan >standard< for >sapappgyver< is available in data centers: ### plan Type unknown + +## parameters + + + +`parameters` + +* is required + +* Type: `object` ([Details](btpsa-usecase-properties-services-items-allof-2-then-allof-46-then-allof-0-then-properties-parameters.md)) + +* cannot be null + +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-46-then-allof-0-then-properties-parameters.md "undefined#/properties/services/items/allOf/2/then/allOf/46/then/allOf/0/then/properties/parameters") + +### parameters Type + +`object` ([Details](btpsa-usecase-properties-services-items-allof-2-then-allof-46-then-allof-0-then-properties-parameters.md)) diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-45-then-allof-1-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-46-then-allof-1-if-properties-plan.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-45-then-allof-1-if-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-46-then-allof-1-if-properties-plan.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-45-then-allof-2-if-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-46-then-allof-1-if-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-45-then-allof-2-if-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-46-then-allof-1-if-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-45-then-allof-1-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-46-then-allof-1-if.md similarity index 83% rename from docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-45-then-allof-1-if.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-46-then-allof-1-if.md index a528b2d0..7ee497ab 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-45-then-allof-1-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-46-then-allof-1-if.md @@ -6,7 +6,7 @@ unknown | Property | Type | Required | Nullable | Defined by | | :------------ | :------------ | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-45-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/2/then/allOf/45/then/allOf/1/if/properties/plan") | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-46-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/2/then/allOf/46/then/allOf/1/if/properties/plan") | ## plan @@ -20,7 +20,7 @@ unknown * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-45-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/2/then/allOf/45/then/allOf/1/if/properties/plan") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-46-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/2/then/allOf/46/then/allOf/1/if/properties/plan") ### plan Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-45-then-allof-1-then-properties-parameters-properties-service-type-_enumdisplayname.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-46-then-allof-1-then-properties-parameters-properties-service-type-_enumdisplayname.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-45-then-allof-1-then-properties-parameters-properties-service-type-_enumdisplayname.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-46-then-allof-1-then-properties-parameters-properties-service-type-_enumdisplayname.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-45-then-allof-0-then-properties-parameters-properties-service-type.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-46-then-allof-1-then-properties-parameters-properties-service-type.md similarity index 87% rename from docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-45-then-allof-0-then-properties-parameters-properties-service-type.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-46-then-allof-1-then-properties-parameters-properties-service-type.md index 69ac238e..4768ef62 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-45-then-allof-0-then-properties-parameters-properties-service-type.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-46-then-allof-1-then-properties-parameters-properties-service-type.md @@ -1,6 +1,6 @@ ## cloud\_service Type -`string` ([Service type](btpsa-usecase-properties-services-items-allof-2-then-allof-45-then-allof-0-then-properties-parameters-properties-service-type.md)) +`string` ([Service type](btpsa-usecase-properties-services-items-allof-2-then-allof-46-then-allof-1-then-properties-parameters-properties-service-type.md)) ## cloud\_service Constraints diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-45-then-allof-1-then-properties-parameters.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-46-then-allof-1-then-properties-parameters.md similarity index 84% rename from docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-45-then-allof-1-then-properties-parameters.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-46-then-allof-1-then-properties-parameters.md index 28a942fa..b7f7401e 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-45-then-allof-1-then-properties-parameters.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-46-then-allof-1-then-properties-parameters.md @@ -1,12 +1,12 @@ ## parameters Type -`object` ([Details](btpsa-usecase-properties-services-items-allof-2-then-allof-45-then-allof-1-then-properties-parameters.md)) +`object` ([Details](btpsa-usecase-properties-services-items-allof-2-then-allof-46-then-allof-1-then-properties-parameters.md)) # parameters Properties | Property | Type | Required | Nullable | Defined by | | :------------------------------- | :------- | :------- | :------------- | :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [cloud\_service](#cloud_service) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-45-then-allof-1-then-properties-parameters-properties-service-type.md "undefined#/properties/services/items/allOf/2/then/allOf/45/then/allOf/1/then/properties/parameters/properties/cloud_service") | +| [cloud\_service](#cloud_service) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-46-then-allof-1-then-properties-parameters-properties-service-type.md "undefined#/properties/services/items/allOf/2/then/allOf/46/then/allOf/1/then/properties/parameters/properties/cloud_service") | | Additional Properties | Any | Optional | can be null | | ## cloud\_service @@ -17,15 +17,15 @@ Choose a productive or test service type from the drop down. * is optional -* Type: `string` ([Service type](btpsa-usecase-properties-services-items-allof-2-then-allof-45-then-allof-1-then-properties-parameters-properties-service-type.md)) +* Type: `string` ([Service type](btpsa-usecase-properties-services-items-allof-2-then-allof-46-then-allof-1-then-properties-parameters-properties-service-type.md)) * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-45-then-allof-1-then-properties-parameters-properties-service-type.md "undefined#/properties/services/items/allOf/2/then/allOf/45/then/allOf/1/then/properties/parameters/properties/cloud_service") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-46-then-allof-1-then-properties-parameters-properties-service-type.md "undefined#/properties/services/items/allOf/2/then/allOf/46/then/allOf/1/then/properties/parameters/properties/cloud_service") ### cloud\_service Type -`string` ([Service type](btpsa-usecase-properties-services-items-allof-2-then-allof-45-then-allof-1-then-properties-parameters-properties-service-type.md)) +`string` ([Service type](btpsa-usecase-properties-services-items-allof-2-then-allof-46-then-allof-1-then-properties-parameters-properties-service-type.md)) ### cloud\_service Constraints diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-45-then-allof-1-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-46-then-allof-1-then-properties-plan.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-45-then-allof-1-then-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-46-then-allof-1-then-properties-plan.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-45-then-allof-2-then-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-46-then-allof-1-then-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-45-then-allof-2-then-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-46-then-allof-1-then-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-45-then-allof-1-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-46-then-allof-1-then.md similarity index 78% rename from docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-45-then-allof-1-then.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-46-then-allof-1-then.md index 76e01d13..06081ad0 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-45-then-allof-1-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-46-then-allof-1-then.md @@ -6,8 +6,8 @@ unknown | Property | Type | Required | Nullable | Defined by | | :------------------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-45-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/2/then/allOf/45/then/allOf/1/then/properties/plan") | -| [parameters](#parameters) | `object` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-45-then-allof-1-then-properties-parameters.md "undefined#/properties/services/items/allOf/2/then/allOf/45/then/allOf/1/then/properties/parameters") | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-46-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/2/then/allOf/46/then/allOf/1/then/properties/plan") | +| [parameters](#parameters) | `object` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-46-then-allof-1-then-properties-parameters.md "undefined#/properties/services/items/allOf/2/then/allOf/46/then/allOf/1/then/properties/parameters") | ## plan @@ -33,7 +33,7 @@ application plan >connectivity< for >sap-identity-services-onboarding< is availa * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-45-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/2/then/allOf/45/then/allOf/1/then/properties/plan") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-46-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/2/then/allOf/46/then/allOf/1/then/properties/plan") ### plan Type @@ -47,12 +47,12 @@ unknown * is required -* Type: `object` ([Details](btpsa-usecase-properties-services-items-allof-2-then-allof-45-then-allof-1-then-properties-parameters.md)) +* Type: `object` ([Details](btpsa-usecase-properties-services-items-allof-2-then-allof-46-then-allof-1-then-properties-parameters.md)) * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-45-then-allof-1-then-properties-parameters.md "undefined#/properties/services/items/allOf/2/then/allOf/45/then/allOf/1/then/properties/parameters") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-46-then-allof-1-then-properties-parameters.md "undefined#/properties/services/items/allOf/2/then/allOf/46/then/allOf/1/then/properties/parameters") ### parameters Type -`object` ([Details](btpsa-usecase-properties-services-items-allof-2-then-allof-45-then-allof-1-then-properties-parameters.md)) +`object` ([Details](btpsa-usecase-properties-services-items-allof-2-then-allof-46-then-allof-1-then-properties-parameters.md)) diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-43-then-allof-1.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-46-then-allof-1.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-43-then-allof-1.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-46-then-allof-1.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-45-then-allof-2-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-46-then-allof-2-if-properties-plan.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-45-then-allof-2-if-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-46-then-allof-2-if-properties-plan.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-47-then-allof-1-if-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-46-then-allof-2-if-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-47-then-allof-1-if-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-46-then-allof-2-if-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-45-then-allof-2-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-46-then-allof-2-if.md similarity index 83% rename from docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-45-then-allof-2-if.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-46-then-allof-2-if.md index d1378421..ae2b0e9c 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-45-then-allof-2-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-46-then-allof-2-if.md @@ -6,7 +6,7 @@ unknown | Property | Type | Required | Nullable | Defined by | | :------------ | :------------ | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-45-then-allof-2-if-properties-plan.md "undefined#/properties/services/items/allOf/2/then/allOf/45/then/allOf/2/if/properties/plan") | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-46-then-allof-2-if-properties-plan.md "undefined#/properties/services/items/allOf/2/then/allOf/46/then/allOf/2/if/properties/plan") | ## plan @@ -20,7 +20,7 @@ unknown * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-45-then-allof-2-if-properties-plan.md "undefined#/properties/services/items/allOf/2/then/allOf/45/then/allOf/2/if/properties/plan") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-46-then-allof-2-if-properties-plan.md "undefined#/properties/services/items/allOf/2/then/allOf/46/then/allOf/2/if/properties/plan") ### plan Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-45-then-allof-2-then-properties-parameters-properties-service-type-_enumdisplayname.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-46-then-allof-2-then-properties-parameters-properties-service-type-_enumdisplayname.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-45-then-allof-2-then-properties-parameters-properties-service-type-_enumdisplayname.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-46-then-allof-2-then-properties-parameters-properties-service-type-_enumdisplayname.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-45-then-allof-1-then-properties-parameters-properties-service-type.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-46-then-allof-2-then-properties-parameters-properties-service-type.md similarity index 87% rename from docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-45-then-allof-1-then-properties-parameters-properties-service-type.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-46-then-allof-2-then-properties-parameters-properties-service-type.md index 3d680690..eafd14be 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-45-then-allof-1-then-properties-parameters-properties-service-type.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-46-then-allof-2-then-properties-parameters-properties-service-type.md @@ -1,6 +1,6 @@ ## cloud\_service Type -`string` ([Service type](btpsa-usecase-properties-services-items-allof-2-then-allof-45-then-allof-1-then-properties-parameters-properties-service-type.md)) +`string` ([Service type](btpsa-usecase-properties-services-items-allof-2-then-allof-46-then-allof-2-then-properties-parameters-properties-service-type.md)) ## cloud\_service Constraints diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-45-then-allof-2-then-properties-parameters.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-46-then-allof-2-then-properties-parameters.md similarity index 84% rename from docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-45-then-allof-2-then-properties-parameters.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-46-then-allof-2-then-properties-parameters.md index 57030255..a8105927 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-45-then-allof-2-then-properties-parameters.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-46-then-allof-2-then-properties-parameters.md @@ -1,12 +1,12 @@ ## parameters Type -`object` ([Details](btpsa-usecase-properties-services-items-allof-2-then-allof-45-then-allof-2-then-properties-parameters.md)) +`object` ([Details](btpsa-usecase-properties-services-items-allof-2-then-allof-46-then-allof-2-then-properties-parameters.md)) # parameters Properties | Property | Type | Required | Nullable | Defined by | | :------------------------------- | :------- | :------- | :------------- | :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [cloud\_service](#cloud_service) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-45-then-allof-2-then-properties-parameters-properties-service-type.md "undefined#/properties/services/items/allOf/2/then/allOf/45/then/allOf/2/then/properties/parameters/properties/cloud_service") | +| [cloud\_service](#cloud_service) | `string` | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-46-then-allof-2-then-properties-parameters-properties-service-type.md "undefined#/properties/services/items/allOf/2/then/allOf/46/then/allOf/2/then/properties/parameters/properties/cloud_service") | | Additional Properties | Any | Optional | can be null | | ## cloud\_service @@ -17,15 +17,15 @@ Choose a productive or test service type from the drop down. * is optional -* Type: `string` ([Service type](btpsa-usecase-properties-services-items-allof-2-then-allof-45-then-allof-2-then-properties-parameters-properties-service-type.md)) +* Type: `string` ([Service type](btpsa-usecase-properties-services-items-allof-2-then-allof-46-then-allof-2-then-properties-parameters-properties-service-type.md)) * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-45-then-allof-2-then-properties-parameters-properties-service-type.md "undefined#/properties/services/items/allOf/2/then/allOf/45/then/allOf/2/then/properties/parameters/properties/cloud_service") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-46-then-allof-2-then-properties-parameters-properties-service-type.md "undefined#/properties/services/items/allOf/2/then/allOf/46/then/allOf/2/then/properties/parameters/properties/cloud_service") ### cloud\_service Type -`string` ([Service type](btpsa-usecase-properties-services-items-allof-2-then-allof-45-then-allof-2-then-properties-parameters-properties-service-type.md)) +`string` ([Service type](btpsa-usecase-properties-services-items-allof-2-then-allof-46-then-allof-2-then-properties-parameters-properties-service-type.md)) ### cloud\_service Constraints diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-45-then-allof-2-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-46-then-allof-2-then-properties-plan.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-45-then-allof-2-then-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-46-then-allof-2-then-properties-plan.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-47-then-allof-1-then-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-46-then-allof-2-then-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-47-then-allof-1-then-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-46-then-allof-2-then-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-45-then-allof-2-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-46-then-allof-2-then.md similarity index 80% rename from docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-45-then-allof-2-then.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-46-then-allof-2-then.md index 3e93c112..f7d6d496 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-45-then-allof-2-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-46-then-allof-2-then.md @@ -6,8 +6,8 @@ unknown | Property | Type | Required | Nullable | Defined by | | :------------------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-45-then-allof-2-then-properties-plan.md "undefined#/properties/services/items/allOf/2/then/allOf/45/then/allOf/2/then/properties/plan") | -| [parameters](#parameters) | `object` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-45-then-allof-2-then-properties-parameters.md "undefined#/properties/services/items/allOf/2/then/allOf/45/then/allOf/2/then/properties/parameters") | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-46-then-allof-2-then-properties-plan.md "undefined#/properties/services/items/allOf/2/then/allOf/46/then/allOf/2/then/properties/plan") | +| [parameters](#parameters) | `object` | Required | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-46-then-allof-2-then-properties-parameters.md "undefined#/properties/services/items/allOf/2/then/allOf/46/then/allOf/2/then/properties/parameters") | ## plan @@ -40,7 +40,7 @@ application plan >default< for >sap-identity-services-onboarding< is available i * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-45-then-allof-2-then-properties-plan.md "undefined#/properties/services/items/allOf/2/then/allOf/45/then/allOf/2/then/properties/plan") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-46-then-allof-2-then-properties-plan.md "undefined#/properties/services/items/allOf/2/then/allOf/46/then/allOf/2/then/properties/plan") ### plan Type @@ -54,12 +54,12 @@ unknown * is required -* Type: `object` ([Details](btpsa-usecase-properties-services-items-allof-2-then-allof-45-then-allof-2-then-properties-parameters.md)) +* Type: `object` ([Details](btpsa-usecase-properties-services-items-allof-2-then-allof-46-then-allof-2-then-properties-parameters.md)) * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-45-then-allof-2-then-properties-parameters.md "undefined#/properties/services/items/allOf/2/then/allOf/45/then/allOf/2/then/properties/parameters") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-46-then-allof-2-then-properties-parameters.md "undefined#/properties/services/items/allOf/2/then/allOf/46/then/allOf/2/then/properties/parameters") ### parameters Type -`object` ([Details](btpsa-usecase-properties-services-items-allof-2-then-allof-45-then-allof-2-then-properties-parameters.md)) +`object` ([Details](btpsa-usecase-properties-services-items-allof-2-then-allof-46-then-allof-2-then-properties-parameters.md)) diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-45-then-allof-2.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-46-then-allof-2.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-45-then-allof-2.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-46-then-allof-2.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-46-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-46-then-properties-plan.md index 248cb3df..fde3f548 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-46-then-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-46-then-properties-plan.md @@ -6,6 +6,8 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :----------- | :---------- | -| `"standard"` | | +| Value | Explanation | +| :-------------------- | :---------- | +| `"additional-tenant"` | | +| `"connectivity"` | | +| `"default"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-46-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-46-then.md index 5a8ba9bb..3c42db5f 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-46-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-46-then.md @@ -6,6 +6,10 @@ all of * [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-46-then-allof-0.md "check type definition") +* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-46-then-allof-1.md "check type definition") + +* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-46-then-allof-2.md "check type definition") + # then Properties | Property | Type | Required | Nullable | Defined by | @@ -35,13 +39,15 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :----------- | :---------- | -| `"standard"` | | +| Value | Explanation | +| :-------------------- | :---------- | +| `"additional-tenant"` | | +| `"connectivity"` | | +| `"default"` | | ## name -SAP AppGyver: Low-code / no-code tools from SAP that accelerate SAP business applications development. +SAP Cloud Identity Services: Cloud Identity Services provide basic capabilities for user authentication. `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-47-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-47-if-properties-name.md index 67b31cdf..48333542 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-47-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-47-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"sapappstudio" +"sapappgyver" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-47-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-47-if.md index 0b793d85..a75222a1 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-47-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-47-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"sapappstudio" +"sapappgyver" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-47-then-allof-0-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-47-then-allof-0-if-properties-plan.md index c97f5143..126392b1 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-47-then-allof-0-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-47-then-allof-0-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"free" +"standard" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-47-then-allof-0-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-47-then-allof-0-if.md index 20f49944..b44d3342 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-47-then-allof-0-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-47-then-allof-0-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"free" +"standard" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-47-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-47-then-allof-0-then.md index 9e731742..cfcfb35e 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-47-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-47-then-allof-0-then.md @@ -10,24 +10,9 @@ unknown ## plan -application plan >free< for >sapappstudio< is available in data centers: - -* {'region': 'ap10', 'name': 'Australia (Sydney)'} -* {'region': 'ap11', 'name': 'Singapore'} -* {'region': 'ap12', 'name': 'South Korea (Seoul)'} -* {'region': 'ap20', 'name': 'Australia (Sydney) Azure'} -* {'region': 'ap21', 'name': 'Singapore'} -* {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} -* {'region': 'ca10', 'name': 'Canada (Montreal)'} +application plan >standard< for >sapappgyver< is available in data centers: + * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} -* {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} -* {'region': 'eu20', 'name': 'Europe (Netherlands)'} -* {'region': 'jp10', 'name': 'Japan (Tokyo)'} -* {'region': 'jp20', 'name': 'Japan (Tokyo)'} -* {'region': 'us10', 'name': 'US East (VA)'} -* {'region': 'us20', 'name': 'US West (WA)'} -* {'region': 'us21', 'name': 'US East (VA)'} -* {'region': 'us30', 'name': 'US Central (IA)'} `plan` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-47-then-allof-1-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-47-then-allof-1-if-properties-plan.md deleted file mode 100644 index d00db6bf..00000000 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-47-then-allof-1-if-properties-plan.md +++ /dev/null @@ -1,11 +0,0 @@ -## plan Type - -unknown - -## plan Constraints - -**constant**: the value of this property must be equal to: - -```json -"standard-edition" -``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-47-then-allof-1-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-47-then-allof-1-if.md deleted file mode 100644 index 0679596b..00000000 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-47-then-allof-1-if.md +++ /dev/null @@ -1,35 +0,0 @@ -## if Type - -unknown - -# if Properties - -| Property | Type | Required | Nullable | Defined by | -| :------------ | :------------ | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-47-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/2/then/allOf/47/then/allOf/1/if/properties/plan") | - -## plan - - - -`plan` - -* is optional - -* Type: unknown - -* cannot be null - -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-47-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/2/then/allOf/47/then/allOf/1/if/properties/plan") - -### plan Type - -unknown - -### plan Constraints - -**constant**: the value of this property must be equal to: - -```json -"standard-edition" -``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-47-then-allof-1-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-47-then-allof-1-then.md deleted file mode 100644 index cffa6b8e..00000000 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-47-then-allof-1-then.md +++ /dev/null @@ -1,44 +0,0 @@ -## then Type - -unknown - -# then Properties - -| Property | Type | Required | Nullable | Defined by | -| :------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-47-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/2/then/allOf/47/then/allOf/1/then/properties/plan") | - -## plan - -application plan >standard-edition< for >sapappstudio< is available in data centers: - -* {'region': 'ap10', 'name': 'Australia (Sydney)'} -* {'region': 'ap11', 'name': 'Singapore'} -* {'region': 'ap12', 'name': 'South Korea (Seoul)'} -* {'region': 'ap20', 'name': 'Australia (Sydney) Azure'} -* {'region': 'ap21', 'name': 'Singapore'} -* {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} -* {'region': 'ca10', 'name': 'Canada (Montreal)'} -* {'region': 'eu10', 'name': 'Europe (Frankfurt)'} -* {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} -* {'region': 'eu20', 'name': 'Europe (Netherlands)'} -* {'region': 'jp10', 'name': 'Japan (Tokyo)'} -* {'region': 'jp20', 'name': 'Japan (Tokyo)'} -* {'region': 'us10', 'name': 'US East (VA)'} -* {'region': 'us20', 'name': 'US West (WA)'} -* {'region': 'us21', 'name': 'US East (VA)'} -* {'region': 'us30', 'name': 'US Central (IA)'} - -`plan` - -* is optional - -* Type: unknown - -* cannot be null - -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-47-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/2/then/allOf/47/then/allOf/1/then/properties/plan") - -### plan Type - -unknown diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-47-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-47-then-properties-plan.md index a95da891..248cb3df 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-47-then-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-47-then-properties-plan.md @@ -6,7 +6,6 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :------------------- | :---------- | -| `"free"` | | -| `"standard-edition"` | | +| Value | Explanation | +| :----------- | :---------- | +| `"standard"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-47-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-47-then.md index cecdc723..bb9950d6 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-47-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-47-then.md @@ -6,8 +6,6 @@ all of * [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-47-then-allof-0.md "check type definition") -* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-47-then-allof-1.md "check type definition") - # then Properties | Property | Type | Required | Nullable | Defined by | @@ -37,14 +35,13 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :------------------- | :---------- | -| `"free"` | | -| `"standard-edition"` | | +| Value | Explanation | +| :----------- | :---------- | +| `"standard"` | | ## name -SAP Business Application Studio: SAP Business Application Studio is the next generation of SAP Web IDE, offering a modular development environment tailored for efficient development of business applications for the SAP Intelligent Enterprise. It provides pre-configured environments where you can develop, build, test and run using pre-installed runtimes and tools tailored for key scenarios such as: S/4HANA extensions, full stack business applications, Fiori applications and more. It supports quick integration with SAP solutions and services to allow building smarter and more intelligent applications. +SAP AppGyver: Low-code / no-code tools from SAP that accelerate SAP business applications development. `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-48-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-48-if-properties-name.md index 017f47b1..67b31cdf 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-48-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-48-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"SAPLaunchpad" +"sapappstudio" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-48-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-48-if.md index 832b359c..0747d53e 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-48-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-48-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"SAPLaunchpad" +"sapappstudio" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-48-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-48-then-allof-0-then.md index 19b311d2..0f735d46 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-48-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-48-then-allof-0-then.md @@ -10,7 +10,7 @@ unknown ## plan -application plan >free< for >SAPLaunchpad< is available in data centers: +application plan >free< for >sapappstudio< is available in data centers: * {'region': 'ap10', 'name': 'Australia (Sydney)'} * {'region': 'ap11', 'name': 'Singapore'} @@ -22,7 +22,6 @@ application plan >free< for >SAPLaunchpad< is available in data centers: * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} * {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} * {'region': 'eu20', 'name': 'Europe (Netherlands)'} -* {'region': 'eu30', 'name': 'Europe (Frankfurt)'} * {'region': 'jp10', 'name': 'Japan (Tokyo)'} * {'region': 'jp20', 'name': 'Japan (Tokyo)'} * {'region': 'us10', 'name': 'US East (VA)'} diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-48-then-allof-1-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-48-then-allof-1-if-properties-plan.md index 126392b1..d00db6bf 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-48-then-allof-1-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-48-then-allof-1-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"standard" +"standard-edition" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-48-then-allof-1-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-48-then-allof-1-if.md index 57cd6966..83fe949f 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-48-then-allof-1-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-48-then-allof-1-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"standard" +"standard-edition" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-48-then-allof-1-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-48-then-allof-1-then.md index fbf31059..62c104a7 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-48-then-allof-1-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-48-then-allof-1-then.md @@ -10,7 +10,7 @@ unknown ## plan -application plan >standard< for >SAPLaunchpad< is available in data centers: +application plan >standard-edition< for >sapappstudio< is available in data centers: * {'region': 'ap10', 'name': 'Australia (Sydney)'} * {'region': 'ap11', 'name': 'Singapore'} @@ -22,8 +22,6 @@ application plan >standard< for >SAPLaunchpad< is available in data centers: * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} * {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} * {'region': 'eu20', 'name': 'Europe (Netherlands)'} -* {'region': 'eu30', 'name': 'Europe (Frankfurt)'} -* {'region': 'in30', 'name': 'India (Mumbai)'} * {'region': 'jp10', 'name': 'Japan (Tokyo)'} * {'region': 'jp20', 'name': 'Japan (Tokyo)'} * {'region': 'us10', 'name': 'US East (VA)'} diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-48-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-48-then-properties-plan.md index 49c8bb8c..a95da891 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-48-then-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-48-then-properties-plan.md @@ -6,7 +6,7 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :----------- | :---------- | -| `"free"` | | -| `"standard"` | | +| Value | Explanation | +| :------------------- | :---------- | +| `"free"` | | +| `"standard-edition"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-48-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-48-then.md index 935d489b..07523da5 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-48-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-48-then.md @@ -37,14 +37,14 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :----------- | :---------- | -| `"free"` | | -| `"standard"` | | +| Value | Explanation | +| :------------------- | :---------- | +| `"free"` | | +| `"standard-edition"` | | ## name -SAP Build Work Zone, standard edition: Provides users with a central point of access to applications from different sources. Note: SAP Launchpad service was recently renamed to SAP Build Work Zone, standard edition. +SAP Business Application Studio: SAP Business Application Studio is the next generation of SAP Web IDE, offering a modular development environment tailored for efficient development of business applications for the SAP Intelligent Enterprise. It provides pre-configured environments where you can develop, build, test and run using pre-installed runtimes and tools tailored for key scenarios such as: S/4HANA extensions, full stack business applications, Fiori applications and more. It supports quick integration with SAP solutions and services to allow building smarter and more intelligent applications. `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-49-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-49-if-properties-name.md index e8ce73e0..017f47b1 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-49-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-49-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"SAPWebAnalytics" +"SAPLaunchpad" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-49-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-49-if.md index 3bda8fcd..eda5e987 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-49-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-49-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"SAPWebAnalytics" +"SAPLaunchpad" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-49-then-allof-0-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-49-then-allof-0-if-properties-plan.md index 126392b1..c97f5143 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-49-then-allof-0-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-49-then-allof-0-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"standard" +"free" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-49-then-allof-0-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-49-then-allof-0-if.md index 4c42e245..5357d8d7 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-49-then-allof-0-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-49-then-allof-0-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"standard" +"free" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-49-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-49-then-allof-0-then.md index 3a902bb1..64100eb8 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-49-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-49-then-allof-0-then.md @@ -10,17 +10,25 @@ unknown ## plan -application plan >standard< for >SAPWebAnalytics< is available in data centers: +application plan >free< for >SAPLaunchpad< is available in data centers: * {'region': 'ap10', 'name': 'Australia (Sydney)'} +* {'region': 'ap11', 'name': 'Singapore'} +* {'region': 'ap12', 'name': 'South Korea (Seoul)'} +* {'region': 'ap20', 'name': 'Australia (Sydney) Azure'} * {'region': 'ap21', 'name': 'Singapore'} +* {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} +* {'region': 'ca10', 'name': 'Canada (Montreal)'} * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} +* {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} * {'region': 'eu20', 'name': 'Europe (Netherlands)'} +* {'region': 'eu30', 'name': 'Europe (Frankfurt)'} * {'region': 'jp10', 'name': 'Japan (Tokyo)'} * {'region': 'jp20', 'name': 'Japan (Tokyo)'} * {'region': 'us10', 'name': 'US East (VA)'} * {'region': 'us20', 'name': 'US West (WA)'} * {'region': 'us21', 'name': 'US East (VA)'} +* {'region': 'us30', 'name': 'US Central (IA)'} `plan` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-49-then-allof-1-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-49-then-allof-1-if-properties-plan.md new file mode 100644 index 00000000..126392b1 --- /dev/null +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-49-then-allof-1-if-properties-plan.md @@ -0,0 +1,11 @@ +## plan Type + +unknown + +## plan Constraints + +**constant**: the value of this property must be equal to: + +```json +"standard" +``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-50-then-allof-1-if-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-49-then-allof-1-if-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-50-then-allof-1-if-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-49-then-allof-1-if-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-30-then-allof-1-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-49-then-allof-1-if.md similarity index 82% rename from docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-30-then-allof-1-if.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-49-then-allof-1-if.md index d9e08b0e..8c4b8af3 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-30-then-allof-1-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-49-then-allof-1-if.md @@ -6,7 +6,7 @@ unknown | Property | Type | Required | Nullable | Defined by | | :------------ | :------------ | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-30-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/2/then/allOf/30/then/allOf/1/if/properties/plan") | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-49-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/2/then/allOf/49/then/allOf/1/if/properties/plan") | ## plan @@ -20,7 +20,7 @@ unknown * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-30-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/2/then/allOf/30/then/allOf/1/if/properties/plan") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-49-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/2/then/allOf/49/then/allOf/1/if/properties/plan") ### plan Type @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"mrtr" +"standard" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-47-then-allof-1-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-49-then-allof-1-then-properties-plan.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-47-then-allof-1-then-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-49-then-allof-1-then-properties-plan.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-50-then-allof-1-then-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-49-then-allof-1-then-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-50-then-allof-1-then-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-49-then-allof-1-then-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-24-then-allof-1-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-49-then-allof-1-then.md similarity index 85% rename from docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-24-then-allof-1-then.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-49-then-allof-1-then.md index 56d45040..bc2d62b8 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-24-then-allof-1-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-49-then-allof-1-then.md @@ -6,11 +6,11 @@ unknown | Property | Type | Required | Nullable | Defined by | | :------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-24-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/2/then/allOf/24/then/allOf/1/then/properties/plan") | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-49-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/2/then/allOf/49/then/allOf/1/then/properties/plan") | ## plan -application plan >free< for >integrationsuite< is available in data centers: +application plan >standard< for >SAPLaunchpad< is available in data centers: * {'region': 'ap10', 'name': 'Australia (Sydney)'} * {'region': 'ap11', 'name': 'Singapore'} @@ -19,7 +19,6 @@ application plan >free< for >integrationsuite< is available in data centers: * {'region': 'ap21', 'name': 'Singapore'} * {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} * {'region': 'ca10', 'name': 'Canada (Montreal)'} -* {'region': 'ch20', 'name': 'cf-ch20'} * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} * {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} * {'region': 'eu20', 'name': 'Europe (Netherlands)'} @@ -40,7 +39,7 @@ application plan >free< for >integrationsuite< is available in data centers: * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-24-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/2/then/allOf/24/then/allOf/1/then/properties/plan") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-49-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/2/then/allOf/49/then/allOf/1/then/properties/plan") ### plan Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-45-then-allof-1.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-49-then-allof-1.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-45-then-allof-1.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-49-then-allof-1.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-49-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-49-then-properties-plan.md index 248cb3df..49c8bb8c 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-49-then-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-49-then-properties-plan.md @@ -8,4 +8,5 @@ unknown | Value | Explanation | | :----------- | :---------- | +| `"free"` | | | `"standard"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-49-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-49-then.md index 37e075a4..98d482ea 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-49-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-49-then.md @@ -6,6 +6,8 @@ all of * [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-49-then-allof-0.md "check type definition") +* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-49-then-allof-1.md "check type definition") + # then Properties | Property | Type | Required | Nullable | Defined by | @@ -37,11 +39,12 @@ unknown | Value | Explanation | | :----------- | :---------- | +| `"free"` | | | `"standard"` | | ## name -SAP Web Analytics: SAP Web Analytics enables the collection and analysis of website data for understanding and optimizing web usage to measure organizational goals, drive strategy and improve the user's experience. +SAP Build Work Zone, standard edition: Provides users with a central point of access to applications from different sources. Note: SAP Launchpad service was recently renamed to SAP Build Work Zone, standard edition. `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-50-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-50-if-properties-name.md index b4c2cbfe..e8ce73e0 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-50-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-50-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"SAPWorkZone" +"SAPWebAnalytics" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-50-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-50-if.md index cdce6927..cd784ac4 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-50-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-50-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"SAPWorkZone" +"SAPWebAnalytics" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-50-then-allof-0-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-50-then-allof-0-if-properties-plan.md index 9a7498b5..126392b1 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-50-then-allof-0-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-50-then-allof-0-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"advanced" +"standard" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-50-then-allof-0-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-50-then-allof-0-if.md index 8f3d80c8..d51af212 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-50-then-allof-0-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-50-then-allof-0-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"advanced" +"standard" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-50-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-50-then-allof-0-then.md index cae890a7..3c36db62 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-50-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-50-then-allof-0-then.md @@ -10,15 +10,11 @@ unknown ## plan -application plan >advanced< for >SAPWorkZone< is available in data centers: +application plan >standard< for >SAPWebAnalytics< is available in data centers: * {'region': 'ap10', 'name': 'Australia (Sydney)'} -* {'region': 'ap11', 'name': 'Singapore'} * {'region': 'ap21', 'name': 'Singapore'} -* {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} -* {'region': 'ca10', 'name': 'Canada (Montreal)'} * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} -* {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} * {'region': 'eu20', 'name': 'Europe (Netherlands)'} * {'region': 'jp10', 'name': 'Japan (Tokyo)'} * {'region': 'jp20', 'name': 'Japan (Tokyo)'} diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-50-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-50-then-properties-plan.md index 8bd34093..248cb3df 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-50-then-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-50-then-properties-plan.md @@ -8,5 +8,4 @@ unknown | Value | Explanation | | :----------- | :---------- | -| `"advanced"` | | | `"standard"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-50-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-50-then.md index 41da9225..80d18409 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-50-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-50-then.md @@ -6,8 +6,6 @@ all of * [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-50-then-allof-0.md "check type definition") -* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-50-then-allof-1.md "check type definition") - # then Properties | Property | Type | Required | Nullable | Defined by | @@ -39,12 +37,11 @@ unknown | Value | Explanation | | :----------- | :---------- | -| `"advanced"` | | | `"standard"` | | ## name -SAP Build Work Zone, advanced edition: SAP Build Work Zone, advanced edition lets you build digital workplace solutions to increase user productivity and engagement. It centralizes access to relevant business applications, processes, information, and communication in a unified entry point that your users can access from any device. Note: SAP Work Zone was recently renamed to SAP Build Work Zone, advanced edition. +SAP Web Analytics: SAP Web Analytics enables the collection and analysis of website data for understanding and optimizing web usage to measure organizational goals, drive strategy and improve the user's experience. `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-51-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-51-if-properties-name.md index 4b5fad12..b4c2cbfe 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-51-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-51-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"sdm-web" +"SAPWorkZone" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-51-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-51-if.md index 287ced0f..4864761f 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-51-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-51-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"sdm-web" +"SAPWorkZone" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-51-then-allof-0-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-51-then-allof-0-if-properties-plan.md index 126392b1..9a7498b5 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-51-then-allof-0-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-51-then-allof-0-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"standard" +"advanced" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-51-then-allof-0-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-51-then-allof-0-if.md index 777d2735..71cba706 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-51-then-allof-0-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-51-then-allof-0-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"standard" +"advanced" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-51-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-51-then-allof-0-then.md index 55633615..e16861df 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-51-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-51-then-allof-0-then.md @@ -10,25 +10,21 @@ unknown ## plan -application plan >standard< for >sdm-web< is available in data centers: +application plan >advanced< for >SAPWorkZone< is available in data centers: * {'region': 'ap10', 'name': 'Australia (Sydney)'} * {'region': 'ap11', 'name': 'Singapore'} -* {'region': 'ap12', 'name': 'South Korea (Seoul)'} -* {'region': 'ap20', 'name': 'Australia (Sydney) Azure'} * {'region': 'ap21', 'name': 'Singapore'} * {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} * {'region': 'ca10', 'name': 'Canada (Montreal)'} * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} * {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} * {'region': 'eu20', 'name': 'Europe (Netherlands)'} -* {'region': 'eu30', 'name': 'Europe (Frankfurt)'} * {'region': 'jp10', 'name': 'Japan (Tokyo)'} * {'region': 'jp20', 'name': 'Japan (Tokyo)'} * {'region': 'us10', 'name': 'US East (VA)'} * {'region': 'us20', 'name': 'US West (WA)'} * {'region': 'us21', 'name': 'US East (VA)'} -* {'region': 'us30', 'name': 'US Central (IA)'} `plan` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-51-then-allof-1-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-51-then-allof-1-if-properties-plan.md new file mode 100644 index 00000000..126392b1 --- /dev/null +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-51-then-allof-1-if-properties-plan.md @@ -0,0 +1,11 @@ +## plan Type + +unknown + +## plan Constraints + +**constant**: the value of this property must be equal to: + +```json +"standard" +``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-52-then-allof-1-if-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-51-then-allof-1-if-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-52-then-allof-1-if-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-51-then-allof-1-if-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-51-then-allof-1-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-51-then-allof-1-if.md new file mode 100644 index 00000000..7bb37ab3 --- /dev/null +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-51-then-allof-1-if.md @@ -0,0 +1,35 @@ +## if Type + +unknown + +# if Properties + +| Property | Type | Required | Nullable | Defined by | +| :------------ | :------------ | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-51-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/2/then/allOf/51/then/allOf/1/if/properties/plan") | + +## plan + + + +`plan` + +* is optional + +* Type: unknown + +* cannot be null + +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-51-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/2/then/allOf/51/then/allOf/1/if/properties/plan") + +### plan Type + +unknown + +### plan Constraints + +**constant**: the value of this property must be equal to: + +```json +"standard" +``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-50-then-allof-1-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-51-then-allof-1-then-properties-plan.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-50-then-allof-1-then-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-51-then-allof-1-then-properties-plan.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-52-then-allof-1-then-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-51-then-allof-1-then-properties.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-52-then-allof-1-then-properties.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-51-then-allof-1-then-properties.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-50-then-allof-1-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-51-then-allof-1-then.md similarity index 88% rename from docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-50-then-allof-1-then.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-51-then-allof-1-then.md index cc5967dd..fff79224 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-50-then-allof-1-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-51-then-allof-1-then.md @@ -6,7 +6,7 @@ unknown | Property | Type | Required | Nullable | Defined by | | :------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-50-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/2/then/allOf/50/then/allOf/1/then/properties/plan") | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-51-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/2/then/allOf/51/then/allOf/1/then/properties/plan") | ## plan @@ -34,7 +34,7 @@ application plan >standard< for >SAPWorkZone< is available in data centers: * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-50-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/2/then/allOf/50/then/allOf/1/then/properties/plan") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-51-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/2/then/allOf/51/then/allOf/1/then/properties/plan") ### plan Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-47-then-allof-1.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-51-then-allof-1.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-47-then-allof-1.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-51-then-allof-1.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-51-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-51-then-properties-plan.md index 248cb3df..8bd34093 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-51-then-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-51-then-properties-plan.md @@ -8,4 +8,5 @@ unknown | Value | Explanation | | :----------- | :---------- | +| `"advanced"` | | | `"standard"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-51-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-51-then.md index c997bc7d..19254e44 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-51-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-51-then.md @@ -6,6 +6,8 @@ all of * [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-51-then-allof-0.md "check type definition") +* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-51-then-allof-1.md "check type definition") + # then Properties | Property | Type | Required | Nullable | Defined by | @@ -37,11 +39,12 @@ unknown | Value | Explanation | | :----------- | :---------- | +| `"advanced"` | | | `"standard"` | | ## name -Document Management Service, Application Option: Document Management Service, Application Option is a standalone, ready-to-use web application that provides document management capabilities for your enterprise content. +SAP Build Work Zone, advanced edition: SAP Build Work Zone, advanced edition lets you build digital workplace solutions to increase user productivity and engagement. It centralizes access to relevant business applications, processes, information, and communication in a unified entry point that your users can access from any device. Note: SAP Work Zone was recently renamed to SAP Build Work Zone, advanced edition. `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-52-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-52-if-properties-name.md index c5de3bd2..4b5fad12 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-52-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-52-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"spatialservices-app" +"sdm-web" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-52-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-52-if.md index 539fbe13..adaed813 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-52-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-52-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"spatialservices-app" +"sdm-web" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-52-then-allof-0-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-52-then-allof-0-if-properties-plan.md index c1699dff..126392b1 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-52-then-allof-0-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-52-then-allof-0-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"professional" +"standard" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-52-then-allof-0-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-52-then-allof-0-if.md index 46ec725e..45b868ac 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-52-then-allof-0-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-52-then-allof-0-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"professional" +"standard" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-52-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-52-then-allof-0-then.md index c34e6189..50ab5dd9 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-52-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-52-then-allof-0-then.md @@ -10,9 +10,25 @@ unknown ## plan -application plan >professional< for >spatialservices-app< is available in data centers: - +application plan >standard< for >sdm-web< is available in data centers: + +* {'region': 'ap10', 'name': 'Australia (Sydney)'} +* {'region': 'ap11', 'name': 'Singapore'} +* {'region': 'ap12', 'name': 'South Korea (Seoul)'} +* {'region': 'ap20', 'name': 'Australia (Sydney) Azure'} +* {'region': 'ap21', 'name': 'Singapore'} +* {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} +* {'region': 'ca10', 'name': 'Canada (Montreal)'} * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} +* {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} +* {'region': 'eu20', 'name': 'Europe (Netherlands)'} +* {'region': 'eu30', 'name': 'Europe (Frankfurt)'} +* {'region': 'jp10', 'name': 'Japan (Tokyo)'} +* {'region': 'jp20', 'name': 'Japan (Tokyo)'} +* {'region': 'us10', 'name': 'US East (VA)'} +* {'region': 'us20', 'name': 'US West (WA)'} +* {'region': 'us21', 'name': 'US East (VA)'} +* {'region': 'us30', 'name': 'US Central (IA)'} `plan` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-52-then-allof-1.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-52-then-allof-1.md deleted file mode 100644 index 19f8d24b..00000000 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-52-then-allof-1.md +++ /dev/null @@ -1,3 +0,0 @@ -## 1 Type - -unknown diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-52-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-52-then-properties-plan.md index a11e226e..248cb3df 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-52-then-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-52-then-properties-plan.md @@ -6,7 +6,6 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :--------------- | :---------- | -| `"professional"` | | -| `"starter"` | | +| Value | Explanation | +| :----------- | :---------- | +| `"standard"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-52-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-52-then.md index ac1f6c20..1122cef7 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-52-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-52-then.md @@ -6,8 +6,6 @@ all of * [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-52-then-allof-0.md "check type definition") -* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-52-then-allof-1.md "check type definition") - # then Properties | Property | Type | Required | Nullable | Defined by | @@ -37,14 +35,13 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :--------------- | :---------- | -| `"professional"` | | -| `"starter"` | | +| Value | Explanation | +| :----------- | :---------- | +| `"standard"` | | ## name -SAP HANA spatial services: HANA Spatial Services +Document Management Service, Application Option: Document Management Service, Application Option is a standalone, ready-to-use web application that provides document management capabilities for your enterprise content. `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-53-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-53-if-properties-name.md index e352e052..c5de3bd2 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-53-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-53-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"tnt-onboard-dataenrichment-dcp" +"spatialservices-app" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-53-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-53-if.md index c11d2dcc..0126552c 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-53-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-53-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"tnt-onboard-dataenrichment-dcp" +"spatialservices-app" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-53-then-allof-0-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-53-then-allof-0-if-properties-plan.md index 77bcc974..c1699dff 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-53-then-allof-0-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-53-then-allof-0-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"saas-application" +"professional" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-53-then-allof-0-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-53-then-allof-0-if.md index 6f3fcd1d..69aee572 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-53-then-allof-0-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-53-then-allof-0-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"saas-application" +"professional" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-53-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-53-then-allof-0-then.md index 96eef196..fa98e376 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-53-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-53-then-allof-0-then.md @@ -10,11 +10,9 @@ unknown ## plan -application plan >saas-application< for >tnt-onboard-dataenrichment-dcp< is available in data centers: +application plan >professional< for >spatialservices-app< is available in data centers: -* {'region': 'ap11', 'name': 'Singapore'} * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} -* {'region': 'us10', 'name': 'US East (VA)'} `plan` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-52-then-allof-1-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-53-then-allof-1-if-properties-plan.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-52-then-allof-1-if-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-53-then-allof-1-if-properties-plan.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-53-then-allof-1-if-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-53-then-allof-1-if-properties.md new file mode 100644 index 00000000..c89940c6 --- /dev/null +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-53-then-allof-1-if-properties.md @@ -0,0 +1,3 @@ +## properties Type + +unknown diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-52-then-allof-1-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-53-then-allof-1-if.md similarity index 83% rename from docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-52-then-allof-1-if.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-53-then-allof-1-if.md index 2eb00bb8..676b7abc 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-52-then-allof-1-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-53-then-allof-1-if.md @@ -6,7 +6,7 @@ unknown | Property | Type | Required | Nullable | Defined by | | :------------ | :------------ | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-52-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/2/then/allOf/52/then/allOf/1/if/properties/plan") | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-53-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/2/then/allOf/53/then/allOf/1/if/properties/plan") | ## plan @@ -20,7 +20,7 @@ unknown * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-52-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/2/then/allOf/52/then/allOf/1/if/properties/plan") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-53-then-allof-1-if-properties-plan.md "undefined#/properties/services/items/allOf/2/then/allOf/53/then/allOf/1/if/properties/plan") ### plan Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-52-then-allof-1-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-53-then-allof-1-then-properties-plan.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-52-then-allof-1-then-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-53-then-allof-1-then-properties-plan.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-53-then-allof-1-then-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-53-then-allof-1-then-properties.md new file mode 100644 index 00000000..c89940c6 --- /dev/null +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-53-then-allof-1-then-properties.md @@ -0,0 +1,3 @@ +## properties Type + +unknown diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-52-then-allof-1-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-53-then-allof-1-then.md similarity index 83% rename from docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-52-then-allof-1-then.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-53-then-allof-1-then.md index 6be1ff85..f9b11247 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-52-then-allof-1-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-53-then-allof-1-then.md @@ -6,7 +6,7 @@ unknown | Property | Type | Required | Nullable | Defined by | | :------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-52-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/2/then/allOf/52/then/allOf/1/then/properties/plan") | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-53-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/2/then/allOf/53/then/allOf/1/then/properties/plan") | ## plan @@ -22,7 +22,7 @@ application plan >starter< for >spatialservices-app< is available in data center * cannot be null -* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-52-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/2/then/allOf/52/then/allOf/1/then/properties/plan") +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-53-then-allof-1-then-properties-plan.md "undefined#/properties/services/items/allOf/2/then/allOf/53/then/allOf/1/then/properties/plan") ### plan Type diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-50-then-allof-1.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-53-then-allof-1.md similarity index 100% rename from docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-50-then-allof-1.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-53-then-allof-1.md diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-53-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-53-then-properties-plan.md index 8cfb4fe3..a11e226e 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-53-then-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-53-then-properties-plan.md @@ -6,6 +6,7 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :------------------- | :---------- | -| `"saas-application"` | | +| Value | Explanation | +| :--------------- | :---------- | +| `"professional"` | | +| `"starter"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-53-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-53-then.md index 04a60e05..fd77fcbe 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-53-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-53-then.md @@ -6,6 +6,8 @@ all of * [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-53-then-allof-0.md "check type definition") +* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-53-then-allof-1.md "check type definition") + # then Properties | Property | Type | Required | Nullable | Defined by | @@ -35,13 +37,14 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :------------------- | :---------- | -| `"saas-application"` | | +| Value | Explanation | +| :--------------- | :---------- | +| `"professional"` | | +| `"starter"` | | ## name -SAP Data Enrichment service: Provides Business Partner data from third-party data providers +SAP HANA spatial services: HANA Spatial Services `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-54-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-54-if-properties-name.md index fbb9de47..e352e052 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-54-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-54-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"WorkflowManagementSaaS" +"tnt-onboard-dataenrichment-dcp" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-54-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-54-if.md index 83694219..63f64422 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-54-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-54-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"WorkflowManagementSaaS" +"tnt-onboard-dataenrichment-dcp" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-54-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-54-then-allof-0-then.md index dec3596e..98e0f2c4 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-54-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-54-then-allof-0-then.md @@ -10,25 +10,11 @@ unknown ## plan -application plan >saas-application< for >WorkflowManagementSaaS< is available in data centers: +application plan >saas-application< for >tnt-onboard-dataenrichment-dcp< is available in data centers: -* {'region': 'ap10', 'name': 'Australia (Sydney)'} * {'region': 'ap11', 'name': 'Singapore'} -* {'region': 'ap12', 'name': 'South Korea (Seoul)'} -* {'region': 'ap20', 'name': 'Australia (Sydney) Azure'} -* {'region': 'ap21', 'name': 'Singapore'} -* {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} -* {'region': 'ca10', 'name': 'Canada (Montreal)'} * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} -* {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} -* {'region': 'eu20', 'name': 'Europe (Netherlands)'} -* {'region': 'eu30', 'name': 'Europe (Frankfurt)'} -* {'region': 'jp10', 'name': 'Japan (Tokyo)'} -* {'region': 'jp20', 'name': 'Japan (Tokyo)'} * {'region': 'us10', 'name': 'US East (VA)'} -* {'region': 'us20', 'name': 'US West (WA)'} -* {'region': 'us21', 'name': 'US East (VA)'} -* {'region': 'us30', 'name': 'US Central (IA)'} `plan` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-54-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-54-then.md index 2f24338c..bc787752 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-54-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-54-then.md @@ -41,7 +41,7 @@ unknown ## name -SAP Workflow Management: Digitize workflows, manage decisions and gain end-to-end process visibility +SAP Data Enrichment service: Provides Business Partner data from third-party data providers `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-55-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-55-if-properties-name.md index 64d6419d..fbb9de47 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-55-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-55-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"wums-c4re-beta" +"WorkflowManagementSaaS" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-55-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-55-if.md index 1e739cb2..dc6cc575 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-55-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-55-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"wums-c4re-beta" +"WorkflowManagementSaaS" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-55-then-allof-0-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-55-then-allof-0-if-properties-plan.md index 4f94ce99..77bcc974 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-55-then-allof-0-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-55-then-allof-0-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"default" +"saas-application" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-55-then-allof-0-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-55-then-allof-0-if.md index 145326bd..75140c80 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-55-then-allof-0-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-55-then-allof-0-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"default" +"saas-application" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-55-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-55-then-allof-0-then.md index 9731af35..4698bc61 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-55-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-55-then-allof-0-then.md @@ -10,9 +10,25 @@ unknown ## plan -application plan >default< for >wums-c4re-beta< is available in data centers: - +application plan >saas-application< for >WorkflowManagementSaaS< is available in data centers: + +* {'region': 'ap10', 'name': 'Australia (Sydney)'} +* {'region': 'ap11', 'name': 'Singapore'} +* {'region': 'ap12', 'name': 'South Korea (Seoul)'} +* {'region': 'ap20', 'name': 'Australia (Sydney) Azure'} +* {'region': 'ap21', 'name': 'Singapore'} +* {'region': 'br10', 'name': 'Brazil (Sao Paulo)'} +* {'region': 'ca10', 'name': 'Canada (Montreal)'} * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} +* {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} +* {'region': 'eu20', 'name': 'Europe (Netherlands)'} +* {'region': 'eu30', 'name': 'Europe (Frankfurt)'} +* {'region': 'jp10', 'name': 'Japan (Tokyo)'} +* {'region': 'jp20', 'name': 'Japan (Tokyo)'} +* {'region': 'us10', 'name': 'US East (VA)'} +* {'region': 'us20', 'name': 'US West (WA)'} +* {'region': 'us21', 'name': 'US East (VA)'} +* {'region': 'us30', 'name': 'US Central (IA)'} `plan` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-55-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-55-then-properties-plan.md index 916e7975..8cfb4fe3 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-55-then-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-55-then-properties-plan.md @@ -6,6 +6,6 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :---------- | :---------- | -| `"default"` | | +| Value | Explanation | +| :------------------- | :---------- | +| `"saas-application"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-55-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-55-then.md index dd4780b4..909448dc 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-55-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-55-then.md @@ -35,13 +35,13 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :---------- | :---------- | -| `"default"` | | +| Value | Explanation | +| :------------------- | :---------- | +| `"saas-application"` | | ## name -Workspace Utilization: The Workspace Utilization service lets you assign sensors to workplaces and spaces. These sensors measure how your workspaces are used. The Workspace Utilization service integrates with SAP Cloud for Real Estate and SAP Analytics Cloud to analyze, manage, and optimize your workspaces. +SAP Workflow Management: Digitize workflows, manage decisions and gain end-to-end process visibility `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-56-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-56-if-properties-name.md new file mode 100644 index 00000000..64d6419d --- /dev/null +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-56-if-properties-name.md @@ -0,0 +1,11 @@ +## name Type + +unknown + +## name Constraints + +**constant**: the value of this property must be equal to: + +```json +"wums-c4re-beta" +``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-56-if-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-56-if-properties.md new file mode 100644 index 00000000..c89940c6 --- /dev/null +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-56-if-properties.md @@ -0,0 +1,3 @@ +## properties Type + +unknown diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-56-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-56-if.md new file mode 100644 index 00000000..8f78f24e --- /dev/null +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-56-if.md @@ -0,0 +1,35 @@ +## if Type + +unknown + +# if Properties + +| Property | Type | Required | Nullable | Defined by | +| :------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [name](#name) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-56-if-properties-name.md "undefined#/properties/services/items/allOf/2/then/allOf/56/if/properties/name") | + +## name + + + +`name` + +* is optional + +* Type: unknown + +* cannot be null + +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-56-if-properties-name.md "undefined#/properties/services/items/allOf/2/then/allOf/56/if/properties/name") + +### name Type + +unknown + +### name Constraints + +**constant**: the value of this property must be equal to: + +```json +"wums-c4re-beta" +``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-39-then-allof-2-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-56-then-allof-0-if-properties-plan.md similarity index 92% rename from docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-39-then-allof-2-if-properties-plan.md rename to docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-56-then-allof-0-if-properties-plan.md index 7d4326ee..4f94ce99 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-1-then-allof-39-then-allof-2-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-56-then-allof-0-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"schema" +"default" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-56-then-allof-0-if-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-56-then-allof-0-if-properties.md new file mode 100644 index 00000000..c89940c6 --- /dev/null +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-56-then-allof-0-if-properties.md @@ -0,0 +1,3 @@ +## properties Type + +unknown diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-56-then-allof-0-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-56-then-allof-0-if.md new file mode 100644 index 00000000..bd0e14c7 --- /dev/null +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-56-then-allof-0-if.md @@ -0,0 +1,35 @@ +## if Type + +unknown + +# if Properties + +| Property | Type | Required | Nullable | Defined by | +| :------------ | :------------ | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-56-then-allof-0-if-properties-plan.md "undefined#/properties/services/items/allOf/2/then/allOf/56/then/allOf/0/if/properties/plan") | + +## plan + + + +`plan` + +* is optional + +* Type: unknown + +* cannot be null + +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-56-then-allof-0-if-properties-plan.md "undefined#/properties/services/items/allOf/2/then/allOf/56/then/allOf/0/if/properties/plan") + +### plan Type + +unknown + +### plan Constraints + +**constant**: the value of this property must be equal to: + +```json +"default" +``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-56-then-allof-0-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-56-then-allof-0-then-properties-plan.md new file mode 100644 index 00000000..48242f69 --- /dev/null +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-56-then-allof-0-then-properties-plan.md @@ -0,0 +1,3 @@ +## plan Type + +unknown diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-56-then-allof-0-then-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-56-then-allof-0-then-properties.md new file mode 100644 index 00000000..c89940c6 --- /dev/null +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-56-then-allof-0-then-properties.md @@ -0,0 +1,3 @@ +## properties Type + +unknown diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-56-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-56-then-allof-0-then.md new file mode 100644 index 00000000..f414c687 --- /dev/null +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-56-then-allof-0-then.md @@ -0,0 +1,29 @@ +## then Type + +unknown + +# then Properties + +| Property | Type | Required | Nullable | Defined by | +| :------------ | :------------ | :------- | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-56-then-allof-0-then-properties-plan.md "undefined#/properties/services/items/allOf/2/then/allOf/56/then/allOf/0/then/properties/plan") | + +## plan + +application plan >default< for >wums-c4re-beta< is available in data centers: + +* {'region': 'eu10', 'name': 'Europe (Frankfurt)'} + +`plan` + +* is optional + +* Type: unknown + +* cannot be null + +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-56-then-allof-0-then-properties-plan.md "undefined#/properties/services/items/allOf/2/then/allOf/56/then/allOf/0/then/properties/plan") + +### plan Type + +unknown diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-56-then-allof-0.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-56-then-allof-0.md new file mode 100644 index 00000000..d22a2571 --- /dev/null +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-56-then-allof-0.md @@ -0,0 +1,3 @@ +## 0 Type + +unknown diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-56-then-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-56-then-properties-name.md new file mode 100644 index 00000000..3a59e380 --- /dev/null +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-56-then-properties-name.md @@ -0,0 +1,3 @@ +## name Type + +unknown diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-56-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-56-then-properties-plan.md new file mode 100644 index 00000000..916e7975 --- /dev/null +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-56-then-properties-plan.md @@ -0,0 +1,11 @@ +## plan Type + +unknown + +## plan Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :---------- | :---------- | +| `"default"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-56-then-properties.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-56-then-properties.md new file mode 100644 index 00000000..c89940c6 --- /dev/null +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-56-then-properties.md @@ -0,0 +1,3 @@ +## properties Type + +unknown diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-56-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-56-then.md new file mode 100644 index 00000000..7a0bf1b6 --- /dev/null +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-56-then.md @@ -0,0 +1,58 @@ +## then Type + +merged type ([Details](btpsa-usecase-properties-services-items-allof-2-then-allof-56-then.md)) + +all of + +* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-56-then-allof-0.md "check type definition") + +# then Properties + +| Property | Type | Required | Nullable | Defined by | +| :------------ | :------------ | :------- | :------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [plan](#plan) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-56-then-properties-plan.md "undefined#/properties/services/items/allOf/2/then/allOf/56/then/properties/plan") | +| [name](#name) | Not specified | Optional | cannot be null | [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-56-then-properties-name.md "undefined#/properties/services/items/allOf/2/then/allOf/56/then/properties/name") | + +## plan + + + +`plan` + +* is optional + +* Type: unknown + +* cannot be null + +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-56-then-properties-plan.md "undefined#/properties/services/items/allOf/2/then/allOf/56/then/properties/plan") + +### plan Type + +unknown + +### plan Constraints + +**enum**: the value of this property must be equal to one of the following values: + +| Value | Explanation | +| :---------- | :---------- | +| `"default"` | | + +## name + +Workspace Utilization: The Workspace Utilization service lets you assign sensors to workplaces and spaces. These sensors measure how your workspaces are used. The Workspace Utilization service integrates with SAP Cloud for Real Estate and SAP Analytics Cloud to analyze, manage, and optimize your workspaces. + +`name` + +* is optional + +* Type: unknown + +* cannot be null + +* defined in: [JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-56-then-properties-name.md "undefined#/properties/services/items/allOf/2/then/allOf/56/then/properties/name") + +### name Type + +unknown diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-56.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-56.md new file mode 100644 index 00000000..e313c578 --- /dev/null +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-56.md @@ -0,0 +1,3 @@ +## 56 Type + +unknown diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-9-if-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-9-if-properties-name.md index 3a7c68a9..cc9addaf 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-9-if-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-9-if-properties-name.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"cias" +"bmb-app" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-9-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-9-if.md index 4864a6cb..573cea8d 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-9-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-9-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"cias" +"bmb-app" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-9-then-allof-0-if-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-9-then-allof-0-if-properties-plan.md index 126392b1..c97f5143 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-9-then-allof-0-if-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-9-then-allof-0-if-properties-plan.md @@ -7,5 +7,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"standard" +"free" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-9-then-allof-0-if.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-9-then-allof-0-if.md index 8b493925..21195e34 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-9-then-allof-0-if.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-9-then-allof-0-if.md @@ -31,5 +31,5 @@ unknown **constant**: the value of this property must be equal to: ```json -"standard" +"free" ``` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-9-then-allof-0-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-9-then-allof-0-then.md index 2de4cfd1..726c214d 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-9-then-allof-0-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-9-then-allof-0-then.md @@ -10,13 +10,9 @@ unknown ## plan -application plan >standard< for >cias< is available in data centers: +application plan >free< for >bmb-app< is available in data centers: -* {'region': 'ap10', 'name': 'Australia (Sydney)'} * {'region': 'eu10', 'name': 'Europe (Frankfurt)'} -* {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'} -* {'region': 'eu20', 'name': 'Europe (Netherlands)'} -* {'region': 'jp10', 'name': 'Japan (Tokyo)'} * {'region': 'us10', 'name': 'US East (VA)'} `plan` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-9-then-properties-plan.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-9-then-properties-plan.md index 248cb3df..f02fcbf6 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-9-then-properties-plan.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-9-then-properties-plan.md @@ -6,6 +6,6 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :----------- | :---------- | -| `"standard"` | | +| Value | Explanation | +| :------- | :---------- | +| `"free"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-9-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-9-then.md index dc38400d..ad97c61c 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-9-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-allof-9-then.md @@ -35,13 +35,13 @@ unknown **enum**: the value of this property must be equal to one of the following values: -| Value | Explanation | -| :----------- | :---------- | -| `"standard"` | | +| Value | Explanation | +| :------- | :---------- | +| `"free"` | | ## name -Cloud Integration Automation: Cloud Integration Automation service provides you a guided workflow to integrate SAP cloud solutions to On-Premise and other SAP Cloud solutions. The guided workflow contains instructions for manual and automated tasks to enable a simpler and faster integration configuration setup. +business process model connector for SAP Signavio solutions: Synchronize business process models between SAP Signavio Process Manager and SAP Solution Manager `name` diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-properties-name.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-properties-name.md index a3b1d9c1..bbc2845f 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-properties-name.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then-properties-name.md @@ -17,6 +17,7 @@ unknown | `"auditlog-viewer"` | | | `"automationpilot"` | | | `"Backend-service"` | | +| `"bmb-app"` | | | `"cias"` | | | `"cicd-app"` | | | `"content-agent-ui"` | | diff --git a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then.md b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then.md index ed810f2c..20459e85 100644 --- a/docs/generated/btpsa-usecase-properties-services-items-allof-2-then.md +++ b/docs/generated/btpsa-usecase-properties-services-items-allof-2-then.md @@ -116,6 +116,8 @@ all of * [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-55.md "check type definition") +* [Untitled undefined type in JSON Schema for BTPSA use case definitions](btpsa-usecase-properties-services-items-allof-2-then-allof-56.md "check type definition") + # then Properties | Property | Type | Required | Nullable | Defined by | @@ -155,6 +157,7 @@ unknown | `"auditlog-viewer"` | | | `"automationpilot"` | | | `"Backend-service"` | | +| `"bmb-app"` | | | `"cias"` | | | `"cicd-app"` | | | `"content-agent-ui"` | | diff --git a/libs/btpsa-usecase.json b/libs/btpsa-usecase.json index 2bfd51de..ce1f31c8 100644 --- a/libs/btpsa-usecase.json +++ b/libs/btpsa-usecase.json @@ -387,7 +387,7 @@ { "if": { "properties": { "category": { "const": "SERVICE"} } }, "then" :{ - "properties": { "name": { "enum": ["abap", "abap-solution", "ads", "adsrestapi", "aicore", "alert-notification", "api-management", "apimanagement-apiportal", "apimanagement-devportal", "application-logs", "ASE_PROVISIONING", "auditlog-api", "auditlog-management", "autoscaler", "build-workzone-advanced", "build-workzone-standard", "business-entity-recognition", "business-rules", "cias", "cicd-service", "cis", "COMPUTE_UNIT", "connectivity", "connectivity-central", "content-agent", "conversational-ai", "credstore", "data-analytics-osb", "data-attribute-recommendation", "data-intelligence", "data-privacy-integration-service", "dataenrichment-business-partner", "dateandtime", "destination", "document-classification", "document-translation", "dq-services", "enterprise-messaging", "feature-flags", "hana", "hana-cloud", "hana-db", "hana-tenant-db", "html5-apps-repo", "ibanservice", "identity", "INFRA", "integration-assessment", "integrationsuite", "intercompany-reconciliation", "invoice-object-recommendation", "iot", "iotae", "IRPA", "irpa-service", "it-rt", "jobscheduler", "malware-scanner", "market-rates-byor", "market-rates-thr", "MDMBusinessPartnerService", "ml-foundation", "mobile-app-catalog", "mobile-app-update", "mobile-c2g", "mobile-cbms", "mobile-client-log-upload", "mobile-client-resource", "mobile-client-usage", "mobile-discovery", "mobile-network-trace", "mobile-offline", "mobile-proxy", "mobile-push", "mobile-sample-odata-v2-espm", "mobile-services", "mobile-services-preview", "mobile-settings-exchange", "objectstore", "one-inbox-service", "one-mds", "personal-data-manager-service", "portal", "postgresql", "postgresql-db", "print", "privatelink", "process-automation", "process-automation-service", "processvisibility", "rabbitmq", "recommendation-systems-production", "redis-cache", "responsibility-management-service-beta", "responsibilitymanagement-service", "retention-manager", "saas-registry", "sap-analytics-cloud-embedded-edition", "sap-bigdataservices", "sap-build-apps-runtime", "sap-calm", "sap-document-information-extraction", "sap-graph", "sdm", "sdm-repository", "service-manager", "service-ticket-intelligence", "spatialservices", "theming", "transport", "uas", "ui5-flexibility-keyuser", "workcalendar", "workflow", "workflowmanagement", "wums-partner-api-beta", "xfs-runtime", "xsuaa"] } }, + "properties": { "name": { "enum": ["abap", "abap-solution", "ads", "adsrestapi", "aicore", "alert-notification", "api-management", "apimanagement-apiportal", "apimanagement-devportal", "application-logs", "ASE_PROVISIONING", "auditlog", "auditlog-api", "auditlog-management", "autoscaler", "build-workzone-advanced", "build-workzone-standard", "business-entity-recognition", "business-rules", "cias", "cicd-service", "cis", "COMPUTE_UNIT", "connectivity", "connectivity-central", "content-agent", "conversational-ai", "credstore", "data-analytics-osb", "data-attribute-recommendation", "data-intelligence", "data-privacy-integration-service", "dataenrichment-business-partner", "dateandtime", "destination", "document-classification", "document-translation", "dq-services", "enterprise-messaging", "feature-flags", "hana", "hana-cloud", "hana-db", "hana-tenant-db", "html5-apps-repo", "ibanservice", "identity", "INFRA", "integration-assessment", "integrationsuite", "intercompany-reconciliation", "invoice-object-recommendation", "iot", "iotae", "IRPA", "irpa-service", "it-rt", "jobscheduler", "malware-scanner", "market-rates-byor", "market-rates-thr", "MDMBusinessPartnerService", "ml-foundation", "mobile-app-catalog", "mobile-app-update", "mobile-c2g", "mobile-cbms", "mobile-client-log-upload", "mobile-client-resource", "mobile-client-usage", "mobile-discovery", "mobile-network-trace", "mobile-offline", "mobile-proxy", "mobile-push", "mobile-sample-odata-v2-espm", "mobile-services", "mobile-services-preview", "mobile-settings-exchange", "objectstore", "one-inbox-service", "one-mds", "personal-data-manager-service", "portal", "postgresql", "postgresql-db", "print", "privatelink", "process-automation", "process-automation-service", "processvisibility", "rabbitmq", "recommendation-systems-production", "redis-cache", "responsibility-management-service-beta", "responsibilitymanagement-service", "retention-manager", "saas-registry", "sap-analytics-cloud-embedded-edition", "sap-bigdataservices", "sap-build-apps-runtime", "sap-calm", "sap-document-information-extraction", "sap-graph", "sdm", "sdm-repository", "service-manager", "service-ticket-intelligence", "spatialservices", "theming", "transport", "uas", "ui5-flexibility-keyuser", "workcalendar", "workflow", "workflowmanagement", "wums-partner-api-beta", "xfs-runtime", "xsuaa"] } }, "allOf": [ { "if": { "properties": { "name": { "const": "abap"} } }, @@ -402,7 +402,7 @@ "then" :{ "properties": { "plan": { "description": "service plan >16_abap_64_db< for >abap< is available in data centers:\n- {'region': 'eu10', 'name': 'Europe (Frankfurt)'}\n- {'region': 'jp10', 'name': 'Japan (Tokyo)'}\n- {'region': 'us10', 'name': 'US East (VA)'}" } - , "parameters" : {"$schema": "http://json-schema.org/draft-07/schema", "_controlsOrder": ["admin_email", "description", "is_development_allowed", "sapsystemname", "size_of_runtime", "size_of_persistence"], "_show_form_view": true, "additionalProperties": false, "properties": {"admin_email": {"description": "Enter the administrator\u0027s email address", "maxLength": 256, "minLength": 6, "pattern": "^[^\u003c\u003e()\\[\\]\\\\,;:\\s@\"`]+@([a-zA-Z\\-0-9]+\\.)+[a-zA-Z]{2,}$", "title": "Admin Email Address", "type": "string"}, "admin_user_name": {"description": "Optionally enter the username of the administrator. The username must not begin with SAP_ or _, must only contain uppercase letters, digits, underscores, hyphens and periods, and must not be longer than 40 characters.", "maxLength": 40, "minLength": 0, "pattern": "^(?!SAP_|_)[\\.A-Z0-9_-]{0,40}$", "title": "Admin User Name", "type": "string"}, "description": {"description": "Enter a description for the ABAP system", "maxLength": 256, "pattern": "^[^\u0027\\x00-\\x1f]*$", "title": "ABAP System Description", "type": "string"}, "is_development_allowed": {"default": true, "description": "Specify, if development shall be allowed on this ABAP system", "title": "Development System", "type": "boolean"}, "login_attribute": {"default": "email", "description": "Which attribute should be used for login.", "enum": ["email", "user_name"], "title": "Login Attribute", "type": "string"}, "sapsystemname": {"default": "H01", "description": "Enter a valid system ID (SID) for the ABAP system. The ID must consist of exactly three alphanumeric characters. Only uppercase letters are allowed. The first character must be a letter (not a digit). The ID does not have to be technically unique. The following IDs are reserved and cannot be used: ADD ALL AMD AND ANY ARE ASC AUX AVG BIT CDC COM CON DBA END EPS FOR GET GID IBM INT KEY LOG LPT MAP MAX MIN MON NIX NOT NUL OFF OLD OMS OUT PAD PRN RAW REF ROW SAP SET SGA SHG SID SQL SUM SYS TMP TOP UID USE USR VAR.", "maxLength": 3, "minLength": 3, "pattern": "^(?!ADD|ALL|AMD|AND|ANY|ARE|ASC|AUX|AVG|BIT|CDC|COM|CON|DBA|END|EPS|FOR|GET|GID|IBM|INT|KEY|LOG|LPT|MAP|MAX|MIN|MON|NIX|NOT|NUL|OFF|OLD|OMS|OUT|PAD|PRN|RAW|REF|ROW|SAP|SET|SGA|SHG|SID|SQL|SUM|SYS|TMP|TOP|UID|USE|USR|VAR)[A-Z][A-Z0-9]{2}$", "title": "ABAP System ID", "type": "string"}, "size_of_persistence": {"const": 4, "default": 4, "description": "Enter the size of the HANA memory in blocks of 15 GB on AWS", "title": "HANA Memory Size", "type": "integer"}, "size_of_runtime": {"const": 1, "default": 1, "description": "Enter the size of the ABAP runtime in blocks of 16 GB", "title": "ABAP Runtime Size", "type": "integer"}}, "required": ["admin_email", "size_of_persistence", "size_of_runtime"], "type": "object"} + , "parameters" : {"$schema": "http://json-schema.org/draft-07/schema", "_controlsOrder": ["admin_email", "description", "is_development_allowed", "sapsystemname", "size_of_runtime", "size_of_persistence"], "_show_form_view": true, "additionalProperties": false, "properties": {"admin_email": {"description": "Enter the administrator\u0027s email address", "maxLength": 256, "minLength": 6, "pattern": "^[^\u003c\u003e()\\[\\]\\\\,;:\\s@\"`]+@([a-zA-Z\\-0-9]+\\.)+[a-zA-Z]{2,}$", "title": "Admin Email Address", "type": "string"}, "admin_user_name": {"description": "Optionally enter the username of the administrator. The username must not begin with SAP_ or _, must only contain uppercase letters, digits, underscores, hyphens and periods, and must not be longer than 40 characters.", "maxLength": 40, "minLength": 0, "pattern": "^(?!SAP_|_)[\\.A-Z0-9_-]{0,40}$", "title": "Admin User Name", "type": "string"}, "description": {"description": "Enter a description for the ABAP system", "maxLength": 256, "pattern": "^[^\u0027\\x00-\\x1f]*$", "title": "ABAP System Description", "type": "string"}, "is_development_allowed": {"default": true, "description": "Specify, if development shall be allowed on this ABAP system", "title": "Development System", "type": "boolean"}, "login_attribute": {"default": "email", "description": "Which attribute should be used for login.", "enum": ["email", "user_name"], "title": "Login Attribute", "type": "string"}, "sapsystemname": {"default": "H01", "description": "Enter a valid system ID (SID) for the ABAP system. The ID must consist of exactly three alphanumeric characters. Only uppercase letters are allowed. The first character must be a letter (not a digit). The ID does not have to be technically unique. The following IDs are reserved and cannot be used: ADD ALL AMD AND ANY ARE ASC AUX AVG BIT CDC COM CON DBA END EPS FOR GET GID IBM INT KEY LOG LPT MAP MAX MIN MON NIX NOT NUL OFF OLD OMS OUT PAD PRN RAW REF ROW SAP SET SGA SHG SID SQL SUM SYS TMP TOP UID USE USR VAR.", "maxLength": 3, "minLength": 3, "pattern": "^(?!ADD|ALL|AMD|ADM|AND|ANY|ARE|ASC|AUX|AVG|BIT|CDC|COM|CON|DAA|DBA|ECO|END|EPS|FOR|GET|GID|IBM|INT|KEY|LOG|LPT|MAP|MAX|MIN|MON|NIX|NOT|NUL|OFF|OLD|OMS|OUT|PAD|PRN|RAW|REF|ROW|SAP|SET|SGA|SHG|SID|SQL|SUM|SYS|TMP|TOP|UID|USE|USR|VAR)[A-Z][A-Z0-9]{2}$", "title": "ABAP System ID", "type": "string"}, "size_of_persistence": {"const": 4, "default": 4, "description": "Enter the size of the HANA memory in blocks of 15 GB on AWS", "title": "HANA Memory Size", "type": "integer"}, "size_of_runtime": {"const": 1, "default": 1, "description": "Enter the size of the ABAP runtime in blocks of 16 GB", "title": "ABAP Runtime Size", "type": "integer"}}, "required": ["admin_email", "size_of_persistence", "size_of_runtime"], "type": "object"} }, "required" : ["parameters"] @@ -706,6 +706,24 @@ }] } }, { + "if": { "properties": { "name": { "const": "auditlog"} } }, + "then" :{ + "properties": { + "plan": { "enum": ["premium"] }, + "name": { "description": "SAP Audit Log service: Allow users to ingest compliance audit data from SAP BTP services and applications and store it for a default retention time of 90 days (with no additional costs applied). The ability to retrieve and download this data within this period is part of Auditlog Management Service. The service serves to support audit activities by prove wrongdoing and identifying malicious activities and provision of forensic evidence that can be used at Court. The scope of the service are secure and configuration change information records, data privacy specific logs, logs motivated by Multiple Regulations. The service is following each SAP Product standards and GDPR Compliance regulations."} + }, + "allOf": [ + { + "if": { "properties": { "plan": { "const": "premium"} } }, + "then" :{ + "properties": { + "plan": { "description": "service plan >premium< for >auditlog< is available in data centers:\n- {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'}" } + + } + } + }] + } + }, { "if": { "properties": { "name": { "const": "auditlog-api"} } }, "then" :{ "properties": { @@ -1104,7 +1122,7 @@ "if": { "properties": { "plan": { "const": "free"} } }, "then" :{ "properties": { - "plan": { "description": "service plan >free< for >data-analytics-osb< is available in data centers:\n- {'region': 'ap10', 'name': 'Australia (Sydney)'}\n- {'region': 'ap11', 'name': 'Singapore'}\n- {'region': 'ap12', 'name': 'South Korea (Seoul)'}\n- {'region': 'br10', 'name': 'Brazil (Sao Paulo)'}\n- {'region': 'ca10', 'name': 'Canada (Montreal)'}\n- {'region': 'eu10', 'name': 'Europe (Frankfurt)'}\n- {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'}\n- {'region': 'eu20', 'name': 'Europe (Netherlands)'}\n- {'region': 'jp10', 'name': 'Japan (Tokyo)'}\n- {'region': 'us10', 'name': 'US East (VA)'}\n- {'region': 'us20', 'name': 'US West (WA)'}" } + "plan": { "description": "service plan >free< for >data-analytics-osb< is available in data centers:\n- {'region': 'ap10', 'name': 'Australia (Sydney)'}\n- {'region': 'ap11', 'name': 'Singapore'}\n- {'region': 'ap12', 'name': 'South Korea (Seoul)'}\n- {'region': 'br10', 'name': 'Brazil (Sao Paulo)'}\n- {'region': 'ca10', 'name': 'Canada (Montreal)'}\n- {'region': 'eu10', 'name': 'Europe (Frankfurt)'}\n- {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'}\n- {'region': 'eu20', 'name': 'Europe (Netherlands)'}\n- {'region': 'jp10', 'name': 'Japan (Tokyo)'}\n- {'region': 'us10', 'name': 'US East (VA)'}\n- {'region': 'us20', 'name': 'US West (WA)'}\n- {'region': 'us30', 'name': 'US Central (IA)'}" } , "parameters" : {"$schema": "http://json-schema.org/draft-07/schema", "_show_form_view": true, "properties": {"email": {"description": "email of the user", "format": "email", "minLength": 1, "type": "string"}, "first_name": {"description": "first name of the user", "minLength": 1, "type": "string"}, "last_name": {"description": "last name of the user", "minLength": 1, "type": "string"}}, "type": "object"} }, "required" : ["parameters"] @@ -1114,7 +1132,7 @@ "if": { "properties": { "plan": { "const": "standard"} } }, "then" :{ "properties": { - "plan": { "description": "service plan >standard< for >data-analytics-osb< is available in data centers:\n- {'region': 'ap10', 'name': 'Australia (Sydney)'}\n- {'region': 'ap11', 'name': 'Singapore'}\n- {'region': 'ap12', 'name': 'South Korea (Seoul)'}\n- {'region': 'br10', 'name': 'Brazil (Sao Paulo)'}\n- {'region': 'ca10', 'name': 'Canada (Montreal)'}\n- {'region': 'eu10', 'name': 'Europe (Frankfurt)'}\n- {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'}\n- {'region': 'eu20', 'name': 'Europe (Netherlands)'}\n- {'region': 'jp10', 'name': 'Japan (Tokyo)'}\n- {'region': 'us10', 'name': 'US East (VA)'}\n- {'region': 'us20', 'name': 'US West (WA)'}" } + "plan": { "description": "service plan >standard< for >data-analytics-osb< is available in data centers:\n- {'region': 'ap10', 'name': 'Australia (Sydney)'}\n- {'region': 'ap11', 'name': 'Singapore'}\n- {'region': 'ap12', 'name': 'South Korea (Seoul)'}\n- {'region': 'br10', 'name': 'Brazil (Sao Paulo)'}\n- {'region': 'ca10', 'name': 'Canada (Montreal)'}\n- {'region': 'eu10', 'name': 'Europe (Frankfurt)'}\n- {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'}\n- {'region': 'eu20', 'name': 'Europe (Netherlands)'}\n- {'region': 'jp10', 'name': 'Japan (Tokyo)'}\n- {'region': 'us10', 'name': 'US East (VA)'}\n- {'region': 'us20', 'name': 'US West (WA)'}\n- {'region': 'us30', 'name': 'US Central (IA)'}" } , "parameters" : {"$schema": "http://json-schema.org/draft-07/schema", "_show_form_view": true, "properties": {"email": {"description": "email of the user", "format": "email", "minLength": 1, "type": "string"}, "first_name": {"description": "first name of the user", "minLength": 1, "type": "string"}, "last_name": {"description": "last name of the user", "minLength": 1, "type": "string"}}, "type": "object"} }, "required" : ["parameters"] @@ -2298,7 +2316,7 @@ "if": { "properties": { "plan": { "const": "b2c"} } }, "then" :{ "properties": { - "plan": { "description": "service plan >b2c< for >mobile-services< is available in data centers:\n- {'region': 'ap10', 'name': 'Australia (Sydney)'}\n- {'region': 'ap11', 'name': 'Singapore'}\n- {'region': 'ap12', 'name': 'South Korea (Seoul)'}\n- {'region': 'ap20', 'name': 'Australia (Sydney) Azure'}\n- {'region': 'ap21', 'name': 'Singapore'}\n- {'region': 'br10', 'name': 'Brazil (Sao Paulo)'}\n- {'region': 'ca10', 'name': 'Canada (Montreal)'}\n- {'region': 'eu10', 'name': 'Europe (Frankfurt)'}\n- {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'}\n- {'region': 'eu20', 'name': 'Europe (Netherlands)'}\n- {'region': 'eu30', 'name': 'Europe (Frankfurt)'}\n- {'region': 'in30', 'name': 'India (Mumbai)'}\n- {'region': 'jp10', 'name': 'Japan (Tokyo)'}\n- {'region': 'jp20', 'name': 'Japan (Tokyo)'}\n- {'region': 'us10', 'name': 'US East (VA)'}\n- {'region': 'us20', 'name': 'US West (WA)'}\n- {'region': 'us21', 'name': 'US East (VA)'}\n- {'region': 'us30', 'name': 'US Central (IA)'}" } + "plan": { "description": "service plan >b2c< for >mobile-services< is available in data centers:\n- {'region': 'ap10', 'name': 'Australia (Sydney)'}\n- {'region': 'ap11', 'name': 'Singapore'}\n- {'region': 'ap12', 'name': 'South Korea (Seoul)'}\n- {'region': 'ap20', 'name': 'Australia (Sydney) Azure'}\n- {'region': 'ap21', 'name': 'Singapore'}\n- {'region': 'br10', 'name': 'Brazil (Sao Paulo)'}\n- {'region': 'ca10', 'name': 'Canada (Montreal)'}\n- {'region': 'ch20', 'name': 'cf-ch20'}\n- {'region': 'eu10', 'name': 'Europe (Frankfurt)'}\n- {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'}\n- {'region': 'eu20', 'name': 'Europe (Netherlands)'}\n- {'region': 'eu30', 'name': 'Europe (Frankfurt)'}\n- {'region': 'in30', 'name': 'India (Mumbai)'}\n- {'region': 'jp10', 'name': 'Japan (Tokyo)'}\n- {'region': 'jp20', 'name': 'Japan (Tokyo)'}\n- {'region': 'us10', 'name': 'US East (VA)'}\n- {'region': 'us20', 'name': 'US West (WA)'}\n- {'region': 'us21', 'name': 'US East (VA)'}\n- {'region': 'us30', 'name': 'US Central (IA)'}" } } } @@ -2306,7 +2324,7 @@ "if": { "properties": { "plan": { "const": "free"} } }, "then" :{ "properties": { - "plan": { "description": "service plan >free< for >mobile-services< is available in data centers:\n- {'region': 'ap10', 'name': 'Australia (Sydney)'}\n- {'region': 'ap11', 'name': 'Singapore'}\n- {'region': 'ap12', 'name': 'South Korea (Seoul)'}\n- {'region': 'ap20', 'name': 'Australia (Sydney) Azure'}\n- {'region': 'ap21', 'name': 'Singapore'}\n- {'region': 'br10', 'name': 'Brazil (Sao Paulo)'}\n- {'region': 'ca10', 'name': 'Canada (Montreal)'}\n- {'region': 'eu10', 'name': 'Europe (Frankfurt)'}\n- {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'}\n- {'region': 'eu20', 'name': 'Europe (Netherlands)'}\n- {'region': 'eu30', 'name': 'Europe (Frankfurt)'}\n- {'region': 'in30', 'name': 'India (Mumbai)'}\n- {'region': 'jp10', 'name': 'Japan (Tokyo)'}\n- {'region': 'jp20', 'name': 'Japan (Tokyo)'}\n- {'region': 'us10', 'name': 'US East (VA)'}\n- {'region': 'us20', 'name': 'US West (WA)'}\n- {'region': 'us21', 'name': 'US East (VA)'}\n- {'region': 'us30', 'name': 'US Central (IA)'}" } + "plan": { "description": "service plan >free< for >mobile-services< is available in data centers:\n- {'region': 'ap10', 'name': 'Australia (Sydney)'}\n- {'region': 'ap11', 'name': 'Singapore'}\n- {'region': 'ap12', 'name': 'South Korea (Seoul)'}\n- {'region': 'ap20', 'name': 'Australia (Sydney) Azure'}\n- {'region': 'ap21', 'name': 'Singapore'}\n- {'region': 'br10', 'name': 'Brazil (Sao Paulo)'}\n- {'region': 'ca10', 'name': 'Canada (Montreal)'}\n- {'region': 'ch20', 'name': 'cf-ch20'}\n- {'region': 'eu10', 'name': 'Europe (Frankfurt)'}\n- {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'}\n- {'region': 'eu20', 'name': 'Europe (Netherlands)'}\n- {'region': 'eu30', 'name': 'Europe (Frankfurt)'}\n- {'region': 'in30', 'name': 'India (Mumbai)'}\n- {'region': 'jp10', 'name': 'Japan (Tokyo)'}\n- {'region': 'jp20', 'name': 'Japan (Tokyo)'}\n- {'region': 'us10', 'name': 'US East (VA)'}\n- {'region': 'us20', 'name': 'US West (WA)'}\n- {'region': 'us21', 'name': 'US East (VA)'}\n- {'region': 'us30', 'name': 'US Central (IA)'}" } } } @@ -2314,7 +2332,7 @@ "if": { "properties": { "plan": { "const": "resources"} } }, "then" :{ "properties": { - "plan": { "description": "service plan >resources< for >mobile-services< is available in data centers:\n- {'region': 'ap10', 'name': 'Australia (Sydney)'}\n- {'region': 'ap11', 'name': 'Singapore'}\n- {'region': 'ap12', 'name': 'South Korea (Seoul)'}\n- {'region': 'ap20', 'name': 'Australia (Sydney) Azure'}\n- {'region': 'ap21', 'name': 'Singapore'}\n- {'region': 'br10', 'name': 'Brazil (Sao Paulo)'}\n- {'region': 'ca10', 'name': 'Canada (Montreal)'}\n- {'region': 'eu10', 'name': 'Europe (Frankfurt)'}\n- {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'}\n- {'region': 'eu20', 'name': 'Europe (Netherlands)'}\n- {'region': 'eu30', 'name': 'Europe (Frankfurt)'}\n- {'region': 'in30', 'name': 'India (Mumbai)'}\n- {'region': 'jp10', 'name': 'Japan (Tokyo)'}\n- {'region': 'jp20', 'name': 'Japan (Tokyo)'}\n- {'region': 'us10', 'name': 'US East (VA)'}\n- {'region': 'us20', 'name': 'US West (WA)'}\n- {'region': 'us21', 'name': 'US East (VA)'}\n- {'region': 'us30', 'name': 'US Central (IA)'}" } + "plan": { "description": "service plan >resources< for >mobile-services< is available in data centers:\n- {'region': 'ap10', 'name': 'Australia (Sydney)'}\n- {'region': 'ap11', 'name': 'Singapore'}\n- {'region': 'ap12', 'name': 'South Korea (Seoul)'}\n- {'region': 'ap20', 'name': 'Australia (Sydney) Azure'}\n- {'region': 'ap21', 'name': 'Singapore'}\n- {'region': 'br10', 'name': 'Brazil (Sao Paulo)'}\n- {'region': 'ca10', 'name': 'Canada (Montreal)'}\n- {'region': 'ch20', 'name': 'cf-ch20'}\n- {'region': 'eu10', 'name': 'Europe (Frankfurt)'}\n- {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'}\n- {'region': 'eu20', 'name': 'Europe (Netherlands)'}\n- {'region': 'eu30', 'name': 'Europe (Frankfurt)'}\n- {'region': 'in30', 'name': 'India (Mumbai)'}\n- {'region': 'jp10', 'name': 'Japan (Tokyo)'}\n- {'region': 'jp20', 'name': 'Japan (Tokyo)'}\n- {'region': 'us10', 'name': 'US East (VA)'}\n- {'region': 'us20', 'name': 'US West (WA)'}\n- {'region': 'us21', 'name': 'US East (VA)'}\n- {'region': 'us30', 'name': 'US Central (IA)'}" } } } @@ -2322,7 +2340,7 @@ "if": { "properties": { "plan": { "const": "standard"} } }, "then" :{ "properties": { - "plan": { "description": "service plan >standard< for >mobile-services< is available in data centers:\n- {'region': 'ap10', 'name': 'Australia (Sydney)'}\n- {'region': 'ap11', 'name': 'Singapore'}\n- {'region': 'ap12', 'name': 'South Korea (Seoul)'}\n- {'region': 'ap20', 'name': 'Australia (Sydney) Azure'}\n- {'region': 'ap21', 'name': 'Singapore'}\n- {'region': 'br10', 'name': 'Brazil (Sao Paulo)'}\n- {'region': 'ca10', 'name': 'Canada (Montreal)'}\n- {'region': 'eu10', 'name': 'Europe (Frankfurt)'}\n- {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'}\n- {'region': 'eu20', 'name': 'Europe (Netherlands)'}\n- {'region': 'eu30', 'name': 'Europe (Frankfurt)'}\n- {'region': 'in30', 'name': 'India (Mumbai)'}\n- {'region': 'jp10', 'name': 'Japan (Tokyo)'}\n- {'region': 'jp20', 'name': 'Japan (Tokyo)'}\n- {'region': 'us10', 'name': 'US East (VA)'}\n- {'region': 'us20', 'name': 'US West (WA)'}\n- {'region': 'us21', 'name': 'US East (VA)'}\n- {'region': 'us30', 'name': 'US Central (IA)'}" } + "plan": { "description": "service plan >standard< for >mobile-services< is available in data centers:\n- {'region': 'ap10', 'name': 'Australia (Sydney)'}\n- {'region': 'ap11', 'name': 'Singapore'}\n- {'region': 'ap12', 'name': 'South Korea (Seoul)'}\n- {'region': 'ap20', 'name': 'Australia (Sydney) Azure'}\n- {'region': 'ap21', 'name': 'Singapore'}\n- {'region': 'br10', 'name': 'Brazil (Sao Paulo)'}\n- {'region': 'ca10', 'name': 'Canada (Montreal)'}\n- {'region': 'ch20', 'name': 'cf-ch20'}\n- {'region': 'eu10', 'name': 'Europe (Frankfurt)'}\n- {'region': 'eu11', 'name': 'Europe (Frankfurt) EU Access - AWS'}\n- {'region': 'eu20', 'name': 'Europe (Netherlands)'}\n- {'region': 'eu30', 'name': 'Europe (Frankfurt)'}\n- {'region': 'in30', 'name': 'India (Mumbai)'}\n- {'region': 'jp10', 'name': 'Japan (Tokyo)'}\n- {'region': 'jp20', 'name': 'Japan (Tokyo)'}\n- {'region': 'us10', 'name': 'US East (VA)'}\n- {'region': 'us20', 'name': 'US West (WA)'}\n- {'region': 'us21', 'name': 'US East (VA)'}\n- {'region': 'us30', 'name': 'US Central (IA)'}" } } } @@ -2638,25 +2656,15 @@ "if": { "properties": { "name": { "const": "privatelink"} } }, "then" :{ "properties": { - "plan": { "enum": ["beta","standard"] }, + "plan": { "enum": ["standard"] }, "name": { "description": "SAP Private Link service: SAP Private Link service establishes a private connection between selected SAP BTP services and selected services in your own IaaS provider accounts. By reusing the private link functionality of our partner IaaS providers, it lets you access your services through private network connections to avoid data transfer via the public Internet."} }, "allOf": [ { - "if": { "properties": { "plan": { "const": "beta"} } }, - "then" :{ - "properties": { - "plan": { "description": "service plan >beta< for >privatelink< is available in data centers:\n- {'region': 'eu10', 'name': 'Europe (Frankfurt)'}\n- {'region': 'us10', 'name': 'US East (VA)'}" } - , "parameters" : {"$schema": "http://json-schema.org/draft-07/schema", "_controlsOrder": ["serviceName", "desiredAZs"], "_show_form_view": true, "additionalProperties": false, "properties": {"desiredAZs": {"default": 3, "description": "Specifies the desired number of Availability Zones of the endpoint.\n\nExample: 2\n\nBy default, SAP Private Link service only creates the endpoint if the endpoint service is deployed in the same AZs as SAP BTP, to maximize High Availability.\nIn case fewer AZs than SAP BTPs should be allowed (i.e. only one or two AZs), please explicitly allow it by specifying the desired number of AZs via this parameter.", "title": "Desired AZs", "type": "integer"}, "policyDocument": {"description": "Specifies the Endpoint Policy.\\n\\nThe endpoint policy controls which AWS principals (AWS accounts, IAM users, and IAM roles) can use the VPC endpoint to access the endpoint service.", "properties": {}, "title": "Endpoint Policy Document", "type": "object"}, "serviceName": {"description": "Specifies the service name for which the VPC Endpoint should be created.\\n\\nExample: \"com.amazonaws.us-east-1.monitoring\" or \"com.amazonaws.vpce.us-east-1.vpce-svc-09ac27c2a0cd319fa\" for AWS or custom VPC Endpoint Services respectively", "minLength": 1, "pattern": "com\\.amazonaws\\..+", "title": "Service Name", "type": "string"}}, "required": ["serviceName"], "type": "object"} - - }, "required" : ["parameters"] - - } - }, { "if": { "properties": { "plan": { "const": "standard"} } }, "then" :{ "properties": { - "plan": { "description": "service plan >standard< for >privatelink< is available in data centers:\n- {'region': 'ap20', 'name': 'Australia (Sydney) Azure'}\n- {'region': 'ap21', 'name': 'Singapore'}\n- {'region': 'eu20', 'name': 'Europe (Netherlands)'}\n- {'region': 'jp20', 'name': 'Japan (Tokyo)'}\n- {'region': 'us20', 'name': 'US West (WA)'}\n- {'region': 'us21', 'name': 'US East (VA)'}" } + "plan": { "description": "service plan >standard< for >privatelink< is available in data centers:\n- {'region': 'ap10', 'name': 'Australia (Sydney)'}\n- {'region': 'ap11', 'name': 'Singapore'}\n- {'region': 'ap12', 'name': 'South Korea (Seoul)'}\n- {'region': 'ap20', 'name': 'Australia (Sydney) Azure'}\n- {'region': 'ap21', 'name': 'Singapore'}\n- {'region': 'br10', 'name': 'Brazil (Sao Paulo)'}\n- {'region': 'ca10', 'name': 'Canada (Montreal)'}\n- {'region': 'eu10', 'name': 'Europe (Frankfurt)'}\n- {'region': 'eu20', 'name': 'Europe (Netherlands)'}\n- {'region': 'jp10', 'name': 'Japan (Tokyo)'}\n- {'region': 'jp20', 'name': 'Japan (Tokyo)'}\n- {'region': 'us10', 'name': 'US East (VA)'}\n- {'region': 'us20', 'name': 'US West (WA)'}\n- {'region': 'us21', 'name': 'US East (VA)'}" } , "parameters" : {"$schema": "http://json-schema.org/draft-07/schema", "_controlsOrder": ["serviceName", "desiredAZs"], "_show_form_view": true, "additionalProperties": false, "properties": {"desiredAZs": {"default": 3, "description": "Specifies the desired number of Availability Zones of the endpoint.\n\nExample: 2\n\nBy default, SAP Private Link service only creates the endpoint if the endpoint service is deployed in the same AZs as SAP BTP, to maximize High Availability.\nIn case fewer AZs than SAP BTPs should be allowed (i.e. only one or two AZs), please explicitly allow it by specifying the desired number of AZs via this parameter.", "title": "Desired AZs", "type": "integer"}, "policyDocument": {"description": "Specifies the Endpoint Policy.\\n\\nThe endpoint policy controls which AWS principals (AWS accounts, IAM users, and IAM roles) can use the VPC endpoint to access the endpoint service.", "properties": {}, "title": "Endpoint Policy Document", "type": "object"}, "serviceName": {"description": "Specifies the service name for which the VPC Endpoint should be created.\\n\\nExample: \"com.amazonaws.us-east-1.monitoring\" or \"com.amazonaws.vpce.us-east-1.vpce-svc-09ac27c2a0cd319fa\" for AWS or custom VPC Endpoint Services respectively", "minLength": 1, "pattern": "com\\.amazonaws\\..+", "title": "Service Name", "type": "string"}}, "required": ["serviceName"], "type": "object"} }, "required" : ["parameters"] @@ -3470,7 +3478,7 @@ { "if": { "properties": { "category": { "const": "APPLICATION"} } }, "then" :{ - "properties": { "name": { "enum": ["abapcp-web-router", "ads-configui", "ai-launchpad", "alm-ts", "api-management-apiportal", "api-management-devportal", "auditlog-viewer", "automationpilot", "Backend-service", "cias", "cicd-app", "content-agent-ui", "custom-domain-manager", "data-privacy-integration-application", "document-information-extraction-application", "dqmmicroui", "eadesigner", "edge-services", "enterprise-messaging-hub", "event-mesh-sap2sap", "extension-center", "feature-flags-dashboard", "hana-cloud-tools", "integration-suite-advanced-event-mesh", "integrationsuite", "intelligent-situation-automation-app", "iotas", "IRPA", "it-prod", "LandscapePortal", "market-rates-ux", "mdgce", "MDMBusinessPartnerApplication", "mdo-one-mds-master", "MDOrchestrationApplication", "ocnselfserviceagent", "PersonalDataManagerApp", "PortalApplication", "print-app", "process-automation", "responsibility-management-application-beta", "responsibilitymanagement-application", "retention-manager-app", "sap-build-apps", "sap-cai-onboarding", "sap-identity-services-onboarding", "sapappgyver", "sapappstudio", "SAPLaunchpad", "SAPWebAnalytics", "SAPWorkZone", "sdm-web", "spatialservices-app", "tnt-onboard-dataenrichment-dcp", "WorkflowManagementSaaS", "wums-c4re-beta"] } }, + "properties": { "name": { "enum": ["abapcp-web-router", "ads-configui", "ai-launchpad", "alm-ts", "api-management-apiportal", "api-management-devportal", "auditlog-viewer", "automationpilot", "Backend-service", "bmb-app", "cias", "cicd-app", "content-agent-ui", "custom-domain-manager", "data-privacy-integration-application", "document-information-extraction-application", "dqmmicroui", "eadesigner", "edge-services", "enterprise-messaging-hub", "event-mesh-sap2sap", "extension-center", "feature-flags-dashboard", "hana-cloud-tools", "integration-suite-advanced-event-mesh", "integrationsuite", "intelligent-situation-automation-app", "iotas", "IRPA", "it-prod", "LandscapePortal", "market-rates-ux", "mdgce", "MDMBusinessPartnerApplication", "mdo-one-mds-master", "MDOrchestrationApplication", "ocnselfserviceagent", "PersonalDataManagerApp", "PortalApplication", "print-app", "process-automation", "responsibility-management-application-beta", "responsibilitymanagement-application", "retention-manager-app", "sap-build-apps", "sap-cai-onboarding", "sap-identity-services-onboarding", "sapappgyver", "sapappstudio", "SAPLaunchpad", "SAPWebAnalytics", "SAPWorkZone", "sdm-web", "spatialservices-app", "tnt-onboard-dataenrichment-dcp", "WorkflowManagementSaaS", "wums-c4re-beta"] } }, "allOf": [ { "if": { "properties": { "name": { "const": "abapcp-web-router"} } }, @@ -3659,6 +3667,24 @@ }] } }, { + "if": { "properties": { "name": { "const": "bmb-app"} } }, + "then" :{ + "properties": { + "plan": { "enum": ["free"] }, + "name": { "description": "business process model connector for SAP Signavio solutions: Synchronize business process models between SAP Signavio Process Manager and SAP Solution Manager"} + }, + "allOf": [ + { + "if": { "properties": { "plan": { "const": "free"} } }, + "then" :{ + "properties": { + "plan": { "description": "application plan >free< for >bmb-app< is available in data centers:\n- {'region': 'eu10', 'name': 'Europe (Frankfurt)'}\n- {'region': 'us10', 'name': 'US East (VA)'}" } + + } + } + }] + } + }, { "if": { "properties": { "name": { "const": "cias"} } }, "then" :{ "properties": { @@ -3938,7 +3964,7 @@ "if": { "properties": { "plan": { "const": "default"} } }, "then" :{ "properties": { - "plan": { "description": "application plan >default< for >integration-suite-advanced-event-mesh< is available in data centers:\n- {'region': 'eu10', 'name': 'Europe (Frankfurt)'}\n- {'region': 'us20', 'name': 'US West (WA)'}" } + "plan": { "description": "application plan >default< for >integration-suite-advanced-event-mesh< is available in data centers:\n- {'region': 'eu10', 'name': 'Europe (Frankfurt)'}\n- {'region': 'in30', 'name': 'India (Mumbai)'}\n- {'region': 'us20', 'name': 'US West (WA)'}" } , "parameters" : {"$schema": "http://json-schema.org/draft-07/schema", "_show_standard_config_view": true, "additionalProperties": false, "properties": {"admin_user_email": {"description": "Provide an email that belongs to a user who is onboarded on IAS. This user gets access to the subscribed application and can provide access to other users.", "minLength": 1, "title": "Admin User Email", "type": "string"}}, "type": "object"} }, "required" : ["parameters"]