Show / Hide Table of Contents

Class SchemaIdcsComplexAttributeNameMappings

Specifies the mapping between external identity source attributes and Oracle Identity Cloud Service complex attributes (e.g. email => emails[work].value)

Inheritance
object
SchemaIdcsComplexAttributeNameMappings
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 SchemaIdcsComplexAttributeNameMappings

Properties

IdcsRtsaHideAttribute

Declaration
[JsonProperty(PropertyName = "idcsRtsaHideAttribute")]
public bool? IdcsRtsaHideAttribute { get; set; }
Property Value
Type Description
bool?

Specifies if the attributes that is mapped should be hidden externally
SCIM++ Properties:

  • caseExact: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: boolean
  • uniqueness: none

MapsTo

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

The attribute that is mapped to the attribute mapping
SCIM++ Properties:

  • caseExact: true
  • multiValued: false
  • mutability: readOnly
  • required: true
  • returned: default
  • type: string
  • uniqueness: none
Remarks

Required

Name

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

The attribute that represents the display name
SCIM++ Properties:

  • caseExact: true
  • multiValued: false
  • mutability: readOnly
  • required: true
  • returned: default
  • type: string
  • uniqueness: none
Remarks

Required

In this article
Back to top