class DLDInternet::AWS::EC2::Instance_Types::Get

noinspection RubyParenthesesAfterMethodCallInspection

Public Instance Methods

load(path) click to toggle source
# File lib/dldinternet/aws/ec2/instance_types/get.rb, line 21
def load(path)
  parse_options
  puts 'load instance types' if options[:verbose]

  it = load_ec2_instance_types(path)
  ap it
end
save(path) click to toggle source
# File lib/dldinternet/aws/ec2/instance_types/get.rb, line 30
def save(path)
  parse_options
  puts 'save instance types' if options[:verbose]

  it = get_ec2_instance_types()
  save_ec2_instance_types(path, it)
end