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.



14585
14586
14587
# File 'lib/kaltura_types.rb', line 14585

def backup_encoder_ip
  @backup_encoder_ip
end

#backup_stream_idObject

Returns the value of attribute backup_stream_id.



14582
14583
14584
# File 'lib/kaltura_types.rb', line 14582

def backup_stream_id
  @backup_stream_id
end

#encoder_ipObject

Returns the value of attribute encoder_ip.



14584
14585
14586
# File 'lib/kaltura_types.rb', line 14584

def encoder_ip
  @encoder_ip
end

#encoder_passwordObject

Returns the value of attribute encoder_password.



14586
14587
14588
# File 'lib/kaltura_types.rb', line 14586

def encoder_password
  @encoder_password
end

#encoder_usernameObject

Returns the value of attribute encoder_username.



14587
14588
14589
# File 'lib/kaltura_types.rb', line 14587

def encoder_username
  @encoder_username
end

#end_dateObject

Returns the value of attribute end_date.



14588
14589
14590
# File 'lib/kaltura_types.rb', line 14588

def end_date
  @end_date
end

#media_typeObject

Returns the value of attribute media_type.



14590
14591
14592
# File 'lib/kaltura_types.rb', line 14590

def media_type
  @media_type
end

#primary_broadcasting_urlObject

Returns the value of attribute primary_broadcasting_url.



14591
14592
14593
# File 'lib/kaltura_types.rb', line 14591

def primary_broadcasting_url
  @primary_broadcasting_url
end

#return_valObject

Returns the value of attribute return_val.



14589
14590
14591
# File 'lib/kaltura_types.rb', line 14589

def return_val
  @return_val
end

#rtmpObject

Returns the value of attribute rtmp.



14583
14584
14585
# File 'lib/kaltura_types.rb', line 14583

def rtmp
  @rtmp
end

#secondary_broadcasting_urlObject

Returns the value of attribute secondary_broadcasting_url.



14592
14593
14594
# File 'lib/kaltura_types.rb', line 14592

def secondary_broadcasting_url
  @secondary_broadcasting_url
end

#stream_idObject

Returns the value of attribute stream_id.



14581
14582
14583
# File 'lib/kaltura_types.rb', line 14581

def stream_id
  @stream_id
end

#stream_nameObject

Returns the value of attribute stream_name.



14593
14594
14595
# File 'lib/kaltura_types.rb', line 14593

def stream_name
  @stream_name
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



14602
14603
14604
14605
14606
14607
14608
14609
14610
14611
14612
14613
14614
14615
14616
14617
14618
14619
14620
14621
14622
14623
14624
14625
14626
14627
14628
14629
14630
14631
14632
14633
14634
14635
14636
14637
14638
14639
14640
14641
14642
14643
# File 'lib/kaltura_types.rb', line 14602

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