Class: Google::Apis::CloudidentityV1::MembershipRelation
- Inherits:
-
Object
- Object
- Google::Apis::CloudidentityV1::MembershipRelation
- 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
-
#description ⇒ String
An extended description to help users determine the purpose of a
Group
. -
#display_name ⇒ String
The display name of the
Group
. -
#group ⇒ String
The resource name of the
Group
. -
#group_key ⇒ Google::Apis::CloudidentityV1::EntityKey
A unique identifier for an entity in the Cloud Identity Groups API.
-
#labels ⇒ Hash<String,String>
One or more label entries that apply to the Group.
-
#membership ⇒ String
The resource name of the
Membership
. -
#roles ⇒ Array<Google::Apis::CloudidentityV1::MembershipRole>
The
MembershipRole
s that apply to theMembership
.
Instance Method Summary collapse
-
#initialize(**args) ⇒ MembershipRelation
constructor
A new instance of MembershipRelation.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ MembershipRelation
Returns a new instance of MembershipRelation.
2180 2181 2182 |
# File 'lib/google/apis/cloudidentity_v1/classes.rb', line 2180 def initialize(**args) update!(**args) end |
Instance Attribute Details
#description ⇒ String
An extended description to help users determine the purpose of a Group
.
Corresponds to the JSON property description
2141 2142 2143 |
# File 'lib/google/apis/cloudidentity_v1/classes.rb', line 2141 def description @description end |
#display_name ⇒ String
The display name of the Group
.
Corresponds to the JSON property displayName
2146 2147 2148 |
# File 'lib/google/apis/cloudidentity_v1/classes.rb', line 2146 def display_name @display_name end |
#group ⇒ String
The resource name of
the Group
. Shall be of the form groups/
group_id`.
Corresponds to the JSON property
group`
2152 2153 2154 |
# File 'lib/google/apis/cloudidentity_v1/classes.rb', line 2152 def group @group end |
#group_key ⇒ Google::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 namespace
s.
Corresponds to the JSON property groupKey
2160 2161 2162 |
# File 'lib/google/apis/cloudidentity_v1/classes.rb', line 2160 def group_key @group_key end |
#labels ⇒ Hash<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
2166 2167 2168 |
# File 'lib/google/apis/cloudidentity_v1/classes.rb', line 2166 def labels @labels end |
#membership ⇒ String
The resource name of
the Membership
. Shall be of the form groups/
group_id/memberships/
membership_id`.
Corresponds to the JSON property
membership`
2173 2174 2175 |
# File 'lib/google/apis/cloudidentity_v1/classes.rb', line 2173 def membership @membership end |
#roles ⇒ Array<Google::Apis::CloudidentityV1::MembershipRole>
The MembershipRole
s that apply to the Membership
.
Corresponds to the JSON property roles
2178 2179 2180 |
# File 'lib/google/apis/cloudidentity_v1/classes.rb', line 2178 def roles @roles end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2185 2186 2187 2188 2189 2190 2191 2192 2193 |
# File 'lib/google/apis/cloudidentity_v1/classes.rb', line 2185 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 |