Identity Provider screen for TenantDetails (#1809)
- fixing encryption page styles - removing extra fields on gemalto configuration - backend endpoints for tenant identity provider details - force restart tenant pods when identity provider configuration change - force restart tenant pods when tls certificates change - existing tls secrets are not deleted from tenant namespace, just removed from the tenant Signed-off-by: Lenin Alevski <alevsk.8772@gmail.com>
This commit is contained in:
@@ -310,6 +310,57 @@ paths:
|
||||
tags:
|
||||
- OperatorAPI
|
||||
|
||||
/namespaces/{namespace}/tenants/{tenant}/identity-provider:
|
||||
get:
|
||||
summary: Tenant Identity Provider
|
||||
operationId: TenantIdentityProvider
|
||||
parameters:
|
||||
- name: namespace
|
||||
in: path
|
||||
required: true
|
||||
type: string
|
||||
- name: tenant
|
||||
in: path
|
||||
required: true
|
||||
type: string
|
||||
responses:
|
||||
200:
|
||||
description: A successful response.
|
||||
schema:
|
||||
$ref: "#/definitions/idpConfiguration"
|
||||
default:
|
||||
description: Generic error response.
|
||||
schema:
|
||||
$ref: "#/definitions/error"
|
||||
tags:
|
||||
- OperatorAPI
|
||||
post:
|
||||
summary: Update Tenant Identity Provider
|
||||
operationId: UpdateTenantIdentityProvider
|
||||
parameters:
|
||||
- name: namespace
|
||||
in: path
|
||||
required: true
|
||||
type: string
|
||||
- name: tenant
|
||||
in: path
|
||||
required: true
|
||||
type: string
|
||||
- name: body
|
||||
in: body
|
||||
required: true
|
||||
schema:
|
||||
$ref: "#/definitions/idpConfiguration"
|
||||
responses:
|
||||
204:
|
||||
description: A successful response.
|
||||
default:
|
||||
description: Generic error response.
|
||||
schema:
|
||||
$ref: "#/definitions/error"
|
||||
tags:
|
||||
- OperatorAPI
|
||||
|
||||
/namespaces/{namespace}/tenants/{tenant}/security:
|
||||
get:
|
||||
summary: Tenant Security
|
||||
@@ -1275,6 +1326,7 @@ definitions:
|
||||
capacity_usage:
|
||||
type: integer
|
||||
format: int64
|
||||
|
||||
tenantSecurityResponse:
|
||||
type: object
|
||||
properties:
|
||||
@@ -1647,6 +1699,7 @@ definitions:
|
||||
type: object
|
||||
required:
|
||||
- url
|
||||
- lookup_bind_dn
|
||||
properties:
|
||||
url:
|
||||
type: string
|
||||
|
||||
Reference in New Issue
Block a user