Class: Google::Apis::CloudidentityV1beta1::GroupRelation

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

Overview

Message representing a transitive group of a user or a group.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GroupRelation

Returns a new instance of GroupRelation.



1557
1558
1559
# File 'generated/google/apis/cloudidentity_v1beta1/classes.rb', line 1557

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

Instance Attribute Details

#display_nameString

Display name for this group. Corresponds to the JSON property displayName

Returns:

  • (String)


1527
1528
1529
# File 'generated/google/apis/cloudidentity_v1beta1/classes.rb', line 1527

def display_name
  @display_name
end

#groupString

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

Returns:

  • (String)


1532
1533
1534
# File 'generated/google/apis/cloudidentity_v1beta1/classes.rb', line 1532

def group
  @group
end

#group_keyGoogle::Apis::CloudidentityV1beta1::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



1540
1541
1542
# File 'generated/google/apis/cloudidentity_v1beta1/classes.rb', line 1540

def group_key
  @group_key
end

#labelsHash<String,String>

Labels for Group resource. Corresponds to the JSON property labels

Returns:

  • (Hash<String,String>)


1545
1546
1547
# File 'generated/google/apis/cloudidentity_v1beta1/classes.rb', line 1545

def labels
  @labels
end

#relation_typeString

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

Returns:

  • (String)


1550
1551
1552
# File 'generated/google/apis/cloudidentity_v1beta1/classes.rb', line 1550

def relation_type
  @relation_type
end

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

Membership roles of the member for the group. Corresponds to the JSON property roles



1555
1556
1557
# File 'generated/google/apis/cloudidentity_v1beta1/classes.rb', line 1555

def roles
  @roles
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1562
1563
1564
1565
1566
1567
1568
1569
# File 'generated/google/apis/cloudidentity_v1beta1/classes.rb', line 1562

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