mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
26 lines
750 B
Ruby
26 lines
750 B
Ruby
module Fog
|
|
module Parsers
|
|
module AWS
|
|
module ElasticBeanstalk
|
|
|
|
require 'fog/aws/parsers/beanstalk/parser'
|
|
class DescribeEnvironmentResources < Fog::Parsers::AWS::ElasticBeanstalk::BaseParser
|
|
|
|
def initialize
|
|
super("DescribeEnvironmentResourcesResult")
|
|
tag 'EnvironmentResources', :object
|
|
tag 'AutoScalingGroups', :object, :list
|
|
tag 'Name', :string
|
|
tag 'EnvironmentName', :string
|
|
tag 'Instances', :object, :list
|
|
tag 'Id', :string
|
|
tag 'LaunchConfigurations', :object, :list
|
|
tag 'LoadBalancers', :object, :list
|
|
tag 'Triggers', :object, :list
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|