Class: Google::Apis::CloudidentityV1::MembershipAdjacencyList

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
generated/google/apis/cloudidentity_v1/classes.rb,
generated/google/apis/cloudidentity_v1/representations.rb,
generated/google/apis/cloudidentity_v1/representations.rb

Overview

Membership graph's path information as an adjacency list.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ MembershipAdjacencyList

Returns a new instance of MembershipAdjacencyList.



1271
1272
1273
# File 'generated/google/apis/cloudidentity_v1/classes.rb', line 1271

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#edgesArray<Google::Apis::CloudidentityV1::Membership>

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



1264
1265
1266
# File 'generated/google/apis/cloudidentity_v1/classes.rb', line 1264

def edges
  @edges
end

#groupString

Resource name of the group that the members belong to. Corresponds to the JSON property group

Returns:

  • (String)


1269
1270
1271
# File 'generated/google/apis/cloudidentity_v1/classes.rb', line 1269

def group
  @group
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1276
1277
1278
1279
# File 'generated/google/apis/cloudidentity_v1/classes.rb', line 1276

def update!(**args)
  @edges = args[:edges] if args.key?(:edges)
  @group = args[:group] if args.key?(:group)
end