Class: Kaltura::KalturaAccessControlServeRemoteEdgeServerAction
- Inherits:
-
KalturaRuleAction
- Object
- KalturaObjectBase
- KalturaRuleAction
- Kaltura::KalturaAccessControlServeRemoteEdgeServerAction
- Defined in:
- lib/kaltura_types.rb
Instance Attribute Summary collapse
-
#edge_server_ids ⇒ Object
Comma separated list of edge servers playBack should be done from.
-
#seamless_fallback_enabled ⇒ Object
Returns the value of attribute seamless_fallback_enabled.
Attributes inherited from KalturaRuleAction
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#edge_server_ids ⇒ Object
Comma separated list of edge servers playBack should be done from
11002 11003 11004 |
# File 'lib/kaltura_types.rb', line 11002 def edge_server_ids @edge_server_ids end |
#seamless_fallback_enabled ⇒ Object
Returns the value of attribute seamless_fallback_enabled.
11003 11004 11005 |
# File 'lib/kaltura_types.rb', line 11003 def seamless_fallback_enabled @seamless_fallback_enabled end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
11009 11010 11011 11012 11013 11014 11015 11016 11017 |
# File 'lib/kaltura_types.rb', line 11009 def from_xml(xml_element) super if xml_element.elements['edgeServerIds'] != nil self.edge_server_ids = xml_element.elements['edgeServerIds'].text end if xml_element.elements['seamlessFallbackEnabled'] != nil self.seamless_fallback_enabled = xml_element.elements['seamlessFallbackEnabled'].text end end |