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.



14181
14182
14183
# File 'lib/kaltura_types.rb', line 14181

def backup_encoder_ip
  @backup_encoder_ip
end

#backup_stream_idObject

Returns the value of attribute backup_stream_id.



14178
14179
14180
# File 'lib/kaltura_types.rb', line 14178

def backup_stream_id
  @backup_stream_id
end

#encoder_ipObject

Returns the value of attribute encoder_ip.



14180
14181
14182
# File 'lib/kaltura_types.rb', line 14180

def encoder_ip
  @encoder_ip
end

#encoder_passwordObject

Returns the value of attribute encoder_password.



14182
14183
14184
# File 'lib/kaltura_types.rb', line 14182

def encoder_password
  @encoder_password
end

#encoder_usernameObject

Returns the value of attribute encoder_username.



14183
14184
14185
# File 'lib/kaltura_types.rb', line 14183

def encoder_username
  @encoder_username
end

#end_dateObject

Returns the value of attribute end_date.



14184
14185
14186
# File 'lib/kaltura_types.rb', line 14184

def end_date
  @end_date
end

#media_typeObject

Returns the value of attribute media_type.



14186
14187
14188
# File 'lib/kaltura_types.rb', line 14186

def media_type
  @media_type
end

#primary_broadcasting_urlObject

Returns the value of attribute primary_broadcasting_url.



14187
14188
14189
# File 'lib/kaltura_types.rb', line 14187

def primary_broadcasting_url
  @primary_broadcasting_url
end

#return_valObject

Returns the value of attribute return_val.



14185
14186
14187
# File 'lib/kaltura_types.rb', line 14185

def return_val
  @return_val
end

#rtmpObject

Returns the value of attribute rtmp.



14179
14180
14181
# File 'lib/kaltura_types.rb', line 14179

def rtmp
  @rtmp
end

#secondary_broadcasting_urlObject

Returns the value of attribute secondary_broadcasting_url.



14188
14189
14190
# File 'lib/kaltura_types.rb', line 14188

def secondary_broadcasting_url
  @secondary_broadcasting_url
end

#stream_idObject

Returns the value of attribute stream_id.



14177
14178
14179
# File 'lib/kaltura_types.rb', line 14177

def stream_id
  @stream_id
end

#stream_nameObject

Returns the value of attribute stream_name.



14189
14190
14191
# File 'lib/kaltura_types.rb', line 14189

def stream_name
  @stream_name
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



14198
14199
14200
14201
14202
14203
14204
14205
14206
14207
14208
14209
14210
14211
14212
14213
14214
14215
14216
14217
14218
14219
14220
14221
14222
14223
14224
14225
14226
14227
14228
14229
14230
14231
14232
14233
14234
14235
14236
14237
14238
14239
# File 'lib/kaltura_types.rb', line 14198

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