Class: Kaltura::KalturaVelocixProvisionJobData

Inherits:
KalturaProvisionJobData show all
Defined in:
lib/kaltura_plugins/kaltura_velocix_client_plugin.rb

Instance Attribute Summary collapse

Attributes inherited from KalturaProvisionJobData

#backup_encoder_ip, #backup_stream_id, #encoder_ip, #encoder_password, #encoder_username, #end_date, #media_type, #primary_broadcasting_url, #return_val, #rtmp, #secondary_broadcasting_url, #stream_id, #stream_name

Attributes inherited from KalturaObjectBase

#object_type, #related_objects

Instance Method Summary collapse

Methods inherited from KalturaObjectBase

#camelcase, #to_b, #to_params

Instance Attribute Details

#passwordObject

Returns the value of attribute password.



35
36
37
# File 'lib/kaltura_plugins/kaltura_velocix_client_plugin.rb', line 35

def password
  @password
end

#provisioning_paramsObject

Returns the value of attribute provisioning_params.



33
34
35
# File 'lib/kaltura_plugins/kaltura_velocix_client_plugin.rb', line 33

def provisioning_params
  @provisioning_params
end

#user_nameObject

Returns the value of attribute user_name.



34
35
36
# File 'lib/kaltura_plugins/kaltura_velocix_client_plugin.rb', line 34

def user_name
  @user_name
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



38
39
40
41
42
43
44
45
46
47
48
49
# File 'lib/kaltura_plugins/kaltura_velocix_client_plugin.rb', line 38

def from_xml(xml_element)
	super
	if xml_element.elements['provisioningParams'] != nil
		self.provisioning_params = KalturaClientBase.object_from_xml(xml_element.elements['provisioningParams'], 'KalturaKeyValue')
	end
	if xml_element.elements['userName'] != nil
		self.user_name = xml_element.elements['userName'].text
	end
	if xml_element.elements['password'] != nil
		self.password = xml_element.elements['password'].text
	end
end