class Google::Apis::CloudidentityV1::GetMembershipGraphResponse

The response message for MembershipsService.GetMembershipGraph.

Attributes

adjacency_list[RW]

The membership graph's path information represented as an adjacency list. Corresponds to the JSON property `adjacencyList` @return [Array<Google::Apis::CloudidentityV1::MembershipAdjacencyList>]

groups[RW]

The resources representing each group in the adjacency list. Each group in this list can be correlated to a 'group' of the MembershipAdjacencyList using the 'name' of the Group resource. Corresponds to the JSON property `groups` @return [Array<Google::Apis::CloudidentityV1::Group>]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/cloudidentity_v1/classes.rb, line 267
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_v1/classes.rb, line 272
def update!(**args)
  @adjacency_list = args[:adjacency_list] if args.key?(:adjacency_list)
  @groups = args[:groups] if args.key?(:groups)
end