Show / Hide Table of Contents

Class UserAttributesSettingsAttributeSettings

User Schema Attribute Settings

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

Properties

EndUserMutability

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

End User mutability
SCIM++ Properties:

  • idcsCanonicalValueSourceFilter: attrName eq "mutabilityValues" and attrValues.value eq "$(endUserMutability)"
  • idcsCanonicalValueSourceResourceType: AllowedValue
  • caseExact: false
  • multiValued: false
  • mutability: readWrite
  • required: true
  • returned: default
  • type: string
  • uniqueness: none
Remarks

Required

EndUserMutabilityCanonicalValues

Declaration
[JsonProperty(PropertyName = "endUserMutabilityCanonicalValues")]
public List<string> EndUserMutabilityCanonicalValues { get; set; }
Property Value
Type Description
List<string>

Specifies the list of User mutabilities allowed.
Added In: 18.3.4
SCIM++ Properties:

  • idcsCanonicalValueSourceFilter: attrName eq "mutabilityValues" and attrValues.value eq "$(endUserMutability)"
  • idcsCanonicalValueSourceResourceType: AllowedValue
  • caseExact: true
  • multiValued: true
  • 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

Fully-qualified attribute or complex mapping Name
SCIM++ Properties:

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

Required

In this article
Back to top