Class: Central::Cli::Stacks::TrustedSubnets::RemoveCommand

Inherits:
Clamp::Command
  • Object
show all
Includes:
Common
Defined in:
lib/central/cli/stacks/trusted_subnets/remove_command.rb

Instance Method Summary collapse

Methods included from Common

#access_token=, #add_master, #api_url, #api_url=, #clear_current_stack, #client, #current_master, #current_master=, #current_master_index, #current_stack, #current_stack=, #ensure_custom_ssl_ca, #require_api_url, #require_current_stack, #require_token, #reset_client, #save_settings, #settings, #settings_filename

Instance Method Details

#executeObject



8
9
10
11
12
13
14
15
16
17
18
# File 'lib/central/cli/stacks/trusted_subnets/remove_command.rb', line 8

def execute
  require_api_url
  token = require_token
  stack = client(token).get("stacks/#{name}")
  trusted_subnets = stack['trusted_subnets'] || []
  unless trusted_subnets.delete(subnet)
    abort("Stack does not have trusted subnet #{subnet}")
  end
  data = { trusted_subnets: trusted_subnets }
  client(token).put("stacks/#{name}", data)
end