Sha256: 433d94f404255150bbf06d8d3b2e67d7734235d9f71558184d6b85ed7502c7f3
Contents?: true
Size: 930 Bytes
Versions: 83
Compression:
Stored size: 930 Bytes
Contents
module Fog module Parsers module AWS module ElasticBeanstalk require 'fog/aws/parsers/beanstalk/parser' class DescribeConfigurationOptions < Fog::Parsers::AWS::ElasticBeanstalk::BaseParser def initialize super("DescribeConfigurationOptionsResult") tag 'SolutionStackName', :string tag 'Options', :object, :list tag 'ChangeSeverity', :string tag 'DefaultValue', :string tag 'MaxLength', :integer tag 'MaxValue', :integer tag 'MinValue', :integer tag 'Name', :string tag 'Namespace', :string tag 'Regex', :object tag 'Label', :string tag 'Pattern', :string tag 'UserDefined', :boolean tag 'ValueOptions', :string, :list tag 'ValueType', :string end end end end end end
Version data entries
83 entries across 83 versions & 13 rubygems