Compare commits
62 Commits
f5bdf81d2d
...
sgode-patc
| Author | SHA1 | Date | |
|---|---|---|---|
| ed40313611 | |||
| e3741c8b53 | |||
| 167f5cb883 | |||
| 746279eba1 | |||
| 6919069569 | |||
| 92525c56a9 | |||
| 48c646805c | |||
| 9ceb185bce | |||
| 3bc22e77fb | |||
| f5317b2d16 | |||
| afcebbaa7c | |||
| 7036bfcfcb | |||
| 2a1a04805b | |||
| ccaec1df24 | |||
| de8f63d5ca | |||
| f6b9d03ef7 | |||
| af1a08de5f | |||
| 11ba8bf8ce | |||
| 9f0fa5bc11 | |||
| 1c90e222ae | |||
| dc86ee3773 | |||
| a6993b58b6 | |||
| 244122d66e | |||
| c840bfddf7 | |||
| 5688aa9fa9 | |||
| 483dd1ba13 | |||
| 9c91fde599 | |||
| 7d4aacf61d | |||
| a41f77df9a | |||
| c2a89cf6b1 | |||
| bf825ffdaa | |||
| 6960b72f63 | |||
| d7868e7d72 | |||
| 28e651dffb | |||
| 74b12f8d23 | |||
| ef81bae683 | |||
| 82d6d0e771 | |||
| 508dbc0cc4 | |||
| 92b31b43e6 | |||
| 1cf6126af8 | |||
| 00eab6851c | |||
| 3fb50bcc25 | |||
| 825934bab0 | |||
| 1053a76c04 | |||
| 7381111202 | |||
| a432d6f39f | |||
| 4bd357c9f4 | |||
| a8e5c72f7d | |||
| 75a612dbea | |||
| c0d4da93ff | |||
| 176ed5fc5e | |||
| 2e3b5e18e7 | |||
| 5915e96dff | |||
| c763e75b85 | |||
| 075237b565 | |||
| 7f1b8f4d56 | |||
| 8edc99df52 | |||
| 4b4cf3cdad | |||
| 74097a7edd | |||
| 177e5deddc | |||
| 9c9d7ed695 | |||
| 83ecc3ec19 |
18
.gitea/workflows/python-tox.yaml
Normal file
18
.gitea/workflows/python-tox.yaml
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
name: Run Tox Check
|
||||||
|
|
||||||
|
on:
|
||||||
|
pull_request:
|
||||||
|
types: [opened, reopened, synchronize, edited]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
tox-py312:
|
||||||
|
runs-on: ubuntu
|
||||||
|
steps:
|
||||||
|
- uses: https://github.com/opentelekomcloud-infra/github-actions/.github/actions/tox-py-test@v1
|
||||||
|
|
||||||
|
tox-pep8:
|
||||||
|
runs-on: ubuntu
|
||||||
|
steps:
|
||||||
|
- uses: https://github.com/opentelekomcloud-infra/github-actions/.github/actions/tox-py-test@v1
|
||||||
|
with:
|
||||||
|
tox-env: pep8
|
||||||
32
.gitea/workflows/update_opensearch_filters.yaml
Normal file
32
.gitea/workflows/update_opensearch_filters.yaml
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
name: Updates Opensearch filters
|
||||||
|
|
||||||
|
on:
|
||||||
|
pull_request:
|
||||||
|
types:
|
||||||
|
- closed
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
update-opensearch-filters:
|
||||||
|
if: github.event.pull_request.merged == true
|
||||||
|
runs-on: ubuntu
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Checkout code
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- name: Set up Python
|
||||||
|
uses: actions/setup-python@v5
|
||||||
|
with:
|
||||||
|
python-version: '3.12'
|
||||||
|
|
||||||
|
- name: Install dependencies and local package otc-metadata package
|
||||||
|
run: |
|
||||||
|
python -m pip install --upgrade pip
|
||||||
|
pip install . -r tools-requirements.txt
|
||||||
|
|
||||||
|
- name: Update swiss and eu_de Opensearch indizies
|
||||||
|
run: |
|
||||||
|
python tools/index_metadata.py --hosts ${{ secrets.OPENSEARCH_HOST1 }} --target-environment public --index search_index_de --cloud-environment eu_de --username ${{ secrets.OPENSEARCH_USER }} --password ${{ secrets.OPENSEARCH_PW }} --delete-index
|
||||||
|
python tools/index_metadata.py --hosts ${{ secrets.OPENSEARCH_HOST1 }} --target-environment public --index search_index_swiss --cloud-environment swiss --username ${{ secrets.OPENSEARCH_USER }} --password ${{ secrets.OPENSEARCH_PW }} --delete-index
|
||||||
@ -52,3 +52,4 @@ the key is :code:`service_type` which has the foreign key in the
|
|||||||
document can only be linked to one service.
|
document can only be linked to one service.
|
||||||
The key :code:`service_category` table is :code:`name` of the service category
|
The key :code:`service_category` table is :code:`name` of the service category
|
||||||
which is then used in the :code:`services` table as foreign key.
|
which is then used in the :code:`services` table as foreign key.
|
||||||
|
|
||||||
|
|||||||
26
otc_metadata/data/README.md
Normal file
26
otc_metadata/data/README.md
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
# 📁 data/
|
||||||
|
|
||||||
|
This directory is the core of the metadata structure for Open Telekom Cloud Service Documentation. It contains structured definitions for services, their document types, categories, and repository configurations.
|
||||||
|
|
||||||
|
## 📂 Folder Overview
|
||||||
|
|
||||||
|
| Folder Name | Description |
|
||||||
|
|---------------------|-----------------------------------------------------------------------------|
|
||||||
|
| `services/` | Contains metadata for each individual service, including its cloud regions and access teams. |
|
||||||
|
| `documents/` | Holds metadata about documentation types (e.g., user guides, API refs) for each service and cloud region. |
|
||||||
|
| `service_categories/`| Lists available service categories used to group services (e.g., "Application", "Database"). |
|
||||||
|
| `repositories/` | Defines where the documentation source code is located (GitHub or Gitea) for each service per cloud environment. |
|
||||||
|
|
||||||
|
## 📦 Usage
|
||||||
|
|
||||||
|
These metadata files are used to:
|
||||||
|
- Build documentation portals.
|
||||||
|
- Generate links and visibility rules dynamically.
|
||||||
|
- Control contributor access.
|
||||||
|
- Connect documentation to source control repositories.
|
||||||
|
|
||||||
|
Each subfolder contains its own `README.md` with detailed field references and options.
|
||||||
|
|
||||||
|
## 📎 Example Structure
|
||||||
|
|
||||||
|

|
||||||
69
otc_metadata/data/documents/README.md
Normal file
69
otc_metadata/data/documents/README.md
Normal file
@ -0,0 +1,69 @@
|
|||||||
|
# 📁 documents/
|
||||||
|
|
||||||
|
This folder contains metadata about documentation files per service, such as user guides or API references. Each file describes a single document variant for a specific cloud environment.
|
||||||
|
|
||||||
|
## 🔧 Example: `ecs-umn.yaml`
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
---
|
||||||
|
hc_location: usermanual/ecs
|
||||||
|
html_location: docs/ecs/umn
|
||||||
|
link: /elastic-cloud-server/umn/
|
||||||
|
rst_location: umn/source
|
||||||
|
service_type: ecs
|
||||||
|
title: User Guide
|
||||||
|
type: umn
|
||||||
|
cloud_environments:
|
||||||
|
- name: eu_de
|
||||||
|
visibility: public
|
||||||
|
pdf_visibility: public
|
||||||
|
pdf_enabled: true
|
||||||
|
- name: swiss
|
||||||
|
visibility: public
|
||||||
|
pdf_visibility: public
|
||||||
|
pdf_enabled: true
|
||||||
|
```
|
||||||
|
|
||||||
|
## 🔧 Example: `ecs-api-ref.yaml`
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
---
|
||||||
|
hc_location: api/ecs
|
||||||
|
html_location: docs/ecs/api-ref
|
||||||
|
link: /elastic-cloud-server/api-ref/
|
||||||
|
rst_location: api-ref/source
|
||||||
|
service_type: ecs
|
||||||
|
title: API Reference
|
||||||
|
type: api-ref
|
||||||
|
cloud_environments:
|
||||||
|
- name: eu_de
|
||||||
|
visibility: public
|
||||||
|
pdf_visibility: public
|
||||||
|
pdf_enabled: true
|
||||||
|
- name: swiss
|
||||||
|
visibility: public
|
||||||
|
pdf_visibility: public
|
||||||
|
pdf_enabled: true
|
||||||
|
```
|
||||||
|
|
||||||
|
## Parameter Reference
|
||||||
|
|
||||||
|
| Field | Type | Description |
|
||||||
|
| -------------------- | ------ | -------------------------------------------------------- |
|
||||||
|
| `hc_location` | string | Path used in the Horizon Console. |
|
||||||
|
| `html_location` | string | Location of the built HTML output. |
|
||||||
|
| `link` | string | Target URL segment for this document. |
|
||||||
|
| `rst_location` | string | Source folder for `.rst` input. |
|
||||||
|
| `service_type` | string | Related service identifier (matches `services/`). |
|
||||||
|
| `title` | string | Display name of the document. |
|
||||||
|
| `type` | string | Document type (e.g., `umn`, `api-ref`, etc.). |
|
||||||
|
| `cloud_environments` | list | Region-specific metadata like visibility or PDF support. |
|
||||||
|
|
||||||
|
### `cloud_environments` Options:
|
||||||
|
|
||||||
|
| Field | Type | Allowed Values | Description |
|
||||||
|
| ---------------- | ------- | ------------------------------ | ---------------------------------- |
|
||||||
|
| `name` | string | e.g., `eu_de`, `swiss` | Name of the cloud region. |
|
||||||
|
| `visibility` | string | `public`, `internal`, `hidden` | Document visibility level. |
|
||||||
|
| `pdf_visibility` | string | `public`, `internal`, `hidden` | PDF visibility level |
|
||||||
|
| `pdf_enabled` | boolean | `true`, `false` | Enable PDF export |
|
||||||
@ -1,11 +1,11 @@
|
|||||||
---
|
---
|
||||||
hc_location: usermanual/aom
|
hc_location: api/aom
|
||||||
html_location: docs/aom/umn
|
html_location: docs/aom/api-ref
|
||||||
link: /application-operations-management/umn/
|
link: /application-operations-management/api-ref/
|
||||||
rst_location: umn/source
|
rst_location: api-ref/source
|
||||||
service_type: aom
|
service_type: aom
|
||||||
title: User Guide
|
title: API Reference
|
||||||
type: umn
|
type: api-ref
|
||||||
cloud_environments:
|
cloud_environments:
|
||||||
- name: eu_de
|
- name: eu_de
|
||||||
visibility: public
|
visibility: public
|
||||||
|
|||||||
@ -1,14 +0,0 @@
|
|||||||
---
|
|
||||||
hc_location: bestpractice/asm
|
|
||||||
html_location: docs/asm/best-practice
|
|
||||||
link: /application-service-mesh/best-practice/
|
|
||||||
rst_location: doc/best-practice/source
|
|
||||||
service_type: asm
|
|
||||||
title: Best Practice
|
|
||||||
type: best-practice
|
|
||||||
cloud_environments:
|
|
||||||
- name: eu_de
|
|
||||||
visibility: internal
|
|
||||||
pdf_visibility: public
|
|
||||||
pdf_enabled: true
|
|
||||||
disable_import: true
|
|
||||||
14
otc_metadata/data/documents/bcc-api-ref.yaml
Normal file
14
otc_metadata/data/documents/bcc-api-ref.yaml
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
---
|
||||||
|
hc_location: api/bcc
|
||||||
|
html_location: docs/bcc/api-ref
|
||||||
|
link: /business-continuity-center/api-ref/
|
||||||
|
rst_location: api-ref/source
|
||||||
|
service_type: bcc
|
||||||
|
title: API Reference
|
||||||
|
type: api-ref
|
||||||
|
disable_import: true
|
||||||
|
cloud_environments:
|
||||||
|
- name: eu_de
|
||||||
|
visibility: internal
|
||||||
|
pdf_visibility: internal
|
||||||
|
pdf_enabled: false
|
||||||
14
otc_metadata/data/documents/bcc-umn.yaml
Normal file
14
otc_metadata/data/documents/bcc-umn.yaml
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
---
|
||||||
|
hc_location: usermanual/bcc
|
||||||
|
html_location: docs/bcc/umn
|
||||||
|
link: /business-continuity-center/umn/
|
||||||
|
rst_location: umn/source
|
||||||
|
service_type: bcc
|
||||||
|
title: User Guide
|
||||||
|
type: umn
|
||||||
|
disable_import: true
|
||||||
|
cloud_environments:
|
||||||
|
- name: eu_de
|
||||||
|
visibility: internal
|
||||||
|
pdf_visibility: internal
|
||||||
|
pdf_enabled: false
|
||||||
13
otc_metadata/data/documents/bms-api-ref.yaml
Normal file
13
otc_metadata/data/documents/bms-api-ref.yaml
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
---
|
||||||
|
hc_location: api/bms
|
||||||
|
html_location: docs/bms/api-ref
|
||||||
|
link: /bare-metal-server/api-ref/
|
||||||
|
rst_location: api-ref/source
|
||||||
|
service_type: bms
|
||||||
|
title: API Reference
|
||||||
|
type: api-ref
|
||||||
|
cloud_environments:
|
||||||
|
- name: eu_de
|
||||||
|
visibility: public
|
||||||
|
pdf_visibility: public
|
||||||
|
pdf_enabled: true
|
||||||
13
otc_metadata/data/documents/bms-dev.yaml
Normal file
13
otc_metadata/data/documents/bms-dev.yaml
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
---
|
||||||
|
hc_location: devg/bms
|
||||||
|
html_location: docs/bms/dev
|
||||||
|
link: /bare-metal-server/dev-guide/
|
||||||
|
rst_location: dev_guide/source
|
||||||
|
service_type: bms
|
||||||
|
title: Developer Guide
|
||||||
|
type: dev
|
||||||
|
cloud_environments:
|
||||||
|
- name: eu_de
|
||||||
|
visibility: public
|
||||||
|
pdf_visibility: public
|
||||||
|
pdf_enabled: true
|
||||||
13
otc_metadata/data/documents/bms-image-creation-guide.yaml
Normal file
13
otc_metadata/data/documents/bms-image-creation-guide.yaml
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
---
|
||||||
|
hc_location: bpicg/bms
|
||||||
|
html_location: docs/bms/image-creation-guide
|
||||||
|
link: /bare-metal-server/image-creation-guide/
|
||||||
|
rst_location: doc/image-creation-guide/source
|
||||||
|
service_type: bms
|
||||||
|
title: Private Image Creation Guide
|
||||||
|
type: image-creation-guide
|
||||||
|
cloud_environments:
|
||||||
|
- name: eu_de
|
||||||
|
visibility: public
|
||||||
|
pdf_visibility: public
|
||||||
|
pdf_enabled: true
|
||||||
13
otc_metadata/data/documents/bms-umn.yaml
Normal file
13
otc_metadata/data/documents/bms-umn.yaml
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
---
|
||||||
|
hc_location: usermanual/bms
|
||||||
|
html_location: docs/bms/umn
|
||||||
|
link: /bare-metal-server/umn/
|
||||||
|
rst_location: umn/source
|
||||||
|
service_type: bms
|
||||||
|
title: User Guide
|
||||||
|
type: umn
|
||||||
|
cloud_environments:
|
||||||
|
- name: eu_de
|
||||||
|
visibility: public
|
||||||
|
pdf_visibility: public
|
||||||
|
pdf_enabled: true
|
||||||
17
otc_metadata/data/documents/cbr-api-ref.yaml
Normal file
17
otc_metadata/data/documents/cbr-api-ref.yaml
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
---
|
||||||
|
hc_location: api/cbr
|
||||||
|
html_location: docs/cbr/api-ref
|
||||||
|
link: /cloud-backup-recovery/api-ref/
|
||||||
|
rst_location: api-ref/source
|
||||||
|
service_type: cbr
|
||||||
|
title: API Reference
|
||||||
|
type: api-ref
|
||||||
|
cloud_environments:
|
||||||
|
- name: eu_de
|
||||||
|
visibility: public
|
||||||
|
pdf_visibility: public
|
||||||
|
pdf_enabled: true
|
||||||
|
- name: swiss
|
||||||
|
visibility: public
|
||||||
|
pdf_visibility: public
|
||||||
|
pdf_enabled: true
|
||||||
17
otc_metadata/data/documents/cbr-umn.yaml
Normal file
17
otc_metadata/data/documents/cbr-umn.yaml
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
---
|
||||||
|
hc_location: usermanual/cbr
|
||||||
|
html_location: docs/cbr/umn
|
||||||
|
link: /cloud-backup-recovery/umn/
|
||||||
|
rst_location: umn/source
|
||||||
|
service_type: cbr
|
||||||
|
title: User Guide
|
||||||
|
type: umn
|
||||||
|
cloud_environments:
|
||||||
|
- name: eu_de
|
||||||
|
visibility: public
|
||||||
|
pdf_visibility: public
|
||||||
|
pdf_enabled: true
|
||||||
|
- name: swiss
|
||||||
|
visibility: public
|
||||||
|
pdf_visibility: public
|
||||||
|
pdf_enabled: true
|
||||||
11
otc_metadata/data/documents/cc-api-ref.yaml
Normal file
11
otc_metadata/data/documents/cc-api-ref.yaml
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
---
|
||||||
|
link: /cloud-create/api-ref/
|
||||||
|
rst_location: api-ref/source
|
||||||
|
service_type: cc
|
||||||
|
title: API Reference
|
||||||
|
type: api-ref
|
||||||
|
cloud_environments:
|
||||||
|
- name: eu_de
|
||||||
|
visibility: public
|
||||||
|
pdf_visibility: public
|
||||||
|
pdf_enabled: true
|
||||||
12
otc_metadata/data/documents/cc-umn.yaml
Normal file
12
otc_metadata/data/documents/cc-umn.yaml
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
---
|
||||||
|
html_location: docs/cc/umn
|
||||||
|
link: /cloud-create/umn/
|
||||||
|
rst_location: umn/source
|
||||||
|
service_type: cc
|
||||||
|
title: User Guide
|
||||||
|
type: umn
|
||||||
|
cloud_environments:
|
||||||
|
- name: eu_de
|
||||||
|
visibility: public
|
||||||
|
pdf_visibility: public
|
||||||
|
pdf_enabled: true
|
||||||
17
otc_metadata/data/documents/cce-api-ref.yaml
Normal file
17
otc_metadata/data/documents/cce-api-ref.yaml
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
---
|
||||||
|
hc_location: api2/cce
|
||||||
|
html_location: docs/cce/api-ref
|
||||||
|
link: /cloud-container-engine/api-ref/
|
||||||
|
rst_location: api-ref/source
|
||||||
|
service_type: cce
|
||||||
|
title: API Reference
|
||||||
|
type: api-ref
|
||||||
|
cloud_environments:
|
||||||
|
- name: eu_de
|
||||||
|
visibility: public
|
||||||
|
pdf_visibility: public
|
||||||
|
pdf_enabled: false
|
||||||
|
- name: swiss
|
||||||
|
visibility: public
|
||||||
|
pdf_visibility: public
|
||||||
|
pdf_enabled: false
|
||||||
17
otc_metadata/data/documents/cce-umn.yaml
Normal file
17
otc_metadata/data/documents/cce-umn.yaml
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
---
|
||||||
|
hc_location: usermanual2/cce
|
||||||
|
html_location: docs/cce/umn
|
||||||
|
link: /cloud-container-engine/umn/
|
||||||
|
rst_location: umn/source
|
||||||
|
service_type: cce
|
||||||
|
title: User Guide
|
||||||
|
type: umn
|
||||||
|
cloud_environments:
|
||||||
|
- name: eu_de
|
||||||
|
visibility: public
|
||||||
|
pdf_visibility: public
|
||||||
|
pdf_enabled: false
|
||||||
|
- name: swiss
|
||||||
|
visibility: public
|
||||||
|
pdf_visibility: public
|
||||||
|
pdf_enabled: false
|
||||||
13
otc_metadata/data/documents/cci-api-ref.yaml
Normal file
13
otc_metadata/data/documents/cci-api-ref.yaml
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
---
|
||||||
|
hc_location: api/cci
|
||||||
|
html_location: docs/cci/api-ref
|
||||||
|
link: /cloud-container-instance/api-ref/
|
||||||
|
rst_location: api-ref/source
|
||||||
|
service_type: cci
|
||||||
|
title: API Reference
|
||||||
|
type: api-ref
|
||||||
|
cloud_environments:
|
||||||
|
- name: eu_de
|
||||||
|
visibility: public
|
||||||
|
pdf_visibility: public
|
||||||
|
pdf_enabled: true
|
||||||
13
otc_metadata/data/documents/cci-umn.yaml
Normal file
13
otc_metadata/data/documents/cci-umn.yaml
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
---
|
||||||
|
hc_location: usermanual/cci
|
||||||
|
html_location: docs/cci/umn
|
||||||
|
link: /cloud-container-instance/umn/
|
||||||
|
rst_location: umn/source
|
||||||
|
service_type: cci
|
||||||
|
title: User Guide
|
||||||
|
type: umn
|
||||||
|
cloud_environments:
|
||||||
|
- name: eu_de
|
||||||
|
visibility: public
|
||||||
|
pdf_visibility: public
|
||||||
|
pdf_enabled: true
|
||||||
13
otc_metadata/data/documents/ccn-api-ref.yaml
Normal file
13
otc_metadata/data/documents/ccn-api-ref.yaml
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
---
|
||||||
|
hc_location: api/cc
|
||||||
|
html_location: docs/ccn/api-ref
|
||||||
|
link: /cloud-connect/api-ref/
|
||||||
|
rst_location: api-ref/source
|
||||||
|
service_type: ccn
|
||||||
|
title: API Reference
|
||||||
|
type: api-ref
|
||||||
|
cloud_environments:
|
||||||
|
- name: eu_de
|
||||||
|
visibility: internal
|
||||||
|
pdf_visibility: public
|
||||||
|
pdf_enabled: true
|
||||||
13
otc_metadata/data/documents/ccn-umn.yaml
Normal file
13
otc_metadata/data/documents/ccn-umn.yaml
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
---
|
||||||
|
hc_location: usermanual/cc
|
||||||
|
html_location: docs/ccn/umn
|
||||||
|
link: /cloud-connect/umn/
|
||||||
|
rst_location: umn/source
|
||||||
|
service_type: ccn
|
||||||
|
title: User Guide
|
||||||
|
type: umn
|
||||||
|
cloud_environments:
|
||||||
|
- name: eu_de
|
||||||
|
visibility: internal
|
||||||
|
pdf_visibility: public
|
||||||
|
pdf_enabled: true
|
||||||
17
otc_metadata/data/documents/ces-api-ref.yaml
Normal file
17
otc_metadata/data/documents/ces-api-ref.yaml
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
---
|
||||||
|
hc_location: api/ces
|
||||||
|
html_location: docs/ces/api-ref
|
||||||
|
link: /cloud-eye/api-ref/
|
||||||
|
rst_location: api-ref/source
|
||||||
|
service_type: ces
|
||||||
|
title: API Reference
|
||||||
|
type: api-ref
|
||||||
|
cloud_environments:
|
||||||
|
- name: eu_de
|
||||||
|
visibility: public
|
||||||
|
pdf_visibility: public
|
||||||
|
pdf_enabled: true
|
||||||
|
- name: swiss
|
||||||
|
visibility: public
|
||||||
|
pdf_visibility: public
|
||||||
|
pdf_enabled: true
|
||||||
17
otc_metadata/data/documents/ces-umn.yaml
Normal file
17
otc_metadata/data/documents/ces-umn.yaml
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
---
|
||||||
|
hc_location: usermanual/ces
|
||||||
|
html_location: docs/ces/umn
|
||||||
|
link: /cloud-eye/umn/
|
||||||
|
rst_location: umn/source
|
||||||
|
service_type: ces
|
||||||
|
title: User Guide
|
||||||
|
type: umn
|
||||||
|
cloud_environments:
|
||||||
|
- name: eu_de
|
||||||
|
visibility: public
|
||||||
|
pdf_visibility: public
|
||||||
|
pdf_enabled: true
|
||||||
|
- name: swiss
|
||||||
|
visibility: public
|
||||||
|
pdf_visibility: public
|
||||||
|
pdf_enabled: true
|
||||||
13
otc_metadata/data/documents/cfw-api-ref.yaml
Normal file
13
otc_metadata/data/documents/cfw-api-ref.yaml
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
---
|
||||||
|
hc_location: api/cfw
|
||||||
|
html_location: docs/cfw/api-ref
|
||||||
|
link: /cloud-firewall/api-ref/
|
||||||
|
rst_location: api-ref/source
|
||||||
|
service_type: cfw
|
||||||
|
title: API Reference
|
||||||
|
type: api-ref
|
||||||
|
cloud_environments:
|
||||||
|
- name: eu_de
|
||||||
|
visibility: public
|
||||||
|
pdf_visibility: public
|
||||||
|
pdf_enabled: true
|
||||||
13
otc_metadata/data/documents/cfw-umn.yaml
Normal file
13
otc_metadata/data/documents/cfw-umn.yaml
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
---
|
||||||
|
hc_location: usermanual/cfw
|
||||||
|
html_location: docs/cfw/umn
|
||||||
|
link: /cloud-firewall/umn/
|
||||||
|
rst_location: umn/source
|
||||||
|
service_type: cfw
|
||||||
|
title: User Guide
|
||||||
|
type: umn
|
||||||
|
cloud_environments:
|
||||||
|
- name: eu_de
|
||||||
|
visibility: public
|
||||||
|
pdf_visibility: public
|
||||||
|
pdf_enabled: true
|
||||||
13
otc_metadata/data/documents/config-api-ref.yaml
Normal file
13
otc_metadata/data/documents/config-api-ref.yaml
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
---
|
||||||
|
hc_location: api/rms
|
||||||
|
html_location: docs/config/api-ref
|
||||||
|
link: /config/api-ref/
|
||||||
|
rst_location: api-ref/source
|
||||||
|
service_type: config
|
||||||
|
title: API Reference
|
||||||
|
type: api-ref
|
||||||
|
cloud_environments:
|
||||||
|
- name: eu_de
|
||||||
|
visibility: public
|
||||||
|
pdf_visibility: public
|
||||||
|
pdf_enabled: true
|
||||||
13
otc_metadata/data/documents/config-umn.yaml
Normal file
13
otc_metadata/data/documents/config-umn.yaml
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
---
|
||||||
|
hc_location: usermanual/rms
|
||||||
|
html_location: docs/config/umn
|
||||||
|
link: /config/umn/
|
||||||
|
rst_location: umn/source
|
||||||
|
service_type: config
|
||||||
|
title: User Guide
|
||||||
|
type: umn
|
||||||
|
cloud_environments:
|
||||||
|
- name: eu_de
|
||||||
|
visibility: public
|
||||||
|
pdf_visibility: public
|
||||||
|
pdf_enabled: true
|
||||||
13
otc_metadata/data/documents/csbs-api-ref.yaml
Normal file
13
otc_metadata/data/documents/csbs-api-ref.yaml
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
---
|
||||||
|
hc_location: api/csbs
|
||||||
|
html_location: docs/csbs/api-ref
|
||||||
|
link: /cloud-server-backup-service/api-ref/
|
||||||
|
rst_location: api-ref/source
|
||||||
|
service_type: csbs
|
||||||
|
title: API Reference
|
||||||
|
type: api-ref
|
||||||
|
cloud_environments:
|
||||||
|
- name: eu_de
|
||||||
|
visibility: public
|
||||||
|
pdf_visibility: public
|
||||||
|
pdf_enabled: true
|
||||||
13
otc_metadata/data/documents/csbs-umn.yaml
Normal file
13
otc_metadata/data/documents/csbs-umn.yaml
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
---
|
||||||
|
hc_location: usermanual/csbs
|
||||||
|
html_location: docs/csbs/umn
|
||||||
|
link: /cloud-server-backup-service/umn/
|
||||||
|
rst_location: umn/source
|
||||||
|
service_type: csbs
|
||||||
|
title: User Guide
|
||||||
|
type: umn
|
||||||
|
cloud_environments:
|
||||||
|
- name: eu_de
|
||||||
|
visibility: public
|
||||||
|
pdf_visibility: public
|
||||||
|
pdf_enabled: true
|
||||||
13
otc_metadata/data/documents/cse-api-ref.yaml
Normal file
13
otc_metadata/data/documents/cse-api-ref.yaml
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
---
|
||||||
|
hc_location: api/cse
|
||||||
|
html_location: docs/cse/api-ref
|
||||||
|
link: /cloud-service-engine/api-ref/
|
||||||
|
rst_location: api-ref/source
|
||||||
|
service_type: cse
|
||||||
|
title: API Reference
|
||||||
|
type: api-ref
|
||||||
|
cloud_environments:
|
||||||
|
- name: eu_de
|
||||||
|
visibility: internal
|
||||||
|
pdf_visibility: public
|
||||||
|
pdf_enabled: true
|
||||||
13
otc_metadata/data/documents/cse-umn.yaml
Normal file
13
otc_metadata/data/documents/cse-umn.yaml
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
---
|
||||||
|
hc_location: usermanual/cse
|
||||||
|
html_location: docs/cse/umn
|
||||||
|
link: /cloud-service-engine/umn/
|
||||||
|
rst_location: umn/source
|
||||||
|
service_type: cse
|
||||||
|
title: User Guide
|
||||||
|
type: umn
|
||||||
|
cloud_environments:
|
||||||
|
- name: eu_de
|
||||||
|
visibility: internal
|
||||||
|
pdf_visibility: public
|
||||||
|
pdf_enabled: true
|
||||||
13
otc_metadata/data/documents/css-api-ref.yaml
Normal file
13
otc_metadata/data/documents/css-api-ref.yaml
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
---
|
||||||
|
hc_location: api/css
|
||||||
|
html_location: docs/css/api-ref
|
||||||
|
link: /cloud-search-service/api-ref/
|
||||||
|
rst_location: api-ref/source
|
||||||
|
service_type: css
|
||||||
|
title: API Reference
|
||||||
|
type: api-ref
|
||||||
|
cloud_environments:
|
||||||
|
- name: eu_de
|
||||||
|
visibility: public
|
||||||
|
pdf_visibility: public
|
||||||
|
pdf_enabled: true
|
||||||
14
otc_metadata/data/documents/css-best-practice.yaml
Normal file
14
otc_metadata/data/documents/css-best-practice.yaml
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
---
|
||||||
|
hc_location: bestpractice/css
|
||||||
|
html_location: docs/css/best-practice
|
||||||
|
link: /cloud-search-service/best-practice/
|
||||||
|
rst_location: doc/best-practice/source
|
||||||
|
service_type: css
|
||||||
|
title: Best Practice
|
||||||
|
type: best-practice
|
||||||
|
disable_import: true
|
||||||
|
cloud_environments:
|
||||||
|
- name: eu_de
|
||||||
|
visibility: public
|
||||||
|
pdf_visibility: public
|
||||||
|
pdf_enabled: true
|
||||||
13
otc_metadata/data/documents/css-koosearch-api-ref.yaml
Normal file
13
otc_metadata/data/documents/css-koosearch-api-ref.yaml
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
---
|
||||||
|
hc_location: koosearch-api/css
|
||||||
|
html_location: docs/css/koosearch-api-ref
|
||||||
|
link: /cloud-search-service/koosearch-api-ref/
|
||||||
|
rst_location: doc/koosearch-api-ref/source
|
||||||
|
service_type: css
|
||||||
|
title: Koosearch API Reference
|
||||||
|
type: koosearch-api-ref
|
||||||
|
cloud_environments:
|
||||||
|
- name: eu_de
|
||||||
|
visibility: internal
|
||||||
|
pdf_visibility: public
|
||||||
|
pdf_enabled: true
|
||||||
13
otc_metadata/data/documents/css-koosearch-umn.yaml
Normal file
13
otc_metadata/data/documents/css-koosearch-umn.yaml
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
---
|
||||||
|
hc_location: koosearch-usermanual/css
|
||||||
|
html_location: docs/css/koosearch-umn
|
||||||
|
link: /cloud-search-service/koosearch-umn/
|
||||||
|
rst_location: doc/koosearch-umn/source
|
||||||
|
service_type: css
|
||||||
|
title: Koosearch User Guide
|
||||||
|
type: koosearch-umn
|
||||||
|
cloud_environments:
|
||||||
|
- name: eu_de
|
||||||
|
visibility: internal
|
||||||
|
pdf_visibility: public
|
||||||
|
pdf_enabled: true
|
||||||
13
otc_metadata/data/documents/css-umn.yaml
Normal file
13
otc_metadata/data/documents/css-umn.yaml
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
---
|
||||||
|
hc_location: usermanual/css
|
||||||
|
html_location: docs/css/umn
|
||||||
|
link: /cloud-search-service/umn/
|
||||||
|
rst_location: umn/source
|
||||||
|
service_type: css
|
||||||
|
title: User Guide
|
||||||
|
type: umn
|
||||||
|
cloud_environments:
|
||||||
|
- name: eu_de
|
||||||
|
visibility: public
|
||||||
|
pdf_visibility: public
|
||||||
|
pdf_enabled: true
|
||||||
17
otc_metadata/data/documents/cts-api-ref.yaml
Normal file
17
otc_metadata/data/documents/cts-api-ref.yaml
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
---
|
||||||
|
hc_location: api/cts
|
||||||
|
html_location: docs/cts/api-ref
|
||||||
|
link: /cloud-trace-service/api-ref/
|
||||||
|
rst_location: api-ref/source
|
||||||
|
service_type: cts
|
||||||
|
title: API Reference
|
||||||
|
type: api-ref
|
||||||
|
cloud_environments:
|
||||||
|
- name: eu_de
|
||||||
|
visibility: public
|
||||||
|
pdf_visibility: public
|
||||||
|
pdf_enabled: true
|
||||||
|
- name: swiss
|
||||||
|
visibility: public
|
||||||
|
pdf_visibility: public
|
||||||
|
pdf_enabled: true
|
||||||
17
otc_metadata/data/documents/cts-umn.yaml
Normal file
17
otc_metadata/data/documents/cts-umn.yaml
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
---
|
||||||
|
hc_location: usermanual/cts
|
||||||
|
html_location: docs/cts/umn
|
||||||
|
link: /cloud-trace-service/umn/
|
||||||
|
rst_location: umn/source
|
||||||
|
service_type: cts
|
||||||
|
title: User Guide
|
||||||
|
type: umn
|
||||||
|
cloud_environments:
|
||||||
|
- name: eu_de
|
||||||
|
visibility: public
|
||||||
|
pdf_visibility: public
|
||||||
|
pdf_enabled: true
|
||||||
|
- name: swiss
|
||||||
|
visibility: public
|
||||||
|
pdf_visibility: public
|
||||||
|
pdf_enabled: true
|
||||||
13
otc_metadata/data/documents/das-api-ref.yaml
Normal file
13
otc_metadata/data/documents/das-api-ref.yaml
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
---
|
||||||
|
hc_location: api/das
|
||||||
|
html_location: docs/das/api-ref
|
||||||
|
link: /data-admin-service/api-ref/
|
||||||
|
rst_location: api-ref/source
|
||||||
|
service_type: das
|
||||||
|
title: API Reference
|
||||||
|
type: api-ref
|
||||||
|
cloud_environments:
|
||||||
|
- name: eu_de
|
||||||
|
visibility: internal
|
||||||
|
pdf_visibility: public
|
||||||
|
pdf_enabled: true
|
||||||
13
otc_metadata/data/documents/das-umn.yaml
Normal file
13
otc_metadata/data/documents/das-umn.yaml
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
---
|
||||||
|
hc_location: usermanual/das
|
||||||
|
html_location: docs/das/umn
|
||||||
|
link: /data-admin-service/umn/
|
||||||
|
rst_location: umn/source
|
||||||
|
service_type: das
|
||||||
|
title: User Guide
|
||||||
|
type: umn
|
||||||
|
cloud_environments:
|
||||||
|
- name: eu_de
|
||||||
|
visibility: internal
|
||||||
|
pdf_visibility: public
|
||||||
|
pdf_enabled: true
|
||||||
13
otc_metadata/data/documents/dataarts_studio-api-ref.yaml
Normal file
13
otc_metadata/data/documents/dataarts_studio-api-ref.yaml
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
---
|
||||||
|
hc_location: api/dataartsstudio
|
||||||
|
html_location: docs/dataartsstudio/api-ref
|
||||||
|
link: /data-arts-studio/api-ref/
|
||||||
|
rst_location: api-ref/source
|
||||||
|
service_type: dataarts_studio
|
||||||
|
title: API Reference
|
||||||
|
type: api-ref
|
||||||
|
cloud_environments:
|
||||||
|
- name: eu_de
|
||||||
|
visibility: public
|
||||||
|
pdf_visibility: public
|
||||||
|
pdf_enabled: true
|
||||||
13
otc_metadata/data/documents/dataarts_studio-umn.yaml
Normal file
13
otc_metadata/data/documents/dataarts_studio-umn.yaml
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
---
|
||||||
|
hc_location: usermanual/dataartsstudio
|
||||||
|
html_location: docs/dataartsstudio/umn
|
||||||
|
link: /data-arts-studio/umn/
|
||||||
|
rst_location: umn/source
|
||||||
|
service_type: dataarts_studio
|
||||||
|
title: User Guide
|
||||||
|
type: umn
|
||||||
|
cloud_environments:
|
||||||
|
- name: eu_de
|
||||||
|
visibility: public
|
||||||
|
pdf_visibility: public
|
||||||
|
pdf_enabled: true
|
||||||
13
otc_metadata/data/documents/dbss-api-ref.yaml
Normal file
13
otc_metadata/data/documents/dbss-api-ref.yaml
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
---
|
||||||
|
hc_location: api/dbss
|
||||||
|
html_location: docs/dbss/api-ref
|
||||||
|
link: /database-security-service/api-ref/
|
||||||
|
rst_location: api-ref/source
|
||||||
|
service_type: dbss
|
||||||
|
title: API Reference
|
||||||
|
type: api-ref
|
||||||
|
cloud_environments:
|
||||||
|
- name: eu_de
|
||||||
|
visibility: internal
|
||||||
|
pdf_visibility: public
|
||||||
|
pdf_enabled: true
|
||||||
13
otc_metadata/data/documents/dbss-umn.yaml
Normal file
13
otc_metadata/data/documents/dbss-umn.yaml
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
---
|
||||||
|
hc_location: usermanual/dbss
|
||||||
|
html_location: docs/dbss/umn
|
||||||
|
link: /database-security-service/umn/
|
||||||
|
rst_location: umn/source
|
||||||
|
service_type: dbss
|
||||||
|
title: User Guide
|
||||||
|
type: umn
|
||||||
|
cloud_environments:
|
||||||
|
- name: eu_de
|
||||||
|
visibility: public
|
||||||
|
pdf_visibility: public
|
||||||
|
pdf_enabled: true
|
||||||
17
otc_metadata/data/documents/dc-api-ref.yaml
Normal file
17
otc_metadata/data/documents/dc-api-ref.yaml
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
---
|
||||||
|
hc_location: api/dc
|
||||||
|
html_location: docs/dc/api-ref
|
||||||
|
link: /direct-connect/api-ref/
|
||||||
|
rst_location: api-ref/source
|
||||||
|
service_type: dc
|
||||||
|
title: API Reference
|
||||||
|
type: api-ref
|
||||||
|
cloud_environments:
|
||||||
|
- name: eu_de
|
||||||
|
visibility: public
|
||||||
|
pdf_visibility: public
|
||||||
|
pdf_enabled: true
|
||||||
|
- name: swiss
|
||||||
|
visibility: public
|
||||||
|
pdf_visibility: public
|
||||||
|
pdf_enabled: true
|
||||||
17
otc_metadata/data/documents/dc-umn.yaml
Normal file
17
otc_metadata/data/documents/dc-umn.yaml
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
---
|
||||||
|
hc_location: usermanual/dc
|
||||||
|
html_location: docs/dc/umn
|
||||||
|
link: /direct-connect/umn/
|
||||||
|
rst_location: umn/source
|
||||||
|
service_type: dc
|
||||||
|
title: User Guide
|
||||||
|
type: umn
|
||||||
|
cloud_environments:
|
||||||
|
- name: eu_de
|
||||||
|
visibility: public
|
||||||
|
pdf_visibility: public
|
||||||
|
pdf_enabled: true
|
||||||
|
- name: swiss
|
||||||
|
visibility: public
|
||||||
|
pdf_visibility: public
|
||||||
|
pdf_enabled: true
|
||||||
13
otc_metadata/data/documents/dcs-api-ref.yaml
Normal file
13
otc_metadata/data/documents/dcs-api-ref.yaml
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
---
|
||||||
|
hc_location: api/dcs
|
||||||
|
html_location: docs/dcs/api-ref
|
||||||
|
link: /distributed-cache-service/api-ref/
|
||||||
|
rst_location: api-ref/source
|
||||||
|
service_type: dcs
|
||||||
|
title: API Reference
|
||||||
|
type: api-ref
|
||||||
|
cloud_environments:
|
||||||
|
- name: eu_de
|
||||||
|
visibility: public
|
||||||
|
pdf_visibility: public
|
||||||
|
pdf_enabled: true
|
||||||
13
otc_metadata/data/documents/dcs-umn.yaml
Normal file
13
otc_metadata/data/documents/dcs-umn.yaml
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
---
|
||||||
|
hc_location: usermanual/dcs
|
||||||
|
html_location: docs/dcs/umn
|
||||||
|
link: /distributed-cache-service/umn/
|
||||||
|
rst_location: umn/source
|
||||||
|
service_type: dcs
|
||||||
|
title: User Guide
|
||||||
|
type: umn
|
||||||
|
cloud_environments:
|
||||||
|
- name: eu_de
|
||||||
|
visibility: public
|
||||||
|
pdf_visibility: public
|
||||||
|
pdf_enabled: true
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user