Sha256: 78c06e1c8c9009c8276572491ed4fc2a709eef20e4ae505d20b17a50703e9c94
Contents?: true
Size: 818 Bytes
Versions: 83
Compression:
Stored size: 818 Bytes
Contents
module Fog module AWS class ElasticBeanstalk class Real require 'fog/aws/parsers/beanstalk/retrieve_environment_info' # Returns AWS resources for this environment. # # ==== Options # * EnvironmentId # * EnvironmentName # # ==== Returns # * response<~Excon::Response>: # # ==== See Also # http://docs.amazonwebservices.com/elasticbeanstalk/latest/api/API_RetrieveEnvironmentInfo.html # def retrieve_environment_info(options={}) request({ 'Operation' => 'RetrieveEnvironmentInfo', :parser => Fog::Parsers::AWS::ElasticBeanstalk::RetrieveEnvironmentInfo.new }.merge(options)) end end end end end
Version data entries
83 entries across 83 versions & 13 rubygems