Class: Kaltura::KalturaFileSyncDescriptor

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

Instance Attribute Summary collapse

Attributes inherited from KalturaObjectBase

#object_type, #related_objects

Instance Method Summary collapse

Methods inherited from KalturaObjectBase

#camelcase, #to_b, #to_params

Instance Attribute Details

#file_encryption_keyObject

Returns the value of attribute file_encryption_key.



3911
3912
3913
# File 'lib/kaltura_types.rb', line 3911

def file_encryption_key
  @file_encryption_key
end

#file_sync_local_pathObject

Returns the value of attribute file_sync_local_path.



3910
3911
3912
# File 'lib/kaltura_types.rb', line 3910

def file_sync_local_path
  @file_sync_local_path
end

#file_sync_object_sub_typeObject

Returns the value of attribute file_sync_object_sub_type.



3914
3915
3916
# File 'lib/kaltura_types.rb', line 3914

def file_sync_object_sub_type
  @file_sync_object_sub_type
end

#file_sync_remote_urlObject

The translated path as used by the scheduler



3913
3914
3915
# File 'lib/kaltura_types.rb', line 3913

def file_sync_remote_url
  @file_sync_remote_url
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
# File 'lib/kaltura_types.rb', line 3920

def from_xml(xml_element)
	super
	if xml_element.elements['fileSyncLocalPath'] != nil
		self.file_sync_local_path = xml_element.elements['fileSyncLocalPath'].text
	end
	if xml_element.elements['fileEncryptionKey'] != nil
		self.file_encryption_key = xml_element.elements['fileEncryptionKey'].text
	end
	if xml_element.elements['fileSyncRemoteUrl'] != nil
		self.file_sync_remote_url = xml_element.elements['fileSyncRemoteUrl'].text
	end
	if xml_element.elements['fileSyncObjectSubType'] != nil
		self.file_sync_object_sub_type = xml_element.elements['fileSyncObjectSubType'].text
	end
end