Class: Kaltura::KalturaStorageJobData
- Inherits:
-
KalturaJobData
- Object
- KalturaObjectBase
- KalturaJobData
- Kaltura::KalturaStorageJobData
- Defined in:
- lib/kaltura_types.rb
Direct Known Subclasses
Instance Attribute Summary collapse
-
#dest_file_sync_stored_path ⇒ Object
Returns the value of attribute dest_file_sync_stored_path.
-
#ftp_passive_mode ⇒ Object
Returns the value of attribute ftp_passive_mode.
-
#server_pass_phrase ⇒ Object
Returns the value of attribute server_pass_phrase.
-
#server_password ⇒ Object
Returns the value of attribute server_password.
-
#server_private_key ⇒ Object
Returns the value of attribute server_private_key.
-
#server_public_key ⇒ Object
Returns the value of attribute server_public_key.
-
#server_url ⇒ Object
Returns the value of attribute server_url.
-
#server_username ⇒ Object
Returns the value of attribute server_username.
-
#src_file_encryption_key ⇒ Object
Returns the value of attribute src_file_encryption_key.
-
#src_file_sync_id ⇒ Object
Returns the value of attribute src_file_sync_id.
-
#src_file_sync_local_path ⇒ Object
Returns the value of attribute src_file_sync_local_path.
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#dest_file_sync_stored_path ⇒ Object
Returns the value of attribute dest_file_sync_stored_path.
15037 15038 15039 |
# File 'lib/kaltura_types.rb', line 15037 def dest_file_sync_stored_path @dest_file_sync_stored_path end |
#ftp_passive_mode ⇒ Object
Returns the value of attribute ftp_passive_mode.
15033 15034 15035 |
# File 'lib/kaltura_types.rb', line 15033 def ftp_passive_mode @ftp_passive_mode end |
#server_pass_phrase ⇒ Object
Returns the value of attribute server_pass_phrase.
15032 15033 15034 |
# File 'lib/kaltura_types.rb', line 15032 def server_pass_phrase @server_pass_phrase end |
#server_password ⇒ Object
Returns the value of attribute server_password.
15029 15030 15031 |
# File 'lib/kaltura_types.rb', line 15029 def server_password @server_password end |
#server_private_key ⇒ Object
Returns the value of attribute server_private_key.
15030 15031 15032 |
# File 'lib/kaltura_types.rb', line 15030 def server_private_key @server_private_key end |
#server_public_key ⇒ Object
Returns the value of attribute server_public_key.
15031 15032 15033 |
# File 'lib/kaltura_types.rb', line 15031 def server_public_key @server_public_key end |
#server_url ⇒ Object
Returns the value of attribute server_url.
15027 15028 15029 |
# File 'lib/kaltura_types.rb', line 15027 def server_url @server_url end |
#server_username ⇒ Object
Returns the value of attribute server_username.
15028 15029 15030 |
# File 'lib/kaltura_types.rb', line 15028 def server_username @server_username end |
#src_file_encryption_key ⇒ Object
Returns the value of attribute src_file_encryption_key.
15035 15036 15037 |
# File 'lib/kaltura_types.rb', line 15035 def src_file_encryption_key @src_file_encryption_key end |
#src_file_sync_id ⇒ Object
Returns the value of attribute src_file_sync_id.
15036 15037 15038 |
# File 'lib/kaltura_types.rb', line 15036 def src_file_sync_id @src_file_sync_id end |
#src_file_sync_local_path ⇒ Object
Returns the value of attribute src_file_sync_local_path.
15034 15035 15036 |
# File 'lib/kaltura_types.rb', line 15034 def src_file_sync_local_path @src_file_sync_local_path end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
15043 15044 15045 15046 15047 15048 15049 15050 15051 15052 15053 15054 15055 15056 15057 15058 15059 15060 15061 15062 15063 15064 15065 15066 15067 15068 15069 15070 15071 15072 15073 15074 15075 15076 15077 15078 |
# File 'lib/kaltura_types.rb', line 15043 def from_xml(xml_element) super if xml_element.elements['serverUrl'] != nil self.server_url = xml_element.elements['serverUrl'].text end if xml_element.elements['serverUsername'] != nil self.server_username = xml_element.elements['serverUsername'].text end if xml_element.elements['serverPassword'] != nil self.server_password = xml_element.elements['serverPassword'].text end if xml_element.elements['serverPrivateKey'] != nil self.server_private_key = xml_element.elements['serverPrivateKey'].text end if xml_element.elements['serverPublicKey'] != nil self.server_public_key = xml_element.elements['serverPublicKey'].text end if xml_element.elements['serverPassPhrase'] != nil self.server_pass_phrase = xml_element.elements['serverPassPhrase'].text end if xml_element.elements['ftpPassiveMode'] != nil self.ftp_passive_mode = xml_element.elements['ftpPassiveMode'].text end if xml_element.elements['srcFileSyncLocalPath'] != nil self.src_file_sync_local_path = xml_element.elements['srcFileSyncLocalPath'].text end if xml_element.elements['srcFileEncryptionKey'] != nil self.src_file_encryption_key = xml_element.elements['srcFileEncryptionKey'].text end if xml_element.elements['srcFileSyncId'] != nil self.src_file_sync_id = xml_element.elements['srcFileSyncId'].text end if xml_element.elements['destFileSyncStoredPath'] != nil self.dest_file_sync_stored_path = xml_element.elements['destFileSyncStoredPath'].text end end |