Class: Virtuozzo::SOAP::Types::Filer::CredType

Inherits:
Object
  • Object
show all
Defined in:
lib/virtuozzo/soap/types/filer.rb

Overview

http://www.swsoft.com/webservices/vzl/4.0.0/filercredType

user - SOAP::SOAPString
uid - SOAP::SOAPLong
group - SOAP::SOAPString
gid - SOAP::SOAPLong
umask - SOAP::SOAPInt

Instance Attribute Summary collapse

Instance Method Summary collapse

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

#gidObject

Returns the value of attribute gid.



105
106
107
# File 'lib/virtuozzo/soap/types/filer.rb', line 105

def gid
  @gid
end

#groupObject

Returns the value of attribute group.



104
105
106
# File 'lib/virtuozzo/soap/types/filer.rb', line 104

def group
  @group
end

#uidObject

Returns the value of attribute uid.



103
104
105
# File 'lib/virtuozzo/soap/types/filer.rb', line 103

def uid
  @uid
end

#umaskObject

Returns the value of attribute umask.



106
107
108
# File 'lib/virtuozzo/soap/types/filer.rb', line 106

def umask
  @umask
end

#userObject

Returns the value of attribute user.



102
103
104
# File 'lib/virtuozzo/soap/types/filer.rb', line 102

def user
  @user
end