Sha256: 729506870c7204ce51ae0c21e0368aa3a98be930077b0fadf15bbe23252895e9

Contents?: true

Size: 1.02 KB

Versions: 1

Compression:

Stored size: 1.02 KB

Contents

require 'rackspace-fog/core/collection'
require 'rackspace-fog/aws/models/beanstalk/version'

module Fog
  module AWS
    class ElasticBeanstalk

      class Versions < Fog::Collection
        model Fog::AWS::ElasticBeanstalk::Version

        def all(options={})
          data = connection.describe_application_versions(options).body['DescribeApplicationVersionsResult']['ApplicationVersions']
          load(data) # data is an array of attribute hashes
        end

        def get(application_name, version_label)
          if data = connection.describe_application_versions({
                                                                 'ApplicationName' => application_name,
                                                                 'VersionLabels' => [version_label]
                                                             }).body['DescribeApplicationVersionsResult']['ApplicationVersions']
            if data.length == 1
              new(data.first)
            end

          end
        end

      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
rackspace-fog-1.4.2 lib/rackspace-fog/aws/models/beanstalk/versions.rb