class ZAWS::External::AWSCLI::Commands::ELB::DescribeLoadBalancers

Public Class Methods

new(shellout=nil, awscli=nil) click to toggle source
# File lib/zaws/external/awscli/commands/elb/describe_load_balancers.rb, line 7
def initialize(shellout=nil, awscli=nil)
  @shellout=shellout
  @awscli=awscli
  @aws=nil
  self
end

Public Instance Methods

aws() click to toggle source
# File lib/zaws/external/awscli/commands/elb/describe_load_balancers.rb, line 19
def aws
  @aws ||= ZAWS::External::AWSCLI::Commands::AWS.new(self)
  @aws
end
get_command() click to toggle source
# File lib/zaws/external/awscli/commands/elb/describe_load_balancers.rb, line 14
def get_command
  command = "elb describe-load-balancers"
  return command
end