Search Results for

    Show / Hide Table of Contents

    Class IdentityProviderEditable

    Inheritance
    object
    IdentityProviderEditable
    IdentityProvider
    Inherited Members
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    Namespace: System.Dynamic.ExpandoObject
    Syntax
    [GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")]
    public class IdentityProviderEditable

    Properties

    ClaimMapping

    Mapping of identity provider claims to user attributes

    Declaration
    [JsonProperty("claimMapping", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
    public ICollection<IdpClaimToUserAttributeMapping> ClaimMapping { get; set; }
    Property Value
    ICollection<IdpClaimToUserAttributeMapping>

    FallbackUserRoleId

    Optional user role ID that will be assigned to a user is none of the group mappings produce a match

    Declaration
    [JsonProperty("fallbackUserRoleId", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
    public string FallbackUserRoleId { get; set; }
    Property Value
    string

    GroupClaimType

    Name of the identity provider claim that holds group membership information

    Declaration
    [JsonProperty("groupClaimType", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
    public string GroupClaimType { get; set; }
    Property Value
    string

    GroupMapping

    IdP (AD) group to user role ID mapping

    Declaration
    [JsonProperty("groupMapping", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
    public ICollection<IdpGroupToUserRoleMapping> GroupMapping { get; set; }
    Property Value
    ICollection<IdpGroupToUserRoleMapping>

    Methods

    FromJson(string)

    Declaration
    public static IdentityProviderEditable FromJson(string data)
    Parameters
    string data

    Returns
    IdentityProviderEditable

    ToJson()

    Declaration
    public string ToJson()
    Returns
    string

    Back to top Generated by DocFX