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.



15620
15621
15622
# File 'lib/kaltura_types.rb', line 15620

def domain_name
  @domain_name
end

#dvr_enabledObject

Returns the value of attribute dvr_enabled.



15621
15622
15623
# File 'lib/kaltura_types.rb', line 15621

def dvr_enabled
  @dvr_enabled
end

#dvr_windowObject

Returns the value of attribute dvr_window.



15622
15623
15624
# File 'lib/kaltura_types.rb', line 15622

def dvr_window
  @dvr_window
end

#notification_emailObject

Returns the value of attribute notification_email.



15626
15627
15628
# File 'lib/kaltura_types.rb', line 15626

def notification_email
  @notification_email
end

#primary_contactObject

Returns the value of attribute primary_contact.



15623
15624
15625
# File 'lib/kaltura_types.rb', line 15623

def primary_contact
  @primary_contact
end

#secondary_contactObject

Returns the value of attribute secondary_contact.



15624
15625
15626
# File 'lib/kaltura_types.rb', line 15624

def secondary_contact
  @secondary_contact
end

#stream_idObject

Returns the value of attribute stream_id.



15617
15618
15619
# File 'lib/kaltura_types.rb', line 15617

def stream_id
  @stream_id
end

#stream_typeObject

Returns the value of attribute stream_type.



15625
15626
15627
# File 'lib/kaltura_types.rb', line 15625

def stream_type
  @stream_type
end

#system_passwordObject

Returns the value of attribute system_password.



15619
15620
15621
# File 'lib/kaltura_types.rb', line 15619

def system_password
  @system_password
end

#system_user_nameObject

Returns the value of attribute system_user_name.



15618
15619
15620
# File 'lib/kaltura_types.rb', line 15618

def system_user_name
  @system_user_name
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



15638
15639
15640
15641
15642
15643
15644
15645
15646
15647
15648
15649
15650
15651
15652
15653
15654
15655
15656
15657
15658
15659
15660
15661
15662
15663
15664
15665
15666
15667
15668
15669
15670
# File 'lib/kaltura_types.rb', line 15638

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