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.



2180
2181
2182
# File 'lib/google/apis/cloudidentity_v1/classes.rb', line 2180

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)


2141
2142
2143
# File 'lib/google/apis/cloudidentity_v1/classes.rb', line 2141

def description
  @description
end

#display_nameString

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

Returns:

  • (String)


2146
2147
2148
# File 'lib/google/apis/cloudidentity_v1/classes.rb', line 2146

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)


2152
2153
2154
# File 'lib/google/apis/cloudidentity_v1/classes.rb', line 2152

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



2160
2161
2162
# File 'lib/google/apis/cloudidentity_v1/classes.rb', line 2160

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>)


2166
2167
2168
# File 'lib/google/apis/cloudidentity_v1/classes.rb', line 2166

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)


2173
2174
2175
# File 'lib/google/apis/cloudidentity_v1/classes.rb', line 2173

def membership
  @membership
end

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

The MembershipRoles 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