mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
22 lines
552 B
Ruby
22 lines
552 B
Ruby
module Fog
|
|
module Parsers
|
|
module AWS
|
|
module ElasticBeanstalk
|
|
|
|
require 'fog/aws/parsers/beanstalk/parser'
|
|
class RetrieveEnvironmentInfo < Fog::Parsers::AWS::ElasticBeanstalk::BaseParser
|
|
|
|
def initialize
|
|
super("RetrieveEnvironmentInfoResult")
|
|
tag 'EnvironmentInfo', :object, :list
|
|
tag 'Ec2InstanceId', :string
|
|
tag 'InfoType', :string
|
|
tag 'Message', :string
|
|
tag 'SampleTimestamp', :datetime
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|