Class: Kaltura::KalturaSshImportJobData

Inherits:
KalturaImportJobData show all
Defined in:
lib/kaltura_types.rb

Direct Known Subclasses

KalturaDropFolderImportJobData

Instance Attribute Summary collapse

Attributes inherited from KalturaImportJobData

#dest_file_local_path, #dest_file_shared_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

#camelcase, #to_b, #to_params

Instance Attribute Details

#pass_phraseObject

Returns the value of attribute pass_phrase.



18385
18386
18387
# File 'lib/kaltura_types.rb', line 18385

def pass_phrase
  @pass_phrase
end

#private_keyObject

Returns the value of attribute private_key.



18383
18384
18385
# File 'lib/kaltura_types.rb', line 18383

def private_key
  @private_key
end

#public_keyObject

Returns the value of attribute public_key.



18384
18385
18386
# File 'lib/kaltura_types.rb', line 18384

def public_key
  @public_key
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



18388
18389
18390
18391
18392
18393
18394
18395
18396
18397
18398
18399
# File 'lib/kaltura_types.rb', line 18388

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