Class: Kaltura::KalturaStorageJobData

Inherits:
KalturaJobData show all
Defined in:
lib/kaltura_types.rb

Instance Attribute Summary collapse

Attributes inherited from KalturaObjectBase

#object_type, #related_objects

Instance Method Summary collapse

Methods inherited from KalturaObjectBase

#camelcase, #to_b, #to_params

Instance Attribute Details

#dest_file_sync_stored_pathObject

Returns the value of attribute dest_file_sync_stored_path.



10004
10005
10006
# File 'lib/kaltura_types.rb', line 10004

def dest_file_sync_stored_path
  @dest_file_sync_stored_path
end

#ftp_passive_modeObject

Returns the value of attribute ftp_passive_mode.



10001
10002
10003
# File 'lib/kaltura_types.rb', line 10001

def ftp_passive_mode
  @ftp_passive_mode
end

#server_pass_phraseObject

Returns the value of attribute server_pass_phrase.



10000
10001
10002
# File 'lib/kaltura_types.rb', line 10000

def server_pass_phrase
  @server_pass_phrase
end

#server_passwordObject

Returns the value of attribute server_password.



9997
9998
9999
# File 'lib/kaltura_types.rb', line 9997

def server_password
  @server_password
end

#server_private_keyObject

Returns the value of attribute server_private_key.



9998
9999
10000
# File 'lib/kaltura_types.rb', line 9998

def server_private_key
  @server_private_key
end

#server_public_keyObject

Returns the value of attribute server_public_key.



9999
10000
10001
# File 'lib/kaltura_types.rb', line 9999

def server_public_key
  @server_public_key
end

#server_urlObject

Returns the value of attribute server_url.



9995
9996
9997
# File 'lib/kaltura_types.rb', line 9995

def server_url
  @server_url
end

#server_usernameObject

Returns the value of attribute server_username.



9996
9997
9998
# File 'lib/kaltura_types.rb', line 9996

def server_username
  @server_username
end

#src_file_sync_idObject

Returns the value of attribute src_file_sync_id.



10003
10004
10005
# File 'lib/kaltura_types.rb', line 10003

def src_file_sync_id
  @src_file_sync_id
end

#src_file_sync_local_pathObject

Returns the value of attribute src_file_sync_local_path.



10002
10003
10004
# File 'lib/kaltura_types.rb', line 10002

def src_file_sync_local_path
  @src_file_sync_local_path
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



10010
10011
10012
10013
10014
10015
10016
10017
10018
10019
10020
10021
10022
# File 'lib/kaltura_types.rb', line 10010

def from_xml(xml_element)
	super
	self.server_url = xml_element.elements['serverUrl'].text
	self.server_username = xml_element.elements['serverUsername'].text
	self.server_password = xml_element.elements['serverPassword'].text
	self.server_private_key = xml_element.elements['serverPrivateKey'].text
	self.server_public_key = xml_element.elements['serverPublicKey'].text
	self.server_pass_phrase = xml_element.elements['serverPassPhrase'].text
	self.ftp_passive_mode = xml_element.elements['ftpPassiveMode'].text
	self.src_file_sync_local_path = xml_element.elements['srcFileSyncLocalPath'].text
	self.src_file_sync_id = xml_element.elements['srcFileSyncId'].text
	self.dest_file_sync_stored_path = xml_element.elements['destFileSyncStoredPath'].text
end