Show / Hide Table of Contents

Class IdentityProviderJitUserProvGroupMappings

The list of mappings between the Identity Domain Group and the IDP group.

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

Properties

IdpGroup

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

IDP Group Name
Added In: 2205120021
SCIM++ Properties:

  • idcsSearchable: false
  • multiValued: false
  • mutability: readWrite
  • required: true
  • type: string
Remarks

Required

Ref

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

Group URI
Added In: 2205120021
SCIM++ Properties:

  • multiValued: false
  • mutability: readOnly
  • required: true
  • returned: default
  • type: reference
Remarks

Required

Value

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

Domain Group
Added In: 2205120021
SCIM++ Properties:

  • multiValued: false
  • mutability: readWrite
  • required: true
  • idcsSearchable: true
  • type: string
Remarks

Required

In this article
Back to top