class Google::Apis::CloudidentityV1beta1::MembershipAdjacencyList

Membership graph's path information as an adjacency list.

Attributes

edges[RW]

Each edge contains information about the member that belongs to this group. Note: Fields returned here will help identify the specific Membership resource (e.g name, preferred_member_key and role), but may not be a comprehensive list of all fields. Corresponds to the JSON property `edges` @return [Array<Google::Apis::CloudidentityV1beta1::Membership>]

group[RW]

Resource name of the group that the members belong to. Corresponds to the JSON property `group` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/cloudidentity_v1beta1/classes.rb, line 2083
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/cloudidentity_v1beta1/classes.rb, line 2088
def update!(**args)
  @edges = args[:edges] if args.key?(:edges)
  @group = args[:group] if args.key?(:group)
end