Class: Virtuozzo::SOAP::Types::Filer::CredType
- Inherits:
-
Object
- Object
- Virtuozzo::SOAP::Types::Filer::CredType
- Defined in:
- lib/virtuozzo/soap/types/filer.rb
Overview
Direct Known Subclasses
Instance Attribute Summary collapse
-
#gid ⇒ Object
Returns the value of attribute gid.
-
#group ⇒ Object
Returns the value of attribute group.
-
#uid ⇒ Object
Returns the value of attribute uid.
-
#umask ⇒ Object
Returns the value of attribute umask.
-
#user ⇒ Object
Returns the value of attribute user.
Instance Method Summary collapse
-
#initialize(user = nil, uid = nil, group = [], gid = [], umask = nil) ⇒ CredType
constructor
A new instance of CredType.
Constructor Details
#initialize(user = nil, uid = nil, group = [], gid = [], umask = nil) ⇒ CredType
Returns a new instance of CredType.
108 109 110 111 112 113 114 |
# File 'lib/virtuozzo/soap/types/filer.rb', line 108 def initialize(user = nil, uid = nil, group = [], gid = [], umask = nil) @user = user @uid = uid @group = group @gid = gid @umask = umask end |
Instance Attribute Details
#gid ⇒ Object
Returns the value of attribute gid.
105 106 107 |
# File 'lib/virtuozzo/soap/types/filer.rb', line 105 def gid @gid end |
#group ⇒ Object
Returns the value of attribute group.
104 105 106 |
# File 'lib/virtuozzo/soap/types/filer.rb', line 104 def group @group end |
#uid ⇒ Object
Returns the value of attribute uid.
103 104 105 |
# File 'lib/virtuozzo/soap/types/filer.rb', line 103 def uid @uid end |
#umask ⇒ Object
Returns the value of attribute umask.
106 107 108 |
# File 'lib/virtuozzo/soap/types/filer.rb', line 106 def umask @umask end |
#user ⇒ Object
Returns the value of attribute user.
102 103 104 |
# File 'lib/virtuozzo/soap/types/filer.rb', line 102 def user @user end |