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.
15259 15260 15261 |
# File 'lib/kaltura_types.rb', line 15259 def dest_file_sync_stored_path @dest_file_sync_stored_path end |
#ftp_passive_mode ⇒ Object
Returns the value of attribute ftp_passive_mode.
15255 15256 15257 |
# File 'lib/kaltura_types.rb', line 15255 def ftp_passive_mode @ftp_passive_mode end |
#server_pass_phrase ⇒ Object
Returns the value of attribute server_pass_phrase.
15254 15255 15256 |
# File 'lib/kaltura_types.rb', line 15254 def server_pass_phrase @server_pass_phrase end |
#server_password ⇒ Object
Returns the value of attribute server_password.
15251 15252 15253 |
# File 'lib/kaltura_types.rb', line 15251 def server_password @server_password end |
#server_private_key ⇒ Object
Returns the value of attribute server_private_key.
15252 15253 15254 |
# File 'lib/kaltura_types.rb', line 15252 def server_private_key @server_private_key end |
#server_public_key ⇒ Object
Returns the value of attribute server_public_key.
15253 15254 15255 |
# File 'lib/kaltura_types.rb', line 15253 def server_public_key @server_public_key end |
#server_url ⇒ Object
Returns the value of attribute server_url.
15249 15250 15251 |
# File 'lib/kaltura_types.rb', line 15249 def server_url @server_url end |
#server_username ⇒ Object
Returns the value of attribute server_username.
15250 15251 15252 |
# File 'lib/kaltura_types.rb', line 15250 def server_username @server_username end |
#src_file_encryption_key ⇒ Object
Returns the value of attribute src_file_encryption_key.
15257 15258 15259 |
# File 'lib/kaltura_types.rb', line 15257 def src_file_encryption_key @src_file_encryption_key end |
#src_file_sync_id ⇒ Object
Returns the value of attribute src_file_sync_id.
15258 15259 15260 |
# File 'lib/kaltura_types.rb', line 15258 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.
15256 15257 15258 |
# File 'lib/kaltura_types.rb', line 15256 def src_file_sync_local_path @src_file_sync_local_path end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
15265 15266 15267 15268 15269 15270 15271 15272 15273 15274 15275 15276 15277 15278 15279 15280 15281 15282 15283 15284 15285 15286 15287 15288 15289 15290 15291 15292 15293 15294 15295 15296 15297 15298 15299 15300 |
# File 'lib/kaltura_types.rb', line 15265 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 |