Class: PlatformAPI::Peering

Inherits:
Object
  • Object
show all
Defined in:
lib/platform-api/client.rb

Overview

Peering provides a way to peer your Private Space VPC to another AWS VPC.

Instance Method Summary collapse

Constructor Details

#initialize(client) ⇒ Peering

Returns a new instance of Peering.



2321
2322
2323
# File 'lib/platform-api/client.rb', line 2321

def initialize(client)
  @client = client
end

Instance Method Details

#accept(space_id_or_space_name, peering_pcx_id) ⇒ Object

Accept a pending peering connection with a private space.

Parameters:

  • space_id_or_space_name:

    unique identifier of space or unique name of space

  • peering_pcx_id:

    The AWS VPC Peering Connection ID of the peering.



2336
2337
2338
# File 'lib/platform-api/client.rb', line 2336

def accept(space_id_or_space_name, peering_pcx_id)
  @client.peering.accept(space_id_or_space_name, peering_pcx_id)
end

#destroy(space_id_or_space_name, peering_pcx_id) ⇒ Object

Destroy an active peering connection with a private space.

Parameters:

  • space_id_or_space_name:

    unique identifier of space or unique name of space

  • peering_pcx_id:

    The AWS VPC Peering Connection ID of the peering.



2344
2345
2346
# File 'lib/platform-api/client.rb', line 2344

def destroy(space_id_or_space_name, peering_pcx_id)
  @client.peering.destroy(space_id_or_space_name, peering_pcx_id)
end

#info(space_id_or_space_name, peering_pcx_id) ⇒ Object

Fetch information for existing peering connection

Parameters:

  • space_id_or_space_name:

    unique identifier of space or unique name of space

  • peering_pcx_id:

    The AWS VPC Peering Connection ID of the peering.



2352
2353
2354
# File 'lib/platform-api/client.rb', line 2352

def info(space_id_or_space_name, peering_pcx_id)
  @client.peering.info(space_id_or_space_name, peering_pcx_id)
end

#list(space_id_or_space_name) ⇒ Object

List peering connections of a private space.

Parameters:

  • space_id_or_space_name:

    unique identifier of space or unique name of space



2328
2329
2330
# File 'lib/platform-api/client.rb', line 2328

def list(space_id_or_space_name)
  @client.peering.list(space_id_or_space_name)
end