Show / Hide Table of Contents

Class MeGroups

A list of groups that the user belongs to, either thorough direct membership, nested groups, or dynamically calculated

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

Properties

DateAdded

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

Date when the member is Added to the group
Added In: 2105200541
SCIM++ Properties:

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

Display

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

A human readable name, primarily used for display purposes. READ-ONLY.
SCIM++ Properties:

  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: string
  • uniqueness: none

ExternalId

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

An identifier for the Resource as defined by the Service Consumer. READ-ONLY.
Added In: 2011192329
SCIM++ Properties:

  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: string
  • uniqueness: none

MembershipOcid

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

The membership OCID.
Added In: 2103141444
SCIM++ Properties:

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

NonUniqueDisplay

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

A human readable name for Group as defined by the Service Consumer. READ-ONLY.
Added In: 2011192329
SCIM++ Properties:

  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: string
  • uniqueness: none

Ocid

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

The OCID of the User's group.
Added In: 2102181953
SCIM++ Properties:

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

Ref

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

The URI of the corresponding Group resource to which the user belongs
SCIM++ Properties:

  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: reference
  • uniqueness: none

Type

Declaration
[JsonProperty(PropertyName = "type")]
[JsonConverter(typeof(ResponseEnumConverter))]
public MeGroups.TypeEnum? Type { get; set; }
Property Value
Type Description
MeGroups.TypeEnum?

A label indicating the attribute's function; e.g., 'direct' or 'indirect'.
SCIM++ Properties:

  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: request
  • type: string
  • uniqueness: none

Value

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

The identifier of the User's group.
SCIM++ Properties:

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

Required

In this article
Back to top