mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
29 lines
846 B
Ruby
29 lines
846 B
Ruby
module Fog
|
|
module Parsers
|
|
module AWS
|
|
module ElasticBeanstalk
|
|
|
|
require 'fog/aws/parsers/beanstalk/parser'
|
|
class UpdateConfigurationTemplate < Fog::Parsers::AWS::ElasticBeanstalk::BaseParser
|
|
|
|
def initialize
|
|
super("UpdateConfigurationTemplateResult")
|
|
tag 'ApplicationName', :string
|
|
tag 'DateCreated', :datetime
|
|
tag 'DateUpdated', :datetime
|
|
tag 'DeploymentStatus', :string
|
|
tag 'Description', :string
|
|
tag 'EnvironmentName', :string
|
|
tag 'OptionSettings', :object, :list
|
|
tag 'Namespace', :string
|
|
tag 'OptionName', :string
|
|
tag 'Value', :string
|
|
tag 'SolutionStackName', :string
|
|
tag 'TemplateName', :string
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|