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.



9575
9576
9577
# File 'lib/kaltura_types.rb', line 9575

def backup_encoder_ip
  @backup_encoder_ip
end

#backup_stream_idObject

Returns the value of attribute backup_stream_id.



9572
9573
9574
# File 'lib/kaltura_types.rb', line 9572

def backup_stream_id
  @backup_stream_id
end

#encoder_ipObject

Returns the value of attribute encoder_ip.



9574
9575
9576
# File 'lib/kaltura_types.rb', line 9574

def encoder_ip
  @encoder_ip
end

#encoder_passwordObject

Returns the value of attribute encoder_password.



9576
9577
9578
# File 'lib/kaltura_types.rb', line 9576

def encoder_password
  @encoder_password
end

#encoder_usernameObject

Returns the value of attribute encoder_username.



9577
9578
9579
# File 'lib/kaltura_types.rb', line 9577

def encoder_username
  @encoder_username
end

#end_dateObject

Returns the value of attribute end_date.



9578
9579
9580
# File 'lib/kaltura_types.rb', line 9578

def end_date
  @end_date
end

#media_typeObject

Returns the value of attribute media_type.



9580
9581
9582
# File 'lib/kaltura_types.rb', line 9580

def media_type
  @media_type
end

#primary_broadcasting_urlObject

Returns the value of attribute primary_broadcasting_url.



9581
9582
9583
# File 'lib/kaltura_types.rb', line 9581

def primary_broadcasting_url
  @primary_broadcasting_url
end

#return_valObject

Returns the value of attribute return_val.



9579
9580
9581
# File 'lib/kaltura_types.rb', line 9579

def return_val
  @return_val
end

#rtmpObject

Returns the value of attribute rtmp.



9573
9574
9575
# File 'lib/kaltura_types.rb', line 9573

def rtmp
  @rtmp
end

#secondary_broadcasting_urlObject

Returns the value of attribute secondary_broadcasting_url.



9582
9583
9584
# File 'lib/kaltura_types.rb', line 9582

def secondary_broadcasting_url
  @secondary_broadcasting_url
end

#stream_idObject

Returns the value of attribute stream_id.



9571
9572
9573
# File 'lib/kaltura_types.rb', line 9571

def stream_id
  @stream_id
end

#stream_nameObject

Returns the value of attribute stream_name.



9583
9584
9585
# File 'lib/kaltura_types.rb', line 9583

def stream_name
  @stream_name
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



9592
9593
9594
9595
9596
9597
9598
9599
9600
9601
9602
9603
9604
9605
9606
9607
# File 'lib/kaltura_types.rb', line 9592

def from_xml(xml_element)
	super
	self.stream_id = xml_element.elements['streamID'].text
	self.backup_stream_id = xml_element.elements['backupStreamID'].text
	self.rtmp = xml_element.elements['rtmp'].text
	self.encoder_ip = xml_element.elements['encoderIP'].text
	self.backup_encoder_ip = xml_element.elements['backupEncoderIP'].text
	self.encoder_password = xml_element.elements['encoderPassword'].text
	self.encoder_username = xml_element.elements['encoderUsername'].text
	self.end_date = xml_element.elements['endDate'].text
	self.return_val = xml_element.elements['returnVal'].text
	self.media_type = xml_element.elements['mediaType'].text
	self.primary_broadcasting_url = xml_element.elements['primaryBroadcastingUrl'].text
	self.secondary_broadcasting_url = xml_element.elements['secondaryBroadcastingUrl'].text
	self.stream_name = xml_element.elements['streamName'].text
end