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.



2450
2451
2452
# File 'lib/google/apis/cloudidentity_v1/classes.rb', line 2450

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)


2411
2412
2413
# File 'lib/google/apis/cloudidentity_v1/classes.rb', line 2411

def create_time
  @create_time
end

#delivery_settingString

Output only. Delivery setting associated with the membership. Corresponds to the JSON property deliverySetting

Returns:

  • (String)


2416
2417
2418
# File 'lib/google/apis/cloudidentity_v1/classes.rb', line 2416

def delivery_setting
  @delivery_setting
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)


2423
2424
2425
# File 'lib/google/apis/cloudidentity_v1/classes.rb', line 2423

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



2431
2432
2433
# File 'lib/google/apis/cloudidentity_v1/classes.rb', line 2431

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



2438
2439
2440
# File 'lib/google/apis/cloudidentity_v1/classes.rb', line 2438

def roles
  @roles
end

#typeString

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

Returns:

  • (String)


2443
2444
2445
# File 'lib/google/apis/cloudidentity_v1/classes.rb', line 2443

def type
  @type
end

#update_timeString

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

Returns:

  • (String)


2448
2449
2450
# File 'lib/google/apis/cloudidentity_v1/classes.rb', line 2448

def update_time
  @update_time
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2455
2456
2457
2458
2459
2460
2461
2462
2463
# File 'lib/google/apis/cloudidentity_v1/classes.rb', line 2455

def update!(**args)
  @create_time = args[:create_time] if args.key?(:create_time)
  @delivery_setting = args[:delivery_setting] if args.key?(:delivery_setting)
  @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