Class: Google::Apis::CloudidentityV1::Membership

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

A membership within the Cloud Identity Groups API. A Membership defines a relationship between a Group and an entity belonging to that Group, referred to as a "member".

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Membership

Returns a new instance of Membership.



2045
2046
2047
# File 'lib/google/apis/cloudidentity_v1/classes.rb', line 2045

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

Instance Attribute Details

#create_timeString

Output only. The time when the Membership was created. Corresponds to the JSON property createTime

Returns:

  • (String)


2011
2012
2013
# File 'lib/google/apis/cloudidentity_v1/classes.rb', line 2011

def create_time
  @create_time
end

#nameString

Output only. The resource name of the Membership. Shall be of the form groups/group/ memberships/membership`. Corresponds to the JSON propertyname`

Returns:

  • (String)


2018
2019
2020
# File 'lib/google/apis/cloudidentity_v1/classes.rb', line 2018

def name
  @name
end

#preferred_member_keyGoogle::Apis::CloudidentityV1::EntityKey

A unique identifier for an entity in the Cloud Identity Groups API. An entity can represent either a group with an optional namespace or a user without a namespace. The combination of id and namespace must be unique; however, the same id can be used with different namespaces. Corresponds to the JSON property preferredMemberKey



2026
2027
2028
# File 'lib/google/apis/cloudidentity_v1/classes.rb', line 2026

def preferred_member_key
  @preferred_member_key
end

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

The MembershipRoles that apply to the Membership. If unspecified, defaults to a single MembershipRole with name MEMBER. Must not contain duplicate MembershipRoles with the same name. Corresponds to the JSON property roles



2033
2034
2035
# File 'lib/google/apis/cloudidentity_v1/classes.rb', line 2033

def roles
  @roles
end

#typeString

Output only. The type of the membership. Corresponds to the JSON property type

Returns:

  • (String)


2038
2039
2040
# File 'lib/google/apis/cloudidentity_v1/classes.rb', line 2038

def type
  @type
end

#update_timeString

Output only. The time when the Membership was last updated. Corresponds to the JSON property updateTime

Returns:

  • (String)


2043
2044
2045
# File 'lib/google/apis/cloudidentity_v1/classes.rb', line 2043

def update_time
  @update_time
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2050
2051
2052
2053
2054
2055
2056
2057
# File 'lib/google/apis/cloudidentity_v1/classes.rb', line 2050

def update!(**args)
  @create_time = args[:create_time] if args.key?(:create_time)
  @name = args[:name] if args.key?(:name)
  @preferred_member_key = args[:preferred_member_key] if args.key?(:preferred_member_key)
  @roles = args[:roles] if args.key?(:roles)
  @type = args[:type] if args.key?(:type)
  @update_time = args[:update_time] if args.key?(:update_time)
end