Compare commits
84 Commits
e66aaf42d8
...
apig-devgu
Author | SHA1 | Date | |
---|---|---|---|
4175a39dd2 | |||
f217cafb1b | |||
663cfbed75 | |||
c7487fc72e | |||
482da3c6a3 | |||
43bbbe9e58 | |||
fdd17acc16 | |||
59a2ba8137 | |||
2275b9ddfd | |||
ac79a500b4 | |||
90a9117b8d | |||
61f2419fab | |||
516716bf33 | |||
a3b9946169 | |||
7af1b5dcdb | |||
be8fad03bc | |||
92bf54ed0b | |||
842a30fe3d | |||
c7558639bb | |||
3062b7d309 | |||
d91d67c912 | |||
4095fcd384 | |||
c9461de490 | |||
6cfd6ae04b | |||
a51b2fcc76 | |||
adc0cb82c3 | |||
cd6241bef5 | |||
cb2e4bd9d4 | |||
5b23c77309 | |||
c1c45ec37d | |||
e0b234d46f | |||
762eac98a6 | |||
f11e3fc8fc | |||
ef7985a733 | |||
28a1c05d34 | |||
1d8f91ff0b | |||
efecf2237d | |||
ba4d942a1e | |||
bda2e6aa21 | |||
b9d235abc0 | |||
f06f533823 | |||
b4290744e3 | |||
293b2c3995 | |||
dd208417ed | |||
66723e88e7 | |||
a1eeaf4582 | |||
350562863a | |||
130ebd1e3c | |||
dcdd3a11fa | |||
a0cbeab804 | |||
1463752b05 | |||
c3da96dfcc | |||
1da04761d3 | |||
430f56bf4b | |||
20badf31c2 | |||
9b0bdba3f4 | |||
998a160512 | |||
7bab061bd2 | |||
e3be33c237 | |||
260131750b | |||
bef7f69c24 | |||
78858af9d0 | |||
064f74aeaf | |||
ebb139332e | |||
9eb502ab77 | |||
c4290b46bb | |||
3392aea1ac | |||
2b4f4e3d6a | |||
34b4466184 | |||
c3ba114fef | |||
f798833162 | |||
987ad4ac57 | |||
54afd0bfe9 | |||
f533fee17f | |||
4cf33fc15b | |||
49db7c7fd1 | |||
6f07280954 | |||
6a96bfc07f | |||
2795fb42eb | |||
c0de8bf198 | |||
5e2b62b480 | |||
3e3441973c | |||
19248854d4 | |||
4541a4e276 |
3
.gitignore
vendored
3
.gitignore
vendored
@ -59,3 +59,6 @@ ChangeLog
|
|||||||
|
|
||||||
# Files created by releasenotes build
|
# Files created by releasenotes build
|
||||||
releasenotes/build
|
releasenotes/build
|
||||||
|
|
||||||
|
bindep.txt
|
||||||
|
packages.txt
|
@ -9,13 +9,13 @@
|
|||||||
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
||||||
# License for the specific language governing permissions and limitations
|
# License for the specific language governing permissions and limitations
|
||||||
# under the License.
|
# under the License.
|
||||||
__all__ = ['__version__', 'Docs']
|
__all__ = ["__version__", "Docs"]
|
||||||
|
|
||||||
import pbr.version
|
import pbr.version
|
||||||
|
|
||||||
from otc_metadata.services import Services # flake8: noqa
|
from otc_metadata.services import Services # flake8: noqa
|
||||||
|
|
||||||
__version__ = pbr.version.VersionInfo('otc-metadata').version_string()
|
__version__ = pbr.version.VersionInfo("otc-metadata").version_string()
|
||||||
_service_manager = None
|
_service_manager = None
|
||||||
|
|
||||||
|
|
||||||
|
@ -12,30 +12,45 @@
|
|||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
|
|
||||||
import os
|
import os
|
||||||
|
import pathlib
|
||||||
import yaml
|
import yaml
|
||||||
|
|
||||||
__all__ = ['read_data']
|
__all__ = ["read_data"]
|
||||||
|
|
||||||
DATA_DIR = os.path.dirname(__file__)
|
DATA_DIR = os.path.dirname(__file__)
|
||||||
|
|
||||||
|
|
||||||
def read_data(filename):
|
def read_data(filename):
|
||||||
"""Return data that is shipped inside the Python package.
|
"""Return data that is shipped inside the Python package."""
|
||||||
|
|
||||||
"""
|
|
||||||
|
|
||||||
filepath = os.path.join(DATA_DIR, filename)
|
filepath = os.path.join(DATA_DIR, filename)
|
||||||
with open(filepath, 'r') as fd:
|
with open(filepath, "r") as fd:
|
||||||
return yaml.safe_load(fd)
|
data = yaml.safe_load(fd)
|
||||||
|
# Merge data found in individual element files
|
||||||
|
data.setdefault("documents", list())
|
||||||
|
data.setdefault("services", list())
|
||||||
|
data.setdefault("service_categories", list())
|
||||||
|
for item in pathlib.Path(DATA_DIR, "documents").glob("*.yaml"):
|
||||||
|
with open(item, "r") as fp:
|
||||||
|
data["documents"].append(yaml.safe_load(fp))
|
||||||
|
for item in pathlib.Path(DATA_DIR, "services").glob("*.yaml"):
|
||||||
|
with open(item, "r") as fp:
|
||||||
|
data["services"].append(yaml.safe_load(fp))
|
||||||
|
for item in pathlib.Path(DATA_DIR, "service_categories").glob(
|
||||||
|
"*.yaml"
|
||||||
|
):
|
||||||
|
with open(item, "r") as fp:
|
||||||
|
data["service_categories"].append(yaml.safe_load(fp))
|
||||||
|
|
||||||
|
return data
|
||||||
|
|
||||||
|
|
||||||
def rewrite_data(filename, data):
|
def rewrite_data(filename, data):
|
||||||
"""Rewrites data formatting it
|
"""Rewrites data formatting it"""
|
||||||
|
|
||||||
"""
|
|
||||||
from ruamel.yaml import YAML
|
from ruamel.yaml import YAML
|
||||||
|
|
||||||
_yaml = YAML()
|
_yaml = YAML()
|
||||||
_yaml.indent(mapping=2, sequence=4, offset=2)
|
_yaml.indent(mapping=2, sequence=4, offset=2)
|
||||||
filepath = os.path.join(DATA_DIR, filename)
|
filepath = os.path.join(DATA_DIR, filename)
|
||||||
with open(filepath, 'w') as fd:
|
with open(filepath, "w") as fd:
|
||||||
_yaml.dump(data, fd)
|
_yaml.dump(data, fd)
|
||||||
|
8
otc_metadata/data/documents/ac-blueprints.yaml
Normal file
8
otc_metadata/data/documents/ac-blueprints.yaml
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
---
|
||||||
|
environment: public
|
||||||
|
link: /architecture-center/blueprints/
|
||||||
|
pdf_name: architecture-center-blueprints
|
||||||
|
rst_location: doc/blueprints/source
|
||||||
|
service_type: ac
|
||||||
|
title: Blueprints
|
||||||
|
type: blueprints
|
@ -0,0 +1,8 @@
|
|||||||
|
---
|
||||||
|
environment: internal
|
||||||
|
link: /architecture-center/caf/
|
||||||
|
pdf_name: architecture-center-cloud-adoption-framework
|
||||||
|
rst_location: doc/caf/source
|
||||||
|
service_type: ac
|
||||||
|
title: Cloud Adoption Framework
|
||||||
|
type: caf
|
9
otc_metadata/data/documents/antiddos-api-ref.yaml
Normal file
9
otc_metadata/data/documents/antiddos-api-ref.yaml
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
---
|
||||||
|
hc_location: api/antiddos
|
||||||
|
html_location: docs/antiddos/api-ref
|
||||||
|
link: /anti-ddos/api-ref/
|
||||||
|
pdf_name: antiddos-api-ref
|
||||||
|
rst_location: api-ref/source
|
||||||
|
service_type: antiddos
|
||||||
|
title: API Reference
|
||||||
|
type: api-ref
|
9
otc_metadata/data/documents/antiddos-umn.yaml
Normal file
9
otc_metadata/data/documents/antiddos-umn.yaml
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
---
|
||||||
|
hc_location: usermanual/antiddos
|
||||||
|
html_location: docs/antiddos/umn
|
||||||
|
link: /anti-ddos/umn/
|
||||||
|
pdf_name: antiddos-umn
|
||||||
|
rst_location: umn/source
|
||||||
|
service_type: antiddos
|
||||||
|
title: User Guide
|
||||||
|
type: umn
|
9
otc_metadata/data/documents/aom-api-ref.yaml
Normal file
9
otc_metadata/data/documents/aom-api-ref.yaml
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
---
|
||||||
|
hc_location: api/aom
|
||||||
|
html_location: docs/aom/api-ref
|
||||||
|
link: /application-operations-management/api-ref/
|
||||||
|
pdf_name: aom-api-ref
|
||||||
|
rst_location: api-ref/source
|
||||||
|
service_type: aom
|
||||||
|
title: API Reference
|
||||||
|
type: api-ref
|
9
otc_metadata/data/documents/aom-umn.yaml
Normal file
9
otc_metadata/data/documents/aom-umn.yaml
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
---
|
||||||
|
hc_location: usermanual/aom
|
||||||
|
html_location: docs/aom/umn
|
||||||
|
link: /application-operations-management/umn/
|
||||||
|
pdf_name: aom-umn
|
||||||
|
rst_location: umn/source
|
||||||
|
service_type: aom
|
||||||
|
title: User Guide
|
||||||
|
type: umn
|
10
otc_metadata/data/documents/aom2-api-ref.yaml
Normal file
10
otc_metadata/data/documents/aom2-api-ref.yaml
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
---
|
||||||
|
environment: internal
|
||||||
|
hc_location: api/aom2
|
||||||
|
html_location: docs/aom2/api-ref
|
||||||
|
link: /application-operations-management-2/api-ref/
|
||||||
|
pdf_name: aom2-api-ref
|
||||||
|
rst_location: api-ref/source
|
||||||
|
service_type: aom2
|
||||||
|
title: API Reference
|
||||||
|
type: api-ref
|
10
otc_metadata/data/documents/aom2-umn.yaml
Normal file
10
otc_metadata/data/documents/aom2-umn.yaml
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
---
|
||||||
|
environment: internal
|
||||||
|
hc_location: usermanual/aom2
|
||||||
|
html_location: docs/aom2/umn
|
||||||
|
link: /application-operations-management-2/umn/
|
||||||
|
pdf_name: aom2-umn
|
||||||
|
rst_location: umn/source
|
||||||
|
service_type: aom2
|
||||||
|
title: User Guide
|
||||||
|
type: umn
|
9
otc_metadata/data/documents/apig-api-ref.yaml
Normal file
9
otc_metadata/data/documents/apig-api-ref.yaml
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
---
|
||||||
|
hc_location: api/apig
|
||||||
|
html_location: docs/apig/api-ref
|
||||||
|
link: /api-gateway/api-ref/
|
||||||
|
pdf_name: apig-api-ref
|
||||||
|
rst_location: api-ref/source
|
||||||
|
service_type: apig
|
||||||
|
title: API Reference
|
||||||
|
type: api-ref
|
10
otc_metadata/data/documents/apig-dev.yaml
Normal file
10
otc_metadata/data/documents/apig-dev.yaml
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
---
|
||||||
|
environment: hidden
|
||||||
|
hc_location: devg/apig
|
||||||
|
html_location: docs/apig/dev
|
||||||
|
link: /api-gateway/dev-guide/
|
||||||
|
pdf_name: apig-dev-guide
|
||||||
|
rst_location: dev_guide/source
|
||||||
|
service_type: apig
|
||||||
|
title: Developer Guide
|
||||||
|
type: dev
|
9
otc_metadata/data/documents/apig-umn.yaml
Normal file
9
otc_metadata/data/documents/apig-umn.yaml
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
---
|
||||||
|
hc_location: usermanual/apig
|
||||||
|
html_location: docs/apig/umn
|
||||||
|
link: /api-gateway/umn/
|
||||||
|
pdf_name: apig-umn
|
||||||
|
rst_location: umn/source
|
||||||
|
service_type: apig
|
||||||
|
title: User Guide
|
||||||
|
type: umn
|
10
otc_metadata/data/documents/apiu-guidelines.yaml
Normal file
10
otc_metadata/data/documents/apiu-guidelines.yaml
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
---
|
||||||
|
environment: internal
|
||||||
|
hc_location: api-usage/guidelines
|
||||||
|
html_location: docs/apiu/guidelines
|
||||||
|
link: /api-usage/guidelines/
|
||||||
|
pdf_name: apiu-guidelines
|
||||||
|
rst_location: doc/guidelines/source
|
||||||
|
service_type: apiu
|
||||||
|
title: API Usage Guidelines
|
||||||
|
type: guidelines
|
10
otc_metadata/data/documents/apm-api-ref.yaml
Normal file
10
otc_metadata/data/documents/apm-api-ref.yaml
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
---
|
||||||
|
environment: internal
|
||||||
|
hc_location: api/apm
|
||||||
|
html_location: docs/apm/api-ref
|
||||||
|
link: /application-performance-management/api-ref/
|
||||||
|
pdf_name: apm-api-ref
|
||||||
|
rst_location: api-ref/source
|
||||||
|
service_type: apm
|
||||||
|
title: API Reference
|
||||||
|
type: api-ref
|
10
otc_metadata/data/documents/apm-umn.yaml
Normal file
10
otc_metadata/data/documents/apm-umn.yaml
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
---
|
||||||
|
environment: internal
|
||||||
|
hc_location: usermanual/apm
|
||||||
|
html_location: docs/apm/umn
|
||||||
|
link: /application-performance-management/umn/
|
||||||
|
pdf_name: apm-umn
|
||||||
|
rst_location: umn/source
|
||||||
|
service_type: apm
|
||||||
|
title: User Guide
|
||||||
|
type: umn
|
9
otc_metadata/data/documents/as-api-ref.yaml
Normal file
9
otc_metadata/data/documents/as-api-ref.yaml
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
---
|
||||||
|
hc_location: api/as
|
||||||
|
html_location: docs/as/api-ref
|
||||||
|
link: /auto-scaling/api-ref/
|
||||||
|
pdf_name: as-api-ref
|
||||||
|
rst_location: api-ref/source
|
||||||
|
service_type: as
|
||||||
|
title: API Reference
|
||||||
|
type: api-ref
|
9
otc_metadata/data/documents/as-dev.yaml
Normal file
9
otc_metadata/data/documents/as-dev.yaml
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
---
|
||||||
|
hc_location: devg/as
|
||||||
|
html_location: docs/as/dev
|
||||||
|
link: /auto-scaling/dev-guide/
|
||||||
|
pdf_name: as-dev-guide
|
||||||
|
rst_location: dev_guide/source
|
||||||
|
service_type: as
|
||||||
|
title: Developer Guide
|
||||||
|
type: dev
|
9
otc_metadata/data/documents/as-umn.yaml
Normal file
9
otc_metadata/data/documents/as-umn.yaml
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
---
|
||||||
|
hc_location: usermanual/as
|
||||||
|
html_location: docs/as/umn
|
||||||
|
link: /auto-scaling/umn/
|
||||||
|
pdf_name: as-umn
|
||||||
|
rst_location: umn/source
|
||||||
|
service_type: as
|
||||||
|
title: User Guide
|
||||||
|
type: umn
|
10
otc_metadata/data/documents/asm-api-ref.yaml
Normal file
10
otc_metadata/data/documents/asm-api-ref.yaml
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
---
|
||||||
|
environment: internal
|
||||||
|
hc_location: api/asm
|
||||||
|
html_location: docs/asm/api-ref
|
||||||
|
link: /application-service-mesh/api-ref/
|
||||||
|
pdf_name: asm-api-ref
|
||||||
|
rst_location: api-ref/source
|
||||||
|
service_type: asm
|
||||||
|
title: API Reference
|
||||||
|
type: api-ref
|
10
otc_metadata/data/documents/asm-best-practice.yaml
Normal file
10
otc_metadata/data/documents/asm-best-practice.yaml
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
---
|
||||||
|
hc_location: bestpractice/asm
|
||||||
|
environment: internal
|
||||||
|
html_location: docs/asm/best-practice
|
||||||
|
link: /application-service-mesh/best-practice/
|
||||||
|
pdf_name: asm-best-practice
|
||||||
|
rst_location: doc/best-practice/source
|
||||||
|
service_type: asm
|
||||||
|
title: Best Practice
|
||||||
|
type: best-practice
|
10
otc_metadata/data/documents/asm-umn.yaml
Normal file
10
otc_metadata/data/documents/asm-umn.yaml
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
---
|
||||||
|
environment: internal
|
||||||
|
hc_location: usermanual/asm
|
||||||
|
html_location: docs/asm/umn
|
||||||
|
link: /application-service-mesh/umn/
|
||||||
|
pdf_name: asm-umn
|
||||||
|
rst_location: umn/source
|
||||||
|
service_type: asm
|
||||||
|
title: User Guide
|
||||||
|
type: umn
|
6
otc_metadata/data/documents/bd-umn.yaml
Normal file
6
otc_metadata/data/documents/bd-umn.yaml
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
---
|
||||||
|
link: /business-dashboard/umn/
|
||||||
|
rst_location: umn/source
|
||||||
|
service_type: bd
|
||||||
|
title: User Guide
|
||||||
|
type: umn
|
10
otc_metadata/data/documents/blueprints-best-practice.yaml
Normal file
10
otc_metadata/data/documents/blueprints-best-practice.yaml
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
---
|
||||||
|
hc_location: bestpractice/blueprints
|
||||||
|
environment: internal
|
||||||
|
html_location: docs/blueprints/best-practice
|
||||||
|
link: /blueprints/best-practice/
|
||||||
|
pdf_name: blueprints-best-practice
|
||||||
|
rst_location: doc/best-practice/source
|
||||||
|
service_type: blueprints
|
||||||
|
title: Best Practice
|
||||||
|
type: best-practice
|
9
otc_metadata/data/documents/bms-api-ref.yaml
Normal file
9
otc_metadata/data/documents/bms-api-ref.yaml
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
---
|
||||||
|
hc_location: api/bms
|
||||||
|
html_location: docs/bms/api-ref
|
||||||
|
link: /bare-metal-server/api-ref/
|
||||||
|
pdf_name: bms-api-ref
|
||||||
|
rst_location: api-ref/source
|
||||||
|
service_type: bms
|
||||||
|
title: API Reference
|
||||||
|
type: api-ref
|
9
otc_metadata/data/documents/bms-dev.yaml
Normal file
9
otc_metadata/data/documents/bms-dev.yaml
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
---
|
||||||
|
hc_location: devg/bms
|
||||||
|
html_location: docs/bms/dev
|
||||||
|
link: /bare-metal-server/dev-guide/
|
||||||
|
pdf_name: bms-dev-guide
|
||||||
|
rst_location: dev_guide/source
|
||||||
|
service_type: bms
|
||||||
|
title: Developer Guide
|
||||||
|
type: dev
|
@ -0,0 +1,9 @@
|
|||||||
|
---
|
||||||
|
hc_location: bpicg/bms
|
||||||
|
html_location: docs/bms/image-creation-guide
|
||||||
|
link: /bare-metal-server/image-creation-guide/
|
||||||
|
pdf_name: bms-image-creation-guide
|
||||||
|
rst_location: doc/image-creation-guide/source
|
||||||
|
service_type: bms
|
||||||
|
title: Private Image Creation Guide
|
||||||
|
type: image-creation-guide
|
9
otc_metadata/data/documents/bms-umn.yaml
Normal file
9
otc_metadata/data/documents/bms-umn.yaml
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
---
|
||||||
|
hc_location: usermanual/bms
|
||||||
|
html_location: docs/bms/umn
|
||||||
|
link: /bare-metal-server/umn/
|
||||||
|
pdf_name: bms-umn
|
||||||
|
rst_location: umn/source
|
||||||
|
service_type: bms
|
||||||
|
title: User Guide
|
||||||
|
type: umn
|
9
otc_metadata/data/documents/cbr-api-ref.yaml
Normal file
9
otc_metadata/data/documents/cbr-api-ref.yaml
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
---
|
||||||
|
hc_location: api/cbr
|
||||||
|
html_location: docs/cbr/api-ref
|
||||||
|
link: /cloud-backup-recovery/api-ref/
|
||||||
|
pdf_name: cbr-api-ref
|
||||||
|
rst_location: api-ref/source
|
||||||
|
service_type: cbr
|
||||||
|
title: API Reference
|
||||||
|
type: api-ref
|
10
otc_metadata/data/documents/cbr-best-practice.yaml
Normal file
10
otc_metadata/data/documents/cbr-best-practice.yaml
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
---
|
||||||
|
hc_location: bestpractice/cbr
|
||||||
|
environment: internal
|
||||||
|
html_location: docs/cbr/best-practice
|
||||||
|
link: /cloud-backup-recovery/best-practice/
|
||||||
|
pdf_name: cbr-best-practice
|
||||||
|
rst_location: doc/best-practice/source
|
||||||
|
service_type: cbr
|
||||||
|
title: Best Practice
|
||||||
|
type: best-practice
|
9
otc_metadata/data/documents/cbr-umn.yaml
Normal file
9
otc_metadata/data/documents/cbr-umn.yaml
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
---
|
||||||
|
hc_location: usermanual/cbr
|
||||||
|
html_location: docs/cbr/umn
|
||||||
|
link: /cloud-backup-recovery/umn/
|
||||||
|
pdf_name: cbr-umn
|
||||||
|
rst_location: umn/source
|
||||||
|
service_type: cbr
|
||||||
|
title: User Guide
|
||||||
|
type: umn
|
7
otc_metadata/data/documents/cc-api-ref.yaml
Normal file
7
otc_metadata/data/documents/cc-api-ref.yaml
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
---
|
||||||
|
link: /cloud-create/api-ref/
|
||||||
|
pdf_name: cc-api-ref
|
||||||
|
rst_location: api-ref/source
|
||||||
|
service_type: cc
|
||||||
|
title: API Reference
|
||||||
|
type: api-ref
|
8
otc_metadata/data/documents/cc-umn.yaml
Normal file
8
otc_metadata/data/documents/cc-umn.yaml
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
---
|
||||||
|
html_location: docs/cc/umn
|
||||||
|
link: /cloud-create/umn/
|
||||||
|
pdf_name: cc-umn
|
||||||
|
rst_location: umn/source
|
||||||
|
service_type: cc
|
||||||
|
title: User Guide
|
||||||
|
type: umn
|
9
otc_metadata/data/documents/cce-api-ref.yaml
Normal file
9
otc_metadata/data/documents/cce-api-ref.yaml
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
---
|
||||||
|
hc_location: api2/cce
|
||||||
|
html_location: docs/cce/api-ref
|
||||||
|
link: /cloud-container-engine/api-ref/
|
||||||
|
pdf_name: cce-api-ref
|
||||||
|
rst_location: api-ref/source
|
||||||
|
service_type: cce
|
||||||
|
title: API Reference
|
||||||
|
type: api-ref
|
10
otc_metadata/data/documents/cce-best-practice.yaml
Normal file
10
otc_metadata/data/documents/cce-best-practice.yaml
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
---
|
||||||
|
hc_location: bestpractice/cce
|
||||||
|
environment: internal
|
||||||
|
html_location: docs/cce/best-practice
|
||||||
|
link: /cloud-container-engine/best-practice/
|
||||||
|
pdf_name: cce-best-practice
|
||||||
|
rst_location: doc/best-practice/source
|
||||||
|
service_type: cce
|
||||||
|
title: Best Practice
|
||||||
|
type: best-practice
|
8
otc_metadata/data/documents/cce-umn.yaml
Normal file
8
otc_metadata/data/documents/cce-umn.yaml
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
---
|
||||||
|
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
|
10
otc_metadata/data/documents/cci-api-ref.yaml
Normal file
10
otc_metadata/data/documents/cci-api-ref.yaml
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
---
|
||||||
|
hc_location: api/cci
|
||||||
|
environment: internal
|
||||||
|
html_location: docs/cci/api-ref
|
||||||
|
link: /cloud-container-instance/api-ref/
|
||||||
|
pdf_name: cci-api-ref
|
||||||
|
rst_location: api-ref/source
|
||||||
|
service_type: cci
|
||||||
|
title: API Reference
|
||||||
|
type: api-ref
|
10
otc_metadata/data/documents/cci-umn.yaml
Normal file
10
otc_metadata/data/documents/cci-umn.yaml
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
---
|
||||||
|
hc_location: usermanual/cci
|
||||||
|
environment: internal
|
||||||
|
html_location: docs/cci/umn
|
||||||
|
link: /cloud-container-instance/umn/
|
||||||
|
pdf_name: cci-umn
|
||||||
|
rst_location: umn/source
|
||||||
|
service_type: cci
|
||||||
|
title: User Guide
|
||||||
|
type: umn
|
9
otc_metadata/data/documents/ces-api-ref.yaml
Normal file
9
otc_metadata/data/documents/ces-api-ref.yaml
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
---
|
||||||
|
hc_location: api/ces
|
||||||
|
html_location: docs/ces/api-ref
|
||||||
|
link: /cloud-eye/api-ref/
|
||||||
|
pdf_name: ces-api-ref
|
||||||
|
rst_location: api-ref/source
|
||||||
|
service_type: ces
|
||||||
|
title: API Reference
|
||||||
|
type: api-ref
|
9
otc_metadata/data/documents/ces-umn.yaml
Normal file
9
otc_metadata/data/documents/ces-umn.yaml
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
---
|
||||||
|
hc_location: usermanual/ces
|
||||||
|
html_location: docs/ces/umn
|
||||||
|
link: /cloud-eye/umn/
|
||||||
|
pdf_name: ces-umn
|
||||||
|
rst_location: umn/source
|
||||||
|
service_type: ces
|
||||||
|
title: User Guide
|
||||||
|
type: umn
|
10
otc_metadata/data/documents/cfw-api-ref.yaml
Normal file
10
otc_metadata/data/documents/cfw-api-ref.yaml
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
---
|
||||||
|
environment: internal
|
||||||
|
hc_location: api/cfw
|
||||||
|
html_location: docs/cfw/api-ref
|
||||||
|
link: /cloud-firewall/api-ref/
|
||||||
|
pdf_name: cfw-api-ref
|
||||||
|
rst_location: api-ref/source
|
||||||
|
service_type: cfw
|
||||||
|
title: API Reference
|
||||||
|
type: api-ref
|
10
otc_metadata/data/documents/cfw-umn.yaml
Normal file
10
otc_metadata/data/documents/cfw-umn.yaml
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
---
|
||||||
|
environment: internal
|
||||||
|
hc_location: usermanual/cfw
|
||||||
|
html_location: docs/cfw/umn
|
||||||
|
link: /cloud-firewall/umn/
|
||||||
|
pdf_name: cfw-umn
|
||||||
|
rst_location: umn/source
|
||||||
|
service_type: cfw
|
||||||
|
title: User Guide
|
||||||
|
type: umn
|
9
otc_metadata/data/documents/csbs-api-ref.yaml
Normal file
9
otc_metadata/data/documents/csbs-api-ref.yaml
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
---
|
||||||
|
hc_location: api/csbs
|
||||||
|
html_location: docs/csbs/api-ref
|
||||||
|
link: /cloud-server-backup-service/api-ref/
|
||||||
|
pdf_name: csbs-api-ref
|
||||||
|
rst_location: api-ref/source
|
||||||
|
service_type: csbs
|
||||||
|
title: API Reference
|
||||||
|
type: api-ref
|
9
otc_metadata/data/documents/csbs-umn.yaml
Normal file
9
otc_metadata/data/documents/csbs-umn.yaml
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
---
|
||||||
|
hc_location: usermanual/csbs
|
||||||
|
html_location: docs/csbs/umn
|
||||||
|
link: /cloud-server-backup-service/umn/
|
||||||
|
pdf_name: csbs-umn
|
||||||
|
rst_location: umn/source
|
||||||
|
service_type: csbs
|
||||||
|
title: User Guide
|
||||||
|
type: umn
|
10
otc_metadata/data/documents/cse-api-ref.yaml
Normal file
10
otc_metadata/data/documents/cse-api-ref.yaml
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
---
|
||||||
|
hc_location: api/cse
|
||||||
|
environment: internal
|
||||||
|
html_location: docs/cse/api-ref
|
||||||
|
link: /cloud-service-engine/api-ref/
|
||||||
|
pdf_name: cse-api-ref
|
||||||
|
rst_location: api-ref/source
|
||||||
|
service_type: cse
|
||||||
|
title: API Reference
|
||||||
|
type: api-ref
|
10
otc_metadata/data/documents/cse-umn.yaml
Normal file
10
otc_metadata/data/documents/cse-umn.yaml
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
---
|
||||||
|
hc_location: usermanual/cse
|
||||||
|
environment: internal
|
||||||
|
html_location: docs/cse/umn
|
||||||
|
link: /cloud-service-engine/umn/
|
||||||
|
pdf_name: cse-umn
|
||||||
|
rst_location: umn/source
|
||||||
|
service_type: cse
|
||||||
|
title: User Guide
|
||||||
|
type: umn
|
9
otc_metadata/data/documents/css-api-ref.yaml
Normal file
9
otc_metadata/data/documents/css-api-ref.yaml
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
---
|
||||||
|
hc_location: api/css
|
||||||
|
html_location: docs/css/api-ref
|
||||||
|
link: /cloud-search-service/api-ref/
|
||||||
|
pdf_name: css-api-ref
|
||||||
|
rst_location: api-ref/source
|
||||||
|
service_type: css
|
||||||
|
title: API Reference
|
||||||
|
type: api-ref
|
9
otc_metadata/data/documents/css-best-practice.yaml
Normal file
9
otc_metadata/data/documents/css-best-practice.yaml
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
---
|
||||||
|
hc_location: bestpractice/css
|
||||||
|
html_location: docs/css/best-practice
|
||||||
|
link: /cloud-search-service/best-practice/
|
||||||
|
pdf_name: css-best-practice
|
||||||
|
rst_location: doc/best-practice/source
|
||||||
|
service_type: css
|
||||||
|
title: Best Practice
|
||||||
|
type: best-practice
|
9
otc_metadata/data/documents/css-umn.yaml
Normal file
9
otc_metadata/data/documents/css-umn.yaml
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
---
|
||||||
|
hc_location: usermanual/css
|
||||||
|
html_location: docs/css/umn
|
||||||
|
link: /cloud-search-service/umn/
|
||||||
|
pdf_name: css-umn
|
||||||
|
rst_location: umn/source
|
||||||
|
service_type: css
|
||||||
|
title: User Guide
|
||||||
|
type: umn
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user