Sha256: 154fae3e1be93ea6537a007da3034870ddf9bd3a7224385ff36bda8632166a5b

Contents?: true

Size: 751 Bytes

Versions: 75

Compression:

Stored size: 751 Bytes

Contents

require 'fog/aws/models/beanstalk/environment'

module Fog
  module AWS
    class ElasticBeanstalk
      class Environments < Fog::Collection
        model Fog::AWS::ElasticBeanstalk::Environment

        def all(options={})
          data = service.describe_environments(options).body['DescribeEnvironmentsResult']['Environments']
          load(data) # data is an array of attribute hashes
        end

        # Gets an environment given a name.
        #
        def get(environment_name)
          options = { 'EnvironmentNames' => [environment_name] }

          if data = service.describe_environments(options).body['DescribeEnvironmentsResult']['Environments'].first
            new(data)
          end
        end
      end
    end
  end
end

Version data entries

75 entries across 73 versions & 3 rubygems

Version Path
fog-aws-3.29.0 lib/fog/aws/models/beanstalk/environments.rb
fog-aws-3.28.0 lib/fog/aws/models/beanstalk/environments.rb
fog-aws-3.27.0 lib/fog/aws/models/beanstalk/environments.rb
fog-aws-3.26.0 lib/fog/aws/models/beanstalk/environments.rb
fog-aws-3.25.0 lib/fog/aws/models/beanstalk/environments.rb
fog-aws-3.24.0 lib/fog/aws/models/beanstalk/environments.rb
fog-aws-3.23.0 lib/fog/aws/models/beanstalk/environments.rb
fog-aws-3.22.0 lib/fog/aws/models/beanstalk/environments.rb
fog-aws-3.21.1 lib/fog/aws/models/beanstalk/environments.rb
fog-aws-3.21.0 lib/fog/aws/models/beanstalk/environments.rb
fog-aws-3.20.0 lib/fog/aws/models/beanstalk/environments.rb
fog-aws-3.19.0 lib/fog/aws/models/beanstalk/environments.rb
fog-aws-3.18.0 lib/fog/aws/models/beanstalk/environments.rb
fog-aws-3.17.0 lib/fog/aws/models/beanstalk/environments.rb
fog-aws-3.16.0 lib/fog/aws/models/beanstalk/environments.rb
fog-aws-3.15.0 lib/fog/aws/models/beanstalk/environments.rb
fog-aws-3.14.0 lib/fog/aws/models/beanstalk/environments.rb
fog-aws-3.13.0 lib/fog/aws/models/beanstalk/environments.rb
fog-aws-3.12.0 lib/fog/aws/models/beanstalk/environments.rb
fog-aws-3.11.0 lib/fog/aws/models/beanstalk/environments.rb