Class: Kaltura::KalturaAkamaiUniversalProvisionJobData
- Inherits:
-
KalturaProvisionJobData
- Object
- KalturaObjectBase
- KalturaJobData
- KalturaProvisionJobData
- Kaltura::KalturaAkamaiUniversalProvisionJobData
- Defined in:
- lib/kaltura_types.rb
Instance Attribute Summary collapse
-
#domain_name ⇒ Object
Returns the value of attribute domain_name.
-
#dvr_enabled ⇒ Object
Returns the value of attribute dvr_enabled.
-
#dvr_window ⇒ Object
Returns the value of attribute dvr_window.
-
#notification_email ⇒ Object
Returns the value of attribute notification_email.
-
#primary_contact ⇒ Object
Returns the value of attribute primary_contact.
-
#secondary_contact ⇒ Object
Returns the value of attribute secondary_contact.
-
#stream_id ⇒ Object
Returns the value of attribute stream_id.
-
#stream_type ⇒ Object
Returns the value of attribute stream_type.
-
#system_password ⇒ Object
Returns the value of attribute system_password.
-
#system_user_name ⇒ Object
Returns the value of attribute system_user_name.
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
Instance Attribute Details
#domain_name ⇒ Object
Returns the value of attribute domain_name.
15600 15601 15602 |
# File 'lib/kaltura_types.rb', line 15600 def domain_name @domain_name end |
#dvr_enabled ⇒ Object
Returns the value of attribute dvr_enabled.
15601 15602 15603 |
# File 'lib/kaltura_types.rb', line 15601 def dvr_enabled @dvr_enabled end |
#dvr_window ⇒ Object
Returns the value of attribute dvr_window.
15602 15603 15604 |
# File 'lib/kaltura_types.rb', line 15602 def dvr_window @dvr_window end |
#notification_email ⇒ Object
Returns the value of attribute notification_email.
15606 15607 15608 |
# File 'lib/kaltura_types.rb', line 15606 def notification_email @notification_email end |
#primary_contact ⇒ Object
Returns the value of attribute primary_contact.
15603 15604 15605 |
# File 'lib/kaltura_types.rb', line 15603 def primary_contact @primary_contact end |
#secondary_contact ⇒ Object
Returns the value of attribute secondary_contact.
15604 15605 15606 |
# File 'lib/kaltura_types.rb', line 15604 def secondary_contact @secondary_contact end |
#stream_id ⇒ Object
Returns the value of attribute stream_id.
15597 15598 15599 |
# File 'lib/kaltura_types.rb', line 15597 def stream_id @stream_id end |
#stream_type ⇒ Object
Returns the value of attribute stream_type.
15605 15606 15607 |
# File 'lib/kaltura_types.rb', line 15605 def stream_type @stream_type end |
#system_password ⇒ Object
Returns the value of attribute system_password.
15599 15600 15601 |
# File 'lib/kaltura_types.rb', line 15599 def system_password @system_password end |
#system_user_name ⇒ Object
Returns the value of attribute system_user_name.
15598 15599 15600 |
# File 'lib/kaltura_types.rb', line 15598 def system_user_name @system_user_name end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
15618 15619 15620 15621 15622 15623 15624 15625 15626 15627 15628 15629 15630 15631 15632 15633 15634 15635 15636 15637 15638 15639 15640 15641 15642 15643 15644 15645 15646 15647 15648 15649 15650 |
# File 'lib/kaltura_types.rb', line 15618 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 |