Sha256: 03efa8026dc3e19bc471a460f4493cb9ef3326a3397df2642ca12e62869dabaf
Contents?: true
Size: 885 Bytes
Versions: 3
Compression:
Stored size: 885 Bytes
Contents
module OpsWorks class App < Resource attr_accessor :id, :name, :revision def self.from_collection_response(client, response) response.data[:apps].map do |app| hash = app.to_h revision = hash[:app_source][:revision] if hash[:app_source] new(client, id: hash[:app_id], name: hash[:name], revision: revision) end end def deployments @deployments ||= initialize_deployments end def last_deployment deployments.find(&:success?) end def update_revision(revision) client.update_app( app_id: id, app_source: { revision: revision } ) self.revision = revision end private def initialize_deployments return [] unless id response = client.describe_deployments(app_id: id) Deployment.from_collection_response(client, response) end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
opsworks-cli-0.7.1 | lib/opsworks/app.rb |
opsworks-cli-0.7.0 | lib/opsworks/app.rb |
opsworks-cli-0.6.0 | lib/opsworks/app.rb |