Sha256: d90f04e4143996c177741b5f39bfd37e928b51bf7e865afd92801f5c58b85264
Contents?: true
Size: 700 Bytes
Versions: 18
Compression:
Stored size: 700 Bytes
Contents
require 'fog/core/collection' require 'fog/aws/models/beanstalk/application' module Fog module AWS class ElasticBeanstalk class Applications < Fog::Collection model Fog::AWS::ElasticBeanstalk::Application def all(application_names=[]) data = connection.describe_applications(application_names).body['DescribeApplicationsResult']['Applications'] load(data) # data is an array of attribute hashes end def get(application_name) if data = connection.describe_applications([application_name]).body['DescribeApplicationsResult']['Applications'].first new(data) end end end end end end
Version data entries
18 entries across 18 versions & 9 rubygems