mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
22 lines
546 B
Ruby
22 lines
546 B
Ruby
module Fog
|
|
module Parsers
|
|
module AWS
|
|
module ElasticBeanstalk
|
|
|
|
require 'fog/aws/parsers/beanstalk/parser'
|
|
class ValidateConfigurationSettings < Fog::Parsers::AWS::ElasticBeanstalk::BaseParser
|
|
|
|
def initialize
|
|
super("ValidateConfigurationSettingsResult")
|
|
tag 'Messages', :object, :list
|
|
tag 'Message', :string
|
|
tag 'Namespace', :string
|
|
tag 'OptionName', :string
|
|
tag 'Severity', :string
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|