Class: Jets::CLI::Release::Rollback

Inherits:
Base
  • Object
show all
Defined in:
lib/jets/cli/release/rollback.rb

Instance Attribute Summary

Attributes inherited from Base

#options

Instance Method Summary collapse

Methods inherited from Base

#initialize, #paginate, #paging_params, rescue_api_error

Methods included from Util::Logging

#log

Methods included from AwsServices

#apigateway, #aws_options, #cfn, #codebuild, #dynamodb, #lambda_client, #logs, #s3, #s3_resource, #sns, #sqs, #ssm, #sts, #wafv2

Methods included from AwsServices::StackStatus

#output_value, #stack_exists?

Methods included from AwsServices::GlobalMemoist

included, #reset_cache!

Methods included from Api

#api, #api_key

Constructor Details

This class inherits a constructor from Jets::CLI::Base

Instance Method Details

#runObject



5
6
7
8
9
10
11
12
13
# File 'lib/jets/cli/release/rollback.rb', line 5

def run
  version = @options[:version]
  resp = Info.new(@options).get(version)
  unless resp[:version]
    puts "ERROR: version #{version} not found".color(:red)
    exit 1
  end
  Jets::Cfn::Rollback.new(@options).run
end