From 4a0fcb609c33a090caa02177487fc8480fc3939a Mon Sep 17 00:00:00 2001 From: Graziano Casto Date: Tue, 10 Jun 2025 12:26:46 +0200 Subject: [PATCH 1/2] *upd runtime visibility section --- .../infrastructure-project.md | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/docs/console/project-configuration/infrastructure-project.md b/docs/console/project-configuration/infrastructure-project.md index cdd4a81dc0..6b9ca69169 100644 --- a/docs/console/project-configuration/infrastructure-project.md +++ b/docs/console/project-configuration/infrastructure-project.md @@ -68,10 +68,20 @@ This enables control and consistency in your infrastructure. ## Runtime Visibility -After the deployment of your infrastructure components, runtime data retrieval can be integrated in the Console by leveraging the [Infrastructure Component Runtime Software Catalog item type](/software-catalog/items-manifest/infrastructure-component-runtime.md). +This feature is currently in [BETA](/info/version_policy.md#feature-preview-and-beta), so the visualization of runtime resources is not natively implemented. -:::tip -You can later access the data via API or by creating a custom extension using the [Composer extensions](/console/company-configuration/extensions.md#add-new-extension) +To get the infrastructure components generated after deployment for each project, you can generate an [Infrastructure Component Runtime Software Catalog item type](/software-catalog/items-manifest/infrastructure-component-runtime.md) on the software catalog from the same pipeline via [miactl](/software-catalog/items-management/miactl.md). + +Subsequently, this information can be retrieved either by using the Marketplace API or by creating a [Composer extension](/console/company-configuration/extensions.md#add-new-extension). + +:::info +To retrieve the information of the available [Infrastructure Component Runtime Software Catalog item type](/software-catalog/items-manifest/infrastructure-component-runtime.md), you can use the following software catalog endpoint and filter by the project of interest: + +``` +curl -X GET \ + -H "Authorization: Bearer " \ + '/api/tenants//marketplace/items' +``` ::: ## Access and Permissions From 2ca6aab56c2544930522ce1bc5243cc877f141bf Mon Sep 17 00:00:00 2001 From: Graziano Casto Date: Tue, 8 Jul 2025 10:09:29 +0200 Subject: [PATCH 2/2] Update infrastructure-project.md --- docs/console/project-configuration/infrastructure-project.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/console/project-configuration/infrastructure-project.md b/docs/console/project-configuration/infrastructure-project.md index 6b9ca69169..ab1cbbf2c8 100644 --- a/docs/console/project-configuration/infrastructure-project.md +++ b/docs/console/project-configuration/infrastructure-project.md @@ -80,7 +80,7 @@ To retrieve the information of the available [Infrastructure Component Runtime S ``` curl -X GET \ -H "Authorization: Bearer " \ - '/api/tenants//marketplace/items' + '/api/marketplace?tenantId=&types=infrastructure-component-runtime' ``` :::