Show / Hide Table of Contents

Class MappedAttributeAttributeMappings

A list of attribute mappings between Oracle Identity Cloud Service Resource Type and Account Object Class

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

Properties

AppliesToActions

Declaration
[JsonProperty(PropertyName = "appliesToActions", ItemConverterType = typeof(ResponseEnumConverter))]
public List<MappedAttributeAttributeMappings.AppliesToActionsEnum> AppliesToActions { get; set; }
Property Value
Type Description
List<MappedAttributeAttributeMappings.AppliesToActionsEnum>

If specified, indicates a subset of mappedActions to which this attribute-mapping applies.If not specified, this attribute-mapping applies to all mappedActions that use mappedAttributes
SCIM++ Properties:

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

IdcsAttributeName

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

The name or expression of an attribute that corresponds to the Oracle Identity Cloud Service Resource referred in the \"idcsResourceType\" attribute.
SCIM++ Properties:

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

Required

ManagedObjectAttributeName

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

The name or expression of an attribute defined in the schema of the Managed Object Class. This is the SCIM compliant Oracle Identity Cloud Service Name of the attribute that maps to the \"idcsName\" attribute in the schema of an Managed Object Class.
SCIM++ Properties:

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

Required

Required

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

If true, indicates that this attribute must have a value. This attribute maps to the \"required\" sub-attribute in the schema of an Managed Object Class.
SCIM++ Properties:

  • idcsSearchable: false
  • multiValued: false
  • mutability: readWrite
  • required: false
  • returned: default
  • type: boolean
  • uniqueness: none

SamlFormat

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

Indicates the format of the assertion attribute. Also stores AttributeNamespace for WSFed1.1.
Added In: 17.4.2
SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: false
  • multiValued: false
  • mutability: readWrite
  • required: false
  • returned: default
  • type: string
  • uniqueness: none
In this article
Back to top