Class: Kaltura::KalturaProvisionJobData

Inherits:
KalturaJobData show all
Defined in:
lib/kaltura_types.rb

Instance Attribute Summary collapse

Attributes inherited from KalturaObjectBase

#object_type, #related_objects

Instance Method Summary collapse

Methods inherited from KalturaObjectBase

#camelcase, #to_b, #to_params

Instance Attribute Details

#backup_encoder_ipObject

Returns the value of attribute backup_encoder_ip.



14636
14637
14638
# File 'lib/kaltura_types.rb', line 14636

def backup_encoder_ip
  @backup_encoder_ip
end

#backup_stream_idObject

Returns the value of attribute backup_stream_id.



14633
14634
14635
# File 'lib/kaltura_types.rb', line 14633

def backup_stream_id
  @backup_stream_id
end

#encoder_ipObject

Returns the value of attribute encoder_ip.



14635
14636
14637
# File 'lib/kaltura_types.rb', line 14635

def encoder_ip
  @encoder_ip
end

#encoder_passwordObject

Returns the value of attribute encoder_password.



14637
14638
14639
# File 'lib/kaltura_types.rb', line 14637

def encoder_password
  @encoder_password
end

#encoder_usernameObject

Returns the value of attribute encoder_username.



14638
14639
14640
# File 'lib/kaltura_types.rb', line 14638

def encoder_username
  @encoder_username
end

#end_dateObject

Returns the value of attribute end_date.



14639
14640
14641
# File 'lib/kaltura_types.rb', line 14639

def end_date
  @end_date
end

#media_typeObject

Returns the value of attribute media_type.



14641
14642
14643
# File 'lib/kaltura_types.rb', line 14641

def media_type
  @media_type
end

#primary_broadcasting_urlObject

Returns the value of attribute primary_broadcasting_url.



14642
14643
14644
# File 'lib/kaltura_types.rb', line 14642

def primary_broadcasting_url
  @primary_broadcasting_url
end

#return_valObject

Returns the value of attribute return_val.



14640
14641
14642
# File 'lib/kaltura_types.rb', line 14640

def return_val
  @return_val
end

#rtmpObject

Returns the value of attribute rtmp.



14634
14635
14636
# File 'lib/kaltura_types.rb', line 14634

def rtmp
  @rtmp
end

#secondary_broadcasting_urlObject

Returns the value of attribute secondary_broadcasting_url.



14643
14644
14645
# File 'lib/kaltura_types.rb', line 14643

def secondary_broadcasting_url
  @secondary_broadcasting_url
end

#stream_idObject

Returns the value of attribute stream_id.



14632
14633
14634
# File 'lib/kaltura_types.rb', line 14632

def stream_id
  @stream_id
end

#stream_nameObject

Returns the value of attribute stream_name.



14644
14645
14646
# File 'lib/kaltura_types.rb', line 14644

def stream_name
  @stream_name
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



14653
14654
14655
14656
14657
14658
14659
14660
14661
14662
14663
14664
14665
14666
14667
14668
14669
14670
14671
14672
14673
14674
14675
14676
14677
14678
14679
14680
14681
14682
14683
14684
14685
14686
14687
14688
14689
14690
14691
14692
14693
14694
# File 'lib/kaltura_types.rb', line 14653

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