Class: Google::Apis::CloudidentityV1beta1::Membership
- Inherits:
-
Object
- Object
- Google::Apis::CloudidentityV1beta1::Membership
- Defined in:
- generated/google/apis/cloudidentity_v1beta1/classes.rb,
generated/google/apis/cloudidentity_v1beta1/representations.rb,
generated/google/apis/cloudidentity_v1beta1/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
-
#create_time ⇒ String
Output only.
-
#member_key ⇒ Google::Apis::CloudidentityV1beta1::EntityKey
A unique identifier for an entity in the Cloud Identity Groups API.
-
#name ⇒ String
Output only.
-
#preferred_member_key ⇒ Google::Apis::CloudidentityV1beta1::EntityKey
A unique identifier for an entity in the Cloud Identity Groups API.
-
#roles ⇒ Array<Google::Apis::CloudidentityV1beta1::MembershipRole>
The
MembershipRole
s that apply to theMembership
. -
#update_time ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Membership
constructor
A new instance of Membership.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ Membership
Returns a new instance of Membership.
848 849 850 |
# File 'generated/google/apis/cloudidentity_v1beta1/classes.rb', line 848 def initialize(**args) update!(**args) end |
Instance Attribute Details
#create_time ⇒ String
Output only. The time when the Membership
was created.
Corresponds to the JSON property createTime
810 811 812 |
# File 'generated/google/apis/cloudidentity_v1beta1/classes.rb', line 810 def create_time @create_time end |
#member_key ⇒ Google::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 namespace
s.
Corresponds to the JSON property memberKey
818 819 820 |
# File 'generated/google/apis/cloudidentity_v1beta1/classes.rb', line 818 def member_key @member_key end |
#name ⇒ String
Output only. The resource name of
the Membership
.
Shall be of the form groups/
group_id/memberships/
membership_id`.
Corresponds to the JSON property
name`
826 827 828 |
# File 'generated/google/apis/cloudidentity_v1beta1/classes.rb', line 826 def name @name end |
#preferred_member_key ⇒ Google::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 namespace
s.
Corresponds to the JSON property preferredMemberKey
834 835 836 |
# File 'generated/google/apis/cloudidentity_v1beta1/classes.rb', line 834 def preferred_member_key @preferred_member_key end |
#roles ⇒ Array<Google::Apis::CloudidentityV1beta1::MembershipRole>
The MembershipRole
s that apply to the Membership
.
If unspecified, defaults to a single MembershipRole
with name
MEMBER
.
Must not contain duplicate MembershipRole
s with the same name
.
Corresponds to the JSON property roles
841 842 843 |
# File 'generated/google/apis/cloudidentity_v1beta1/classes.rb', line 841 def roles @roles end |
#update_time ⇒ String
Output only. The time when the Membership
was last updated.
Corresponds to the JSON property updateTime
846 847 848 |
# File 'generated/google/apis/cloudidentity_v1beta1/classes.rb', line 846 def update_time @update_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
853 854 855 856 857 858 859 860 |
# File 'generated/google/apis/cloudidentity_v1beta1/classes.rb', line 853 def update!(**args) @create_time = args[:create_time] if args.key?(:create_time) @member_key = args[:member_key] if args.key?(:member_key) @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) @update_time = args[:update_time] if args.key?(:update_time) end |