Show / Hide Table of Contents

Class FilterGroupMembershipDetails

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

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 the resolved principal potentially belongs to.

Remarks

Required

Principal

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

A resolved principal object

Remarks

Required

In this article
Back to top