Class: Kaltura::KalturaServerNode

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

Direct Known Subclasses

KalturaDeliveryServerNode

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

#created_atObject

Returns the value of attribute created_at.



8764
8765
8766
# File 'lib/kaltura_types.rb', line 8764

def created_at
  @created_at
end

#dcObject

DC where the serverNode is located



8779
8780
8781
# File 'lib/kaltura_types.rb', line 8779

def dc
  @dc
end

#descriptionObject

Returns the value of attribute description.



8771
8772
8773
# File 'lib/kaltura_types.rb', line 8771

def description
  @description
end

#environmentObject

Environment



8783
8784
8785
# File 'lib/kaltura_types.rb', line 8783

def environment
  @environment
end

#heartbeat_timeObject

Returns the value of attribute heartbeat_time.



8766
8767
8768
# File 'lib/kaltura_types.rb', line 8766

def heartbeat_time
  @heartbeat_time
end

#host_nameObject

serverNode hostName



8773
8774
8775
# File 'lib/kaltura_types.rb', line 8773

def host_name
  @host_name
end

#idObject

Returns the value of attribute id.



8762
8763
8764
# File 'lib/kaltura_types.rb', line 8762

def id
  @id
end

#nameObject

serverNode name



8768
8769
8770
# File 'lib/kaltura_types.rb', line 8768

def name
  @name
end

#parent_idObject

Id of the parent serverNode



8781
8782
8783
# File 'lib/kaltura_types.rb', line 8781

def parent_id
  @parent_id
end

#partner_idObject

Returns the value of attribute partner_id.



8763
8764
8765
# File 'lib/kaltura_types.rb', line 8763

def partner_id
  @partner_id
end

#statusObject

Returns the value of attribute status.



8774
8775
8776
# File 'lib/kaltura_types.rb', line 8774

def status
  @status
end

#system_nameObject

serverNode uniqe system name



8770
8771
8772
# File 'lib/kaltura_types.rb', line 8770

def system_name
  @system_name
end

#tagsObject

serverNode tags



8777
8778
8779
# File 'lib/kaltura_types.rb', line 8777

def tags
  @tags
end

#typeObject

Returns the value of attribute type.



8775
8776
8777
# File 'lib/kaltura_types.rb', line 8775

def type
  @type
end

#updated_atObject

Returns the value of attribute updated_at.



8765
8766
8767
# File 'lib/kaltura_types.rb', line 8765

def updated_at
  @updated_at
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



8807
8808
8809
8810
8811
8812
8813
8814
8815
8816
8817
8818
8819
8820
8821
8822
8823
8824
8825
8826
8827
8828
8829
8830
8831
8832
8833
8834
8835
8836
8837
8838
8839
8840
8841
8842
8843
8844
8845
8846
8847
8848
8849
8850
8851
8852
8853
8854
# File 'lib/kaltura_types.rb', line 8807

def from_xml(xml_element)
  super
  if xml_element.elements['id'] != nil
    self.id = xml_element.elements['id'].text
  end
  if xml_element.elements['partnerId'] != nil
    self.partner_id = xml_element.elements['partnerId'].text
  end
  if xml_element.elements['createdAt'] != nil
    self.created_at = xml_element.elements['createdAt'].text
  end
  if xml_element.elements['updatedAt'] != nil
    self.updated_at = xml_element.elements['updatedAt'].text
  end
  if xml_element.elements['heartbeatTime'] != nil
    self.heartbeat_time = xml_element.elements['heartbeatTime'].text
  end
  if xml_element.elements['name'] != nil
    self.name = xml_element.elements['name'].text
  end
  if xml_element.elements['systemName'] != nil
    self.system_name = xml_element.elements['systemName'].text
  end
  if xml_element.elements['description'] != nil
    self.description = xml_element.elements['description'].text
  end
  if xml_element.elements['hostName'] != nil
    self.host_name = xml_element.elements['hostName'].text
  end
  if xml_element.elements['status'] != nil
    self.status = xml_element.elements['status'].text
  end
  if xml_element.elements['type'] != nil
    self.type = xml_element.elements['type'].text
  end
  if xml_element.elements['tags'] != nil
    self.tags = xml_element.elements['tags'].text
  end
  if xml_element.elements['dc'] != nil
    self.dc = xml_element.elements['dc'].text
  end
  if xml_element.elements['parentId'] != nil
    self.parent_id = xml_element.elements['parentId'].text
  end
  if xml_element.elements['environment'] != nil
    self.environment = xml_element.elements['environment'].text
  end
end