Class: Virtuozzo::SOAP::Types::Processm::Execute::Cred
- Inherits:
-
Object
- Object
- Virtuozzo::SOAP::Types::Processm::Execute::Cred
- Defined in:
- lib/virtuozzo/soap/types/processm.rb
Overview
Instance Attribute Summary collapse
-
#chdir ⇒ Object
Returns the value of attribute chdir.
-
#chroot ⇒ Object
Returns the value of attribute chroot.
-
#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 = [], chroot = nil, chdir = nil, umask = nil) ⇒ Cred
constructor
A new instance of Cred.
Constructor Details
#initialize(user = nil, uid = nil, group = [], gid = [], chroot = nil, chdir = nil, umask = nil) ⇒ Cred
Returns a new instance of Cred.
2634 2635 2636 2637 2638 2639 2640 2641 2642 |
# File 'lib/virtuozzo/soap/types/processm.rb', line 2634 def initialize(user = nil, uid = nil, group = [], gid = [], chroot = nil, chdir = nil, umask = nil) @user = user @uid = uid @group = group @gid = gid @chroot = chroot @chdir = chdir @umask = umask end |
Instance Attribute Details
#chdir ⇒ Object
Returns the value of attribute chdir.
2631 2632 2633 |
# File 'lib/virtuozzo/soap/types/processm.rb', line 2631 def chdir @chdir end |
#chroot ⇒ Object
Returns the value of attribute chroot.
2630 2631 2632 |
# File 'lib/virtuozzo/soap/types/processm.rb', line 2630 def chroot @chroot end |
#gid ⇒ Object
Returns the value of attribute gid.
2629 2630 2631 |
# File 'lib/virtuozzo/soap/types/processm.rb', line 2629 def gid @gid end |
#group ⇒ Object
Returns the value of attribute group.
2628 2629 2630 |
# File 'lib/virtuozzo/soap/types/processm.rb', line 2628 def group @group end |
#uid ⇒ Object
Returns the value of attribute uid.
2627 2628 2629 |
# File 'lib/virtuozzo/soap/types/processm.rb', line 2627 def uid @uid end |
#umask ⇒ Object
Returns the value of attribute umask.
2632 2633 2634 |
# File 'lib/virtuozzo/soap/types/processm.rb', line 2632 def umask @umask end |
#user ⇒ Object
Returns the value of attribute user.
2626 2627 2628 |
# File 'lib/virtuozzo/soap/types/processm.rb', line 2626 def user @user end |