feat: add scim v2 service provider configuration endpoints (#9258)

# Which Problems Are Solved
* Adds support for the service provider configuration SCIM v2 endpoints

# How the Problems Are Solved
* Adds support for the service provider configuration SCIM v2 endpoints
  * `GET /scim/v2/{orgId}/ServiceProviderConfig`
  * `GET /scim/v2/{orgId}/ResourceTypes`
  * `GET /scim/v2/{orgId}/ResourceTypes/{name}`
  * `GET /scim/v2/{orgId}/Schemas`
  * `GET /scim/v2/{orgId}/Schemas/{id}`

# Additional Context
Part of #8140

Co-authored-by: Stefan Benz <46600784+stebenz@users.noreply.github.com>
This commit is contained in:
Lars
2025-01-29 19:11:12 +01:00
committed by GitHub
parent b6841251b1
commit e15094cdea
21 changed files with 2073 additions and 116 deletions

View File

@@ -1,12 +1,23 @@
package config
type Config struct {
EmailVerified bool
PhoneVerified bool
MaxRequestBodySize int64
Bulk BulkConfig
DocumentationUrl string
AuthenticationSchemes []*ServiceProviderConfigAuthenticationScheme
EmailVerified bool
PhoneVerified bool
MaxRequestBodySize int64
Bulk BulkConfig
}
type BulkConfig struct {
MaxOperationsCount int
}
type ServiceProviderConfigAuthenticationScheme struct {
Name string `json:"name"`
Description string `json:"description"`
SpecUri string `json:"specUri"`
DocumentationUri string `json:"documentationUri"`
Type string `json:"type"`
Primary bool `json:"primary"`
}