diff --git a/api/src/backend/api/specs/v1.yaml b/api/src/backend/api/specs/v1.yaml index b09998234a..fa1520f60e 100644 --- a/api/src/backend/api/specs/v1.yaml +++ b/api/src/backend/api/specs/v1.yaml @@ -15570,9 +15570,6 @@ tags: refreshing an existing token for authentication purposes. - name: Tenant description: Endpoints for managing tenants, along with their memberships. -- name: Membership - description: Endpoints for managing tenant memberships, allowing retrieval and filtering - of user membership information within tenants. - name: Invitation description: Endpoints for tenant invitations management, allowing retrieval and filtering of invitations, creating new invitations, accepting and revoking them. @@ -15581,9 +15578,6 @@ tags: retrieval, updating, and deletion of role configurations and permissions. - name: Provider description: Endpoints for managing providers (AWS, GCP, Azure, etc...). -- name: Provider Secret - description: Endpoints for managing provider secrets, allowing secure storage and - management of credentials for providers. - name: Provider Group description: Endpoints for managing provider groups. - name: Task diff --git a/api/src/backend/api/v1/views.py b/api/src/backend/api/v1/views.py index 59706c8bc1..a75976c314 100644 --- a/api/src/backend/api/v1/views.py +++ b/api/src/backend/api/v1/views.py @@ -308,11 +308,6 @@ class SchemaView(SpectacularAPIView): "name": "Tenant", "description": "Endpoints for managing tenants, along with their memberships.", }, - { - "name": "Membership", - "description": "Endpoints for managing tenant memberships, allowing retrieval and filtering of " - "user membership information within tenants.", - }, { "name": "Invitation", "description": "Endpoints for tenant invitations management, allowing retrieval and filtering of " @@ -327,11 +322,6 @@ class SchemaView(SpectacularAPIView): "name": "Provider", "description": "Endpoints for managing providers (AWS, GCP, Azure, etc...).", }, - { - "name": "Provider Secret", - "description": "Endpoints for managing provider secrets, allowing secure storage and management " - "of credentials for providers.", - }, { "name": "Provider Group", "description": "Endpoints for managing provider groups.",