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.
14651 14652 14653 |
# File 'lib/kaltura_types.rb', line 14651 def dest_file_sync_stored_path @dest_file_sync_stored_path end |
#ftp_passive_mode ⇒ Object
Returns the value of attribute ftp_passive_mode.
14647 14648 14649 |
# File 'lib/kaltura_types.rb', line 14647 def ftp_passive_mode @ftp_passive_mode end |
#server_pass_phrase ⇒ Object
Returns the value of attribute server_pass_phrase.
14646 14647 14648 |
# File 'lib/kaltura_types.rb', line 14646 def server_pass_phrase @server_pass_phrase end |
#server_password ⇒ Object
Returns the value of attribute server_password.
14643 14644 14645 |
# File 'lib/kaltura_types.rb', line 14643 def server_password @server_password end |
#server_private_key ⇒ Object
Returns the value of attribute server_private_key.
14644 14645 14646 |
# File 'lib/kaltura_types.rb', line 14644 def server_private_key @server_private_key end |
#server_public_key ⇒ Object
Returns the value of attribute server_public_key.
14645 14646 14647 |
# File 'lib/kaltura_types.rb', line 14645 def server_public_key @server_public_key end |
#server_url ⇒ Object
Returns the value of attribute server_url.
14641 14642 14643 |
# File 'lib/kaltura_types.rb', line 14641 def server_url @server_url end |
#server_username ⇒ Object
Returns the value of attribute server_username.
14642 14643 14644 |
# File 'lib/kaltura_types.rb', line 14642 def server_username @server_username end |
#src_file_encryption_key ⇒ Object
Returns the value of attribute src_file_encryption_key.
14649 14650 14651 |
# File 'lib/kaltura_types.rb', line 14649 def src_file_encryption_key @src_file_encryption_key end |
#src_file_sync_id ⇒ Object
Returns the value of attribute src_file_sync_id.
14650 14651 14652 |
# File 'lib/kaltura_types.rb', line 14650 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.
14648 14649 14650 |
# File 'lib/kaltura_types.rb', line 14648 def src_file_sync_local_path @src_file_sync_local_path end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
14657 14658 14659 14660 14661 14662 14663 14664 14665 14666 14667 14668 14669 14670 14671 14672 14673 14674 14675 14676 14677 14678 14679 14680 14681 14682 14683 14684 14685 14686 14687 14688 14689 14690 14691 14692 |
# File 'lib/kaltura_types.rb', line 14657 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 |