Class: PlatformAPI::InboundRuleset

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

Overview

An inbound-ruleset is a collection of rules that specify what hosts can or cannot connect to an application.

Instance Method Summary collapse

Constructor Details

#initialize(client) ⇒ InboundRuleset

Returns a new instance of InboundRuleset.



1969
1970
1971
# File 'lib/platform-api/client.rb', line 1969

def initialize(client)
  @client = client
end

Instance Method Details

#create(space_id_or_space_name, body = {}) ⇒ Object

Create a new inbound ruleset

Parameters:

  • space_id_or_space_name:

    unique identifier of space or unique name of space

  • body:

    the object to pass as the request payload



1999
2000
2001
# File 'lib/platform-api/client.rb', line 1999

def create(space_id_or_space_name, body = {})
  @client.inbound_ruleset.create(space_id_or_space_name, body)
end

#current(space_id_or_space_name) ⇒ Object

Current inbound ruleset for a space

Parameters:

  • space_id_or_space_name:

    unique identifier of space or unique name of space



1976
1977
1978
# File 'lib/platform-api/client.rb', line 1976

def current(space_id_or_space_name)
  @client.inbound_ruleset.current(space_id_or_space_name)
end

#info(space_id_or_space_name, inbound_ruleset_id) ⇒ Object

Info on an existing Inbound Ruleset

Parameters:

  • space_id_or_space_name:

    unique identifier of space or unique name of space

  • inbound_ruleset_id:

    unique identifier of an inbound-ruleset



1984
1985
1986
# File 'lib/platform-api/client.rb', line 1984

def info(space_id_or_space_name, inbound_ruleset_id)
  @client.inbound_ruleset.info(space_id_or_space_name, inbound_ruleset_id)
end

#list(space_id_or_space_name) ⇒ Object

List all inbound rulesets for a space

Parameters:

  • space_id_or_space_name:

    unique identifier of space or unique name of space



1991
1992
1993
# File 'lib/platform-api/client.rb', line 1991

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