Class: Google::Apis::CloudidentityV1::MembershipRelation

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 containing membership relation.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ MembershipRelation

Returns a new instance of MembershipRelation.



2511
2512
2513
# File 'lib/google/apis/cloudidentity_v1/classes.rb', line 2511

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

Instance Attribute Details

#descriptionString

An extended description to help users determine the purpose of a Group. Corresponds to the JSON property description

Returns:

  • (String)


2472
2473
2474
# File 'lib/google/apis/cloudidentity_v1/classes.rb', line 2472

def description
  @description
end

#display_nameString

The display name of the Group. Corresponds to the JSON property displayName

Returns:

  • (String)


2477
2478
2479
# File 'lib/google/apis/cloudidentity_v1/classes.rb', line 2477

def display_name
  @display_name
end

#groupString

The resource name of the Group. Shall be of the form groups/group_id`. Corresponds to the JSON propertygroup`

Returns:

  • (String)


2483
2484
2485
# File 'lib/google/apis/cloudidentity_v1/classes.rb', line 2483

def group
  @group
end

#group_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 groupKey



2491
2492
2493
# File 'lib/google/apis/cloudidentity_v1/classes.rb', line 2491

def group_key
  @group_key
end

#labelsHash<String,String>

One or more label entries that apply to the Group. Currently supported labels contain a key with an empty value. Corresponds to the JSON property labels

Returns:

  • (Hash<String,String>)


2497
2498
2499
# File 'lib/google/apis/cloudidentity_v1/classes.rb', line 2497

def labels
  @labels
end

#membershipString

The resource name of the Membership. Shall be of the form groups/group_id/memberships/ membership_id`. Corresponds to the JSON propertymembership`

Returns:

  • (String)


2504
2505
2506
# File 'lib/google/apis/cloudidentity_v1/classes.rb', line 2504

def membership
  @membership
end

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

The MembershipRoles that apply to the Membership. Corresponds to the JSON property roles



2509
2510
2511
# File 'lib/google/apis/cloudidentity_v1/classes.rb', line 2509

def roles
  @roles
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2516
2517
2518
2519
2520
2521
2522
2523
2524
# File 'lib/google/apis/cloudidentity_v1/classes.rb', line 2516

def update!(**args)
  @description = args[:description] if args.key?(:description)
  @display_name = args[:display_name] if args.key?(:display_name)
  @group = args[:group] if args.key?(:group)
  @group_key = args[:group_key] if args.key?(:group_key)
  @labels = args[:labels] if args.key?(:labels)
  @membership = args[:membership] if args.key?(:membership)
  @roles = args[:roles] if args.key?(:roles)
end