mirror of
https://github.com/fog/fog-aws.git
synced 2022-11-09 13:50:52 -05:00
d48d376e9c
* take the liberty of correcting Aws naming
34 lines
1.2 KiB
Ruby
34 lines
1.2 KiB
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 'Resources', :object, :list
|
|
tag 'Description', :string
|
|
tag 'LogicalResourceId', :string
|
|
tag 'PhysicalResourceId', :string
|
|
tag 'Type', :string
|
|
tag 'Properties', :object, :list
|
|
tag 'RuntimeSources', :object, :list
|
|
tag 'Parameter', :string
|
|
tag 'Versions', :object, :list
|
|
tag 'ApplicationName', :string
|
|
tag 'VersionLabel', :string
|
|
tag 'Triggers', :object, :list
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|