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.



13929
13930
13931
# File 'lib/kaltura_types.rb', line 13929

def backup_encoder_ip
  @backup_encoder_ip
end

#backup_stream_idObject

Returns the value of attribute backup_stream_id.



13926
13927
13928
# File 'lib/kaltura_types.rb', line 13926

def backup_stream_id
  @backup_stream_id
end

#encoder_ipObject

Returns the value of attribute encoder_ip.



13928
13929
13930
# File 'lib/kaltura_types.rb', line 13928

def encoder_ip
  @encoder_ip
end

#encoder_passwordObject

Returns the value of attribute encoder_password.



13930
13931
13932
# File 'lib/kaltura_types.rb', line 13930

def encoder_password
  @encoder_password
end

#encoder_usernameObject

Returns the value of attribute encoder_username.



13931
13932
13933
# File 'lib/kaltura_types.rb', line 13931

def encoder_username
  @encoder_username
end

#end_dateObject

Returns the value of attribute end_date.



13932
13933
13934
# File 'lib/kaltura_types.rb', line 13932

def end_date
  @end_date
end

#media_typeObject

Returns the value of attribute media_type.



13934
13935
13936
# File 'lib/kaltura_types.rb', line 13934

def media_type
  @media_type
end

#primary_broadcasting_urlObject

Returns the value of attribute primary_broadcasting_url.



13935
13936
13937
# File 'lib/kaltura_types.rb', line 13935

def primary_broadcasting_url
  @primary_broadcasting_url
end

#return_valObject

Returns the value of attribute return_val.



13933
13934
13935
# File 'lib/kaltura_types.rb', line 13933

def return_val
  @return_val
end

#rtmpObject

Returns the value of attribute rtmp.



13927
13928
13929
# File 'lib/kaltura_types.rb', line 13927

def rtmp
  @rtmp
end

#secondary_broadcasting_urlObject

Returns the value of attribute secondary_broadcasting_url.



13936
13937
13938
# File 'lib/kaltura_types.rb', line 13936

def secondary_broadcasting_url
  @secondary_broadcasting_url
end

#stream_idObject

Returns the value of attribute stream_id.



13925
13926
13927
# File 'lib/kaltura_types.rb', line 13925

def stream_id
  @stream_id
end

#stream_nameObject

Returns the value of attribute stream_name.



13937
13938
13939
# File 'lib/kaltura_types.rb', line 13937

def stream_name
  @stream_name
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



13946
13947
13948
13949
13950
13951
13952
13953
13954
13955
13956
13957
13958
13959
13960
13961
13962
13963
13964
13965
13966
13967
13968
13969
13970
13971
13972
13973
13974
13975
13976
13977
13978
13979
13980
13981
13982
13983
13984
13985
13986
13987
# File 'lib/kaltura_types.rb', line 13946

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