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.
15350 15351 15352 |
# File 'lib/kaltura_types.rb', line 15350 def dest_file_sync_stored_path @dest_file_sync_stored_path end |
#ftp_passive_mode ⇒ Object
Returns the value of attribute ftp_passive_mode.
15346 15347 15348 |
# File 'lib/kaltura_types.rb', line 15346 def ftp_passive_mode @ftp_passive_mode end |
#server_pass_phrase ⇒ Object
Returns the value of attribute server_pass_phrase.
15345 15346 15347 |
# File 'lib/kaltura_types.rb', line 15345 def server_pass_phrase @server_pass_phrase end |
#server_password ⇒ Object
Returns the value of attribute server_password.
15342 15343 15344 |
# File 'lib/kaltura_types.rb', line 15342 def server_password @server_password end |
#server_private_key ⇒ Object
Returns the value of attribute server_private_key.
15343 15344 15345 |
# File 'lib/kaltura_types.rb', line 15343 def server_private_key @server_private_key end |
#server_public_key ⇒ Object
Returns the value of attribute server_public_key.
15344 15345 15346 |
# File 'lib/kaltura_types.rb', line 15344 def server_public_key @server_public_key end |
#server_url ⇒ Object
Returns the value of attribute server_url.
15340 15341 15342 |
# File 'lib/kaltura_types.rb', line 15340 def server_url @server_url end |
#server_username ⇒ Object
Returns the value of attribute server_username.
15341 15342 15343 |
# File 'lib/kaltura_types.rb', line 15341 def server_username @server_username end |
#src_file_encryption_key ⇒ Object
Returns the value of attribute src_file_encryption_key.
15348 15349 15350 |
# File 'lib/kaltura_types.rb', line 15348 def src_file_encryption_key @src_file_encryption_key end |
#src_file_sync_id ⇒ Object
Returns the value of attribute src_file_sync_id.
15349 15350 15351 |
# File 'lib/kaltura_types.rb', line 15349 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.
15347 15348 15349 |
# File 'lib/kaltura_types.rb', line 15347 def src_file_sync_local_path @src_file_sync_local_path end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
15356 15357 15358 15359 15360 15361 15362 15363 15364 15365 15366 15367 15368 15369 15370 15371 15372 15373 15374 15375 15376 15377 15378 15379 15380 15381 15382 15383 15384 15385 15386 15387 15388 15389 15390 15391 |
# File 'lib/kaltura_types.rb', line 15356 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 |