class Google::Apis::ClouduseraccountsBeta::LinuxGroupView

A detailed view of a Linux group.

Attributes

gid[RW]
Output Only

The Group ID.

Corresponds to the JSON property `gid` @return [Fixnum]

group_name[RW]
Output Only

Group name.

Corresponds to the JSON property `groupName` @return [String]

members[RW]
Output Only

List of user accounts that belong to the group.

Corresponds to the JSON property `members` @return [Array<String>]

Public Class Methods

new(**args) click to toggle source
# File generated/google/apis/clouduseraccounts_beta/classes.rb, line 286
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File generated/google/apis/clouduseraccounts_beta/classes.rb, line 291
def update!(**args)
  @gid = args[:gid] if args.key?(:gid)
  @group_name = args[:group_name] if args.key?(:group_name)
  @members = args[:members] if args.key?(:members)
end