Class: Kaltura::KalturaProvisionJobData
- Inherits:
-
KalturaJobData
- Object
- KalturaObjectBase
- KalturaJobData
- Kaltura::KalturaProvisionJobData
- Defined in:
- lib/kaltura_types.rb
Direct Known Subclasses
KalturaAkamaiProvisionJobData, KalturaAkamaiUniversalProvisionJobData, KalturaVelocixProvisionJobData
Instance Attribute Summary collapse
-
#backup_encoder_ip ⇒ Object
Returns the value of attribute backup_encoder_ip.
-
#backup_stream_id ⇒ Object
Returns the value of attribute backup_stream_id.
-
#encoder_ip ⇒ Object
Returns the value of attribute encoder_ip.
-
#encoder_password ⇒ Object
Returns the value of attribute encoder_password.
-
#encoder_username ⇒ Object
Returns the value of attribute encoder_username.
-
#end_date ⇒ Object
Returns the value of attribute end_date.
-
#media_type ⇒ Object
Returns the value of attribute media_type.
-
#primary_broadcasting_url ⇒ Object
Returns the value of attribute primary_broadcasting_url.
-
#return_val ⇒ Object
Returns the value of attribute return_val.
-
#rtmp ⇒ Object
Returns the value of attribute rtmp.
-
#secondary_broadcasting_url ⇒ Object
Returns the value of attribute secondary_broadcasting_url.
-
#stream_id ⇒ Object
Returns the value of attribute stream_id.
-
#stream_name ⇒ Object
Returns the value of attribute stream_name.
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#backup_encoder_ip ⇒ Object
Returns the value of attribute backup_encoder_ip.
14666 14667 14668 |
# File 'lib/kaltura_types.rb', line 14666 def backup_encoder_ip @backup_encoder_ip end |
#backup_stream_id ⇒ Object
Returns the value of attribute backup_stream_id.
14663 14664 14665 |
# File 'lib/kaltura_types.rb', line 14663 def backup_stream_id @backup_stream_id end |
#encoder_ip ⇒ Object
Returns the value of attribute encoder_ip.
14665 14666 14667 |
# File 'lib/kaltura_types.rb', line 14665 def encoder_ip @encoder_ip end |
#encoder_password ⇒ Object
Returns the value of attribute encoder_password.
14667 14668 14669 |
# File 'lib/kaltura_types.rb', line 14667 def encoder_password @encoder_password end |
#encoder_username ⇒ Object
Returns the value of attribute encoder_username.
14668 14669 14670 |
# File 'lib/kaltura_types.rb', line 14668 def encoder_username @encoder_username end |
#end_date ⇒ Object
Returns the value of attribute end_date.
14669 14670 14671 |
# File 'lib/kaltura_types.rb', line 14669 def end_date @end_date end |
#media_type ⇒ Object
Returns the value of attribute media_type.
14671 14672 14673 |
# File 'lib/kaltura_types.rb', line 14671 def media_type @media_type end |
#primary_broadcasting_url ⇒ Object
Returns the value of attribute primary_broadcasting_url.
14672 14673 14674 |
# File 'lib/kaltura_types.rb', line 14672 def primary_broadcasting_url @primary_broadcasting_url end |
#return_val ⇒ Object
Returns the value of attribute return_val.
14670 14671 14672 |
# File 'lib/kaltura_types.rb', line 14670 def return_val @return_val end |
#rtmp ⇒ Object
Returns the value of attribute rtmp.
14664 14665 14666 |
# File 'lib/kaltura_types.rb', line 14664 def rtmp @rtmp end |
#secondary_broadcasting_url ⇒ Object
Returns the value of attribute secondary_broadcasting_url.
14673 14674 14675 |
# File 'lib/kaltura_types.rb', line 14673 def secondary_broadcasting_url @secondary_broadcasting_url end |
#stream_id ⇒ Object
Returns the value of attribute stream_id.
14662 14663 14664 |
# File 'lib/kaltura_types.rb', line 14662 def stream_id @stream_id end |
#stream_name ⇒ Object
Returns the value of attribute stream_name.
14674 14675 14676 |
# File 'lib/kaltura_types.rb', line 14674 def stream_name @stream_name end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
14683 14684 14685 14686 14687 14688 14689 14690 14691 14692 14693 14694 14695 14696 14697 14698 14699 14700 14701 14702 14703 14704 14705 14706 14707 14708 14709 14710 14711 14712 14713 14714 14715 14716 14717 14718 14719 14720 14721 14722 14723 14724 |
# File 'lib/kaltura_types.rb', line 14683 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['backupStreamID'] != nil self.backup_stream_id = xml_element.elements['backupStreamID'].text end if xml_element.elements['rtmp'] != nil self.rtmp = xml_element.elements['rtmp'].text end if xml_element.elements['encoderIP'] != nil self.encoder_ip = xml_element.elements['encoderIP'].text end if xml_element.elements['backupEncoderIP'] != nil self.backup_encoder_ip = xml_element.elements['backupEncoderIP'].text end if xml_element.elements['encoderPassword'] != nil self.encoder_password = xml_element.elements['encoderPassword'].text end if xml_element.elements['encoderUsername'] != nil self.encoder_username = xml_element.elements['encoderUsername'].text end if xml_element.elements['endDate'] != nil self.end_date = xml_element.elements['endDate'].text end if xml_element.elements['returnVal'] != nil self.return_val = xml_element.elements['returnVal'].text end if xml_element.elements['mediaType'] != nil self.media_type = xml_element.elements['mediaType'].text end if xml_element.elements['primaryBroadcastingUrl'] != nil self.primary_broadcasting_url = xml_element.elements['primaryBroadcastingUrl'].text end if xml_element.elements['secondaryBroadcastingUrl'] != nil self.secondary_broadcasting_url = xml_element.elements['secondaryBroadcastingUrl'].text end if xml_element.elements['streamName'] != nil self.stream_name = xml_element.elements['streamName'].text end end |