Sha256: 7eff00fd05f0cd4912dfb84e13c35406fb52d3a189f4bc04e0caafbc7bb0e41f
Contents?: true
Size: 1.19 KB
Versions: 1
Compression:
Stored size: 1.19 KB
Contents
module Fog module AWS class ElasticBeanstalk class Real require 'rackspace-fog/aws/parsers/beanstalk/describe_configuration_settings' # Returns a description of the settings for the specified configuration set, that is, either a configuration # template or the configuration set associated with a running environment. # # ==== Options # * ApplicationName<~String>: The application for the environment or configuration template. # * EnvironmentName<~String>: The name of the environment to describe. # * TemplateName<~String>: The name of the configuration template to describe. # # ==== Returns # * response<~Excon::Response>: # # ==== See Also # http://docs.amazonwebservices.com/elasticbeanstalk/latest/api/API_DescribeConfigurationSettings.html # def describe_configuration_settings(options={}) request({ 'Operation' => 'DescribeConfigurationSettings', :parser => Fog::Parsers::AWS::ElasticBeanstalk::DescribeConfigurationSettings.new }.merge(options)) 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/requests/beanstalk/describe_configuration_settings.rb |