86c791b8a6
Co-authored-by: Benjamin A. Petersen <ben@benjaminapetersen.me>
31 lines
1.3 KiB
Go
31 lines
1.3 KiB
Go
// Copyright 2023 the Pinniped contributors. All Rights Reserved.
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
package resolvedprovider
|
|
|
|
import (
|
|
"go.pinniped.dev/internal/federationdomain/upstreamprovider"
|
|
"go.pinniped.dev/internal/idtransform"
|
|
"go.pinniped.dev/internal/psession"
|
|
)
|
|
|
|
// FederationDomainResolvedOIDCIdentityProvider represents a FederationDomainIdentityProvider which has
|
|
// been resolved dynamically based on the currently loaded IDP CRs to include the provider.UpstreamOIDCIdentityProviderI
|
|
// and other metadata about the provider.
|
|
type FederationDomainResolvedOIDCIdentityProvider struct {
|
|
DisplayName string
|
|
Provider upstreamprovider.UpstreamOIDCIdentityProviderI
|
|
SessionProviderType psession.ProviderType
|
|
Transforms *idtransform.TransformationPipeline
|
|
}
|
|
|
|
// FederationDomainResolvedLDAPIdentityProvider represents a FederationDomainIdentityProvider which has
|
|
// been resolved dynamically based on the currently loaded IDP CRs to include the provider.UpstreamLDAPIdentityProviderI
|
|
// and other metadata about the provider.
|
|
type FederationDomainResolvedLDAPIdentityProvider struct {
|
|
DisplayName string
|
|
Provider upstreamprovider.UpstreamLDAPIdentityProviderI
|
|
SessionProviderType psession.ProviderType
|
|
Transforms *idtransform.TransformationPipeline
|
|
}
|