Compare commits

...

3 Commits

Author SHA1 Message Date
4175a39dd2 APIG Dev-Guide to internal
All checks were successful
gl/check check status: success (4175a39dd2d8a01d97849f720bbad61717d8f02e)
gl/gate gate status: success (4175a39dd2d8a01d97849f720bbad61717d8f02e)
2024-06-03 12:54:45 +00:00
f217cafb1b Add environment filter to services_by_category
Reviewed-by: Hasko, Vladimir <vladimir.hasko@t-systems.com>
Co-authored-by: Gode, Sebastian <sebastian.gode@t-systems.com>
Co-committed-by: Gode, Sebastian <sebastian.gode@t-systems.com>
2024-05-29 10:59:13 +00:00
663cfbed75 hss api &um public
Reviewed-by: Hasko, Vladimir <vladimir.hasko@t-systems.com>
Co-authored-by: Belejkanic, Lukas <lukas.belejkanic@t-systems.com>
Co-committed-by: Belejkanic, Lukas <lukas.belejkanic@t-systems.com>
2024-05-29 10:15:18 +00:00
5 changed files with 6 additions and 4 deletions

View File

@ -1,4 +1,5 @@
---
environment: hidden
hc_location: devg/apig
html_location: docs/apig/dev
link: /api-gateway/dev-guide/

View File

@ -1,6 +1,5 @@
---
hc_location: api/hss2.0
environment: internal
html_location: docs/hss/api-ref
link: /host-security-service/api-ref/
pdf_name: hss-api-ref

View File

@ -1,6 +1,5 @@
---
hc_location: usermanual/hss2.0
environment: internal
html_location: docs/hss/umn
link: /host-security-service/umn/
pdf_name: hss-umn

View File

@ -1,5 +1,5 @@
---
environment: internal
environment: public
repositories:
- environment: internal
repo: docs/host-security-service

View File

@ -87,10 +87,13 @@ class Services(object):
res.append(copy.deepcopy(cat))
return res
def services_by_category(self, category):
def services_by_category(self, category, environment=None):
"""List services matching category"""
res = []
for srv in self.all_services:
if environment:
if "environment" in srv and srv["environment"] != environment:
continue
if srv["service_category"] == category:
res.append(copy.deepcopy(srv))
return res