Class: Google::Apis::CloudidentityV1::MemberRelation

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

Overview

Message representing a transitive membership of a group.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ MemberRelation

Returns a new instance of MemberRelation.



2330
2331
2332
# File 'lib/google/apis/cloudidentity_v1/classes.rb', line 2330

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

Instance Attribute Details

#memberString

Resource name for this member. Corresponds to the JSON property member

Returns:

  • (String)


2312
2313
2314
# File 'lib/google/apis/cloudidentity_v1/classes.rb', line 2312

def member
  @member
end

#preferred_member_keyArray<Google::Apis::CloudidentityV1::EntityKey>

Entity key has an id and a namespace. In case of discussion forums, the id will be an email address without a namespace. Corresponds to the JSON property preferredMemberKey



2318
2319
2320
# File 'lib/google/apis/cloudidentity_v1/classes.rb', line 2318

def preferred_member_key
  @preferred_member_key
end

#relation_typeString

The relation between the group and the transitive member. Corresponds to the JSON property relationType

Returns:

  • (String)


2323
2324
2325
# File 'lib/google/apis/cloudidentity_v1/classes.rb', line 2323

def relation_type
  @relation_type
end

#rolesArray<Google::Apis::CloudidentityV1::TransitiveMembershipRole>

The membership role details (i.e name of role and expiry time). Corresponds to the JSON property roles



2328
2329
2330
# File 'lib/google/apis/cloudidentity_v1/classes.rb', line 2328

def roles
  @roles
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2335
2336
2337
2338
2339
2340
# File 'lib/google/apis/cloudidentity_v1/classes.rb', line 2335

def update!(**args)
  @member = args[:member] if args.key?(:member)
  @preferred_member_key = args[:preferred_member_key] if args.key?(:preferred_member_key)
  @relation_type = args[:relation_type] if args.key?(:relation_type)
  @roles = args[:roles] if args.key?(:roles)
end