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