mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
26 lines
700 B
Ruby
26 lines
700 B
Ruby
![]() |
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
|