Type alias Saml2ProviderSkeleton

Saml2ProviderSkeleton: IdObjectSkeletonInterface & {
    attributeQueryProvider: unknown;
    entityId: string;
    entityLocation: Saml2ProiderLocation;
    identityProvider: {
        advanced?: {
            idpAdapter?: {
                idpAdapterScript?: string;
            };
        };
        assertionProcessing?: {
            attributeMapper?: {
                attributeMapperScript?: string;
            };
        };
    };
    serviceProvider: unknown;
    xacmlPolicyEnforcementPoint: unknown;
}

Type declaration

  • attributeQueryProvider: unknown
  • entityId: string
  • entityLocation: Saml2ProiderLocation
  • identityProvider: {
        advanced?: {
            idpAdapter?: {
                idpAdapterScript?: string;
            };
        };
        assertionProcessing?: {
            attributeMapper?: {
                attributeMapperScript?: string;
            };
        };
    }
    • Optional advanced?: {
          idpAdapter?: {
              idpAdapterScript?: string;
          };
      }
      • Optional idpAdapter?: {
            idpAdapterScript?: string;
        }
        • Optional idpAdapterScript?: string
    • Optional assertionProcessing?: {
          attributeMapper?: {
              attributeMapperScript?: string;
          };
      }
      • Optional attributeMapper?: {
            attributeMapperScript?: string;
        }
        • Optional attributeMapperScript?: string
  • serviceProvider: unknown
  • xacmlPolicyEnforcementPoint: unknown