class Google::Apis::CloudidentityV1beta1::PosixGroup

POSIX Group definition to represent a group in a POSIX compliant system.

Attributes

gid[RW]

GID of the POSIX group. Corresponds to the JSON property `gid` @return [Fixnum]

name[RW]

Name of the POSIX group. Corresponds to the JSON property `name` @return [String]

system_id[RW]

System identifier for which group name and gid apply to. If not specified it will default to empty value. Corresponds to the JSON property `systemId` @return [String]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/cloudidentity_v1beta1/classes.rb, line 2267
def update!(**args)
  @gid = args[:gid] if args.key?(:gid)
  @name = args[:name] if args.key?(:name)
  @system_id = args[:system_id] if args.key?(:system_id)
end