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-0.8.0 lib/fog/aws/models/beanstalk/environments.rb
vagrant-cloudstack-1.2.0 vendor/bundle/gems/fog-aws-0.7.5/lib/fog/aws/models/beanstalk/environments.rb
fog-aws-0.7.6 lib/fog/aws/models/beanstalk/environments.rb
fog-aws-0.7.5 lib/fog/aws/models/beanstalk/environments.rb
fog-aws-0.7.4 lib/fog/aws/models/beanstalk/environments.rb
fog-aws-0.7.3 lib/fog/aws/models/beanstalk/environments.rb
fog-aws-0.7.2 lib/fog/aws/models/beanstalk/environments.rb
fog-aws-0.6.0 lib/fog/aws/models/beanstalk/environments.rb
fog-aws-0.5.0 lib/fog/aws/models/beanstalk/environments.rb
fog-aws-0.4.1 lib/fog/aws/models/beanstalk/environments.rb
fog-aws-0.4.0 lib/fog/aws/models/beanstalk/environments.rb
fog-aws-0.3.0 lib/fog/aws/models/beanstalk/environments.rb
fog-aws-0.2.2 lib/fog/aws/models/beanstalk/environments.rb
fog-aws-0.2.0 lib/fog/aws/models/beanstalk/environments.rb
fog-aws-0.1.2 lib/fog/aws/models/beanstalk/environments.rb