Class: Kaltura::KalturaAkamaiUniversalProvisionJobData

Inherits:
KalturaProvisionJobData show all
Defined in:
lib/kaltura_types.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_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

#domain_nameObject

Returns the value of attribute domain_name.



10792
10793
10794
# File 'lib/kaltura_types.rb', line 10792

def domain_name
  @domain_name
end

#dvr_enabledObject

Returns the value of attribute dvr_enabled.



10793
10794
10795
# File 'lib/kaltura_types.rb', line 10793

def dvr_enabled
  @dvr_enabled
end

#dvr_windowObject

Returns the value of attribute dvr_window.



10794
10795
10796
# File 'lib/kaltura_types.rb', line 10794

def dvr_window
  @dvr_window
end

#notification_emailObject

Returns the value of attribute notification_email.



10798
10799
10800
# File 'lib/kaltura_types.rb', line 10798

def notification_email
  @notification_email
end

#primary_contactObject

Returns the value of attribute primary_contact.



10795
10796
10797
# File 'lib/kaltura_types.rb', line 10795

def primary_contact
  @primary_contact
end

#secondary_contactObject

Returns the value of attribute secondary_contact.



10796
10797
10798
# File 'lib/kaltura_types.rb', line 10796

def secondary_contact
  @secondary_contact
end

#stream_idObject

Returns the value of attribute stream_id.



10789
10790
10791
# File 'lib/kaltura_types.rb', line 10789

def stream_id
  @stream_id
end

#stream_typeObject

Returns the value of attribute stream_type.



10797
10798
10799
# File 'lib/kaltura_types.rb', line 10797

def stream_type
  @stream_type
end

#system_passwordObject

Returns the value of attribute system_password.



10791
10792
10793
# File 'lib/kaltura_types.rb', line 10791

def system_password
  @system_password
end

#system_user_nameObject

Returns the value of attribute system_user_name.



10790
10791
10792
# File 'lib/kaltura_types.rb', line 10790

def system_user_name
  @system_user_name
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



10810
10811
10812
10813
10814
10815
10816
10817
10818
10819
10820
10821
10822
# File 'lib/kaltura_types.rb', line 10810

def from_xml(xml_element)
	super
	self.stream_id = xml_element.elements['streamId'].text
	self.system_user_name = xml_element.elements['systemUserName'].text
	self.system_password = xml_element.elements['systemPassword'].text
	self.domain_name = xml_element.elements['domainName'].text
	self.dvr_enabled = xml_element.elements['dvrEnabled'].text
	self.dvr_window = xml_element.elements['dvrWindow'].text
	self.primary_contact = xml_element.elements['primaryContact'].text
	self.secondary_contact = xml_element.elements['secondaryContact'].text
	self.stream_type = xml_element.elements['streamType'].text
	self.notification_email = xml_element.elements['notificationEmail'].text
end