Show / Hide Table of Contents

Class FilterGroupMembershipResult

Inheritance
object
FilterGroupMembershipResult
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.IdentitydataplaneService.Models
Assembly: OCI.DotNetSDK.Identitydataplane.dll
Syntax
public class FilterGroupMembershipResult

Properties

GroupIds

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

An array of group or dynamic group Ids which present the intersection between the passed-in group/dynamic-group and the actual group/dynamic-group the resovled principal belongs to.

Remarks

Required

Principal

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

Return passed-in resolved principal object

Remarks

Required

In this article
Back to top