Sha256: c8f6b8d5325e0ab193d9bf22c7fd1118c1745a1343c63edbef3746e14d4e2329

Contents?: true

Size: 916 Bytes

Versions: 1

Compression:

Stored size: 916 Bytes

Contents

module Fog
  module Parsers
    module AWS
      module ElasticBeanstalk

        require 'rackspace-fog/aws/parsers/beanstalk/parser'
        class DescribeConfigurationSettings < Fog::Parsers::AWS::ElasticBeanstalk::BaseParser

          def initialize
            super("DescribeConfigurationSettingsResult")
            tag 'ConfigurationSettings', :object, :list
            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

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
rackspace-fog-1.4.2 lib/rackspace-fog/aws/parsers/beanstalk/describe_configuration_settings.rb