Show / Hide Table of Contents

Class AppUserAssertionAttributes

Each value of this attribute describes an attribute of User that will be sent in a Security Assertion Markup Language (SAML) assertion.
Deprecated Since: 18.2.2
SCIM++ Properties:

  • caseExact: false
  • idcsCompositeKey: [name]
  • idcsSearchable: false
  • idcsValuePersistedInOtherAttribute: true
  • multiValued: true
  • mutability: readWrite
  • required: false
  • returned: default
  • type: complex
  • uniqueness: none
Inheritance
object
AppUserAssertionAttributes
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.IdentitydomainsService.Models
Assembly: OCI.DotNetSDK.Identitydomains.dll
Syntax
public class AppUserAssertionAttributes

Properties

Format

Declaration
[JsonProperty(PropertyName = "format")]
public string Format { get; set; }
Property Value
Type Description
string

Indicates the format of the assertion attribute.
Deprecated Since: 18.2.2
SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: false
  • idcsValuePersistedInOtherAttribute: true
  • multiValued: false
  • mutability: readWrite
  • required: false
  • returned: default
  • type: string
  • uniqueness: none

Name

Declaration
[Required(ErrorMessage = "Name is required.")]
[JsonProperty(PropertyName = "name")]
public string Name { get; set; }
Property Value
Type Description
string

The attribute represents the name of the attribute that will be used in the Security Assertion Markup Language (SAML) assertion
Deprecated Since: 18.2.2
SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: false
  • idcsValuePersistedInOtherAttribute: true
  • multiValued: false
  • mutability: readWrite
  • required: true
  • returned: default
  • type: string
  • uniqueness: none
Remarks

Required

UserStoreAttributeName

Declaration
[Required(ErrorMessage = "UserStoreAttributeName is required.")]
[JsonProperty(PropertyName = "userStoreAttributeName")]
public string UserStoreAttributeName { get; set; }
Property Value
Type Description
string
In this article
Back to top