class PlatformAPI::PeeringInfo
[Peering Info](devcenter.heroku.com/articles/private-space-peering) gives you the information necessary to peer an AWS VPC to a Private Space
.
Public Class Methods
new(client)
click to toggle source
# File lib/platform-api/client.rb, line 2331 def initialize(client) @client = client end
Public Instance Methods
info(space_id_or_space_name)
click to toggle source
Provides the necessary information to establish an AWS VPC Peering
with your private space.
@param space_id_or_space_name: unique identifier of space or unique name of space
# File lib/platform-api/client.rb, line 2338 def info(space_id_or_space_name) @client.peering_info.info(space_id_or_space_name) end