From e6d4653b081a27f639b89965d8ae41550cad8b18 Mon Sep 17 00:00:00 2001 From: Pascal Fischer <32096965+pascal-fischer@users.noreply.github.com> Date: Wed, 12 Feb 2025 16:11:54 +0100 Subject: [PATCH] [management] add cloud tag to get ingress ports api spec (#3300) * fix tag for get endpoint * update labels --- management/server/http/api/openapi.yml | 23 ++++++++++++----------- 1 file changed, 12 insertions(+), 11 deletions(-) diff --git a/management/server/http/api/openapi.yml b/management/server/http/api/openapi.yml index 1ef0c7a1e..f8734be24 100644 --- a/management/server/http/api/openapi.yml +++ b/management/server/http/api/openapi.yml @@ -29,8 +29,8 @@ tags: description: View information about the account and network events. - name: Accounts description: View information about the accounts. - - name: Ingress Peers - description: Interact with and view information about the ingress peers. + - name: Ingress Ports + description: Interact with and view information about the ingress peers and ports. x-cloud-only: true components: schemas: @@ -2339,9 +2339,10 @@ paths: "$ref": "#/components/responses/internal_error" /api/peers/{peerId}/ingress/ports: get: + x-cloud-only: true summary: List all Ingress Port Allocations for a Peer description: Returns a list of all ingress port allocations for a peer - tags: [ Peers ] + tags: [ Ingress Ports ] security: - BearerAuth: [ ] - TokenAuth: [ ] @@ -2378,7 +2379,7 @@ paths: x-cloud-only: true summary: Create a Ingress Port Allocation description: Creates a new ingress port allocation for a peer - tags: [ Peers ] + tags: [ Ingress Ports ] security: - BearerAuth: [ ] - TokenAuth: [ ] @@ -2415,7 +2416,7 @@ paths: x-cloud-only: true summary: Retrieve a Ingress Port Allocation description: Get information about an ingress port allocation - tags: [ Peers ] + tags: [ Ingress Ports ] security: - BearerAuth: [ ] - TokenAuth: [ ] @@ -2487,7 +2488,7 @@ paths: x-cloud-only: true summary: Delete a Ingress Port Allocation description: Delete an ingress port allocation - tags: [ Peers ] + tags: [ Ingress Ports ] security: - BearerAuth: [ ] - TokenAuth: [ ] @@ -2521,7 +2522,7 @@ paths: x-cloud-only: true summary: List all Ingress Peers description: Returns a list of all ingress peers - tags: [ Proxies ] + tags: [ Ingress Ports ] security: - BearerAuth: [ ] - TokenAuth: [ ] @@ -2546,7 +2547,7 @@ paths: x-cloud-only: true summary: Create a Ingress Peer description: Creates a new ingress peer - tags: [ Proxies ] + tags: [ Ingress Ports ] security: - BearerAuth: [ ] - TokenAuth: [ ] @@ -2576,7 +2577,7 @@ paths: x-cloud-only: true summary: Retrieve a Ingress Peer description: Get information about an ingress peer - tags: [ Proxies ] + tags: [ Ingress Ports ] security: - BearerAuth: [ ] - TokenAuth: [ ] @@ -2606,7 +2607,7 @@ paths: x-cloud-only: true summary: Update a Ingress Peer description: Update information about an ingress peer - tags: [ Proxies ] + tags: [ Ingress Ports ] security: - BearerAuth: [ ] - TokenAuth: [ ] @@ -2642,7 +2643,7 @@ paths: x-cloud-only: true summary: Delete a Ingress Peer description: Delete an ingress peer - tags: [ Proxies ] + tags: [ Ingress Ports ] security: - BearerAuth: [ ] - TokenAuth: [ ]