Class: Kaltura::KalturaSshImportJobData
- Inherits:
-
KalturaImportJobData
- Object
- KalturaObjectBase
- KalturaJobData
- KalturaImportJobData
- Kaltura::KalturaSshImportJobData
- Defined in:
- lib/kaltura_types.rb
Direct Known Subclasses
Instance Attribute Summary collapse
-
#pass_phrase ⇒ Object
Returns the value of attribute pass_phrase.
-
#private_key ⇒ Object
Returns the value of attribute private_key.
-
#public_key ⇒ Object
Returns the value of attribute public_key.
Attributes inherited from KalturaImportJobData
#dest_file_local_path, #file_size, #flavor_asset_id, #src_file_url
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#pass_phrase ⇒ Object
Returns the value of attribute pass_phrase.
18074 18075 18076 |
# File 'lib/kaltura_types.rb', line 18074 def pass_phrase @pass_phrase end |
#private_key ⇒ Object
Returns the value of attribute private_key.
18072 18073 18074 |
# File 'lib/kaltura_types.rb', line 18072 def private_key @private_key end |
#public_key ⇒ Object
Returns the value of attribute public_key.
18073 18074 18075 |
# File 'lib/kaltura_types.rb', line 18073 def public_key @public_key end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
18077 18078 18079 18080 18081 18082 18083 18084 18085 18086 18087 18088 |
# File 'lib/kaltura_types.rb', line 18077 def from_xml(xml_element) super if xml_element.elements['privateKey'] != nil self.private_key = xml_element.elements['privateKey'].text end if xml_element.elements['publicKey'] != nil self.public_key = xml_element.elements['publicKey'].text end if xml_element.elements['passPhrase'] != nil self.pass_phrase = xml_element.elements['passPhrase'].text end end |