Class: PlatformAPI::Region
- Inherits:
-
Object
- Object
- PlatformAPI::Region
- Defined in:
- lib/platform-api/client.rb
Overview
A region represents a geographic location in which your application may run.
Instance Method Summary collapse
-
#info(region_id_or_region_name) ⇒ Object
Info for existing region.
-
#initialize(client) ⇒ Region
constructor
A new instance of Region.
-
#list ⇒ Object
List existing regions.
Constructor Details
#initialize(client) ⇒ Region
Returns a new instance of Region.
2064 2065 2066 |
# File 'lib/platform-api/client.rb', line 2064 def initialize(client) @client = client end |
Instance Method Details
#info(region_id_or_region_name) ⇒ Object
Info for existing region.
2071 2072 2073 |
# File 'lib/platform-api/client.rb', line 2071 def info(region_id_or_region_name) @client.region.info(region_id_or_region_name) end |
#list ⇒ Object
List existing regions.
2076 2077 2078 |
# File 'lib/platform-api/client.rb', line 2076 def list() @client.region.list() end |