Class: Google::Apis::CloudidentityV1beta1::PosixGroup
- Inherits:
-
Object
- Object
- Google::Apis::CloudidentityV1beta1::PosixGroup
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/cloudidentity_v1beta1/classes.rb,
lib/google/apis/cloudidentity_v1beta1/representations.rb,
lib/google/apis/cloudidentity_v1beta1/representations.rb
Overview
POSIX Group definition to represent a group in a POSIX compliant system. Caution: POSIX groups are deprecated. As of September 26, 2024, you can no longer create new POSIX groups. For more information, see https://cloud.google. com/identity/docs/deprecations/posix-groups
Instance Attribute Summary collapse
-
#gid ⇒ Fixnum
GID of the POSIX group.
-
#name ⇒ String
Name of the POSIX group.
-
#system_id ⇒ String
System identifier for which group name and gid apply to.
Instance Method Summary collapse
-
#initialize(**args) ⇒ PosixGroup
constructor
A new instance of PosixGroup.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ PosixGroup
Returns a new instance of PosixGroup.
3972 3973 3974 |
# File 'lib/google/apis/cloudidentity_v1beta1/classes.rb', line 3972 def initialize(**args) update!(**args) end |
Instance Attribute Details
#gid ⇒ Fixnum
GID of the POSIX group.
Corresponds to the JSON property gid
3959 3960 3961 |
# File 'lib/google/apis/cloudidentity_v1beta1/classes.rb', line 3959 def gid @gid end |
#name ⇒ String
Name of the POSIX group.
Corresponds to the JSON property name
3964 3965 3966 |
# File 'lib/google/apis/cloudidentity_v1beta1/classes.rb', line 3964 def name @name end |
#system_id ⇒ String
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
3970 3971 3972 |
# File 'lib/google/apis/cloudidentity_v1beta1/classes.rb', line 3970 def system_id @system_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3977 3978 3979 3980 3981 |
# File 'lib/google/apis/cloudidentity_v1beta1/classes.rb', line 3977 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 |