Show / Hide Table of Contents

Class MyGroupMembers

The group members. Important: When requesting group members, a maximum of 10,000 members can be returned in a single request. If the response contains more than 10,000 members, the request will fail. Use 'startIndex' and 'count' to return members in pages instead of in a single response, for Example: #attributes=members[startIndex=1%26count=10]. This REST API is SCIM compliant.

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

Properties

DateAdded

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

The date and time that the member was added to the group.
Added In: 2012271618
SCIM++ Properties:

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

Display

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

The member's display name.
SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: true
  • 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: 2102181953
SCIM++ Properties:

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

Name

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

The member's name.
SCIM++ Properties:

  • caseExact: false
  • 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 member of this group.
Added In: 2012271618
SCIM++ Properties:

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

Ref

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

The URI that corresponds to the member Resource of this group.
SCIM++ Properties:

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

Type

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

Indicates the type of resource, for example, User or Group.
SCIM++ Properties:

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

Required

Value

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

The ID of the member of this Group
SCIM++ Properties:

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

Required

In this article
Back to top