Class: PlatformAPI::SpaceTopology
- Inherits:
-
Object
- Object
- PlatformAPI::SpaceTopology
- Defined in:
- lib/platform-api/client.rb
Overview
Space Topology provides you with a mechanism for viewing all the running dynos, formations and applications for a space. This is the same data thats used to power our DNS Service Discovery.
Instance Method Summary collapse
-
#initialize(client) ⇒ SpaceTopology
constructor
A new instance of SpaceTopology.
-
#topology(space_id_or_space_name) ⇒ Object
Current space topology.
Constructor Details
#initialize(client) ⇒ SpaceTopology
Returns a new instance of SpaceTopology.
2975 2976 2977 |
# File 'lib/platform-api/client.rb', line 2975 def initialize(client) @client = client end |
Instance Method Details
#topology(space_id_or_space_name) ⇒ Object
Current space topology
2982 2983 2984 |
# File 'lib/platform-api/client.rb', line 2982 def topology(space_id_or_space_name) @client.space_topology.topology(space_id_or_space_name) end |