Sha256: 14af050b8941bc2700d12b6de80dfed7131222e372982e57b3a0cccf548d8544

Contents?: true

Size: 1.12 KB

Versions: 3

Compression:

Stored size: 1.12 KB

Contents

class Ey::Core::Cli::Web::Disable < Ey::Core::Cli::Web
  title "disable"
  summary "Put up the maintenance page for this application in the given environment."

  option :app,         short: "a", long: "app",         description: "Name or id of the application whose maintenance page will be put up", argument: "app"
  option :environment, short: "e", long: "environment", description: "Name or id of the environment to deploy to.", argument: "Environment"
  option :account,     short: 'c', long: 'account',     description: 'Name or ID of the account that the environment resides in.', argument: 'Account name or id'

  def handle
    operator, environment = core_operator_and_environment_for(self.options)
    application           = core_application_for(self.options)

    puts "Enabling maintenance page for #{application.name} on #{environment.name}".green
    request = environment.maintenance(application, "enable")
    request.wait_for { |r| r.ready? }
    if request.successful
      puts "Successfully put up maintenance page".green
    else
      puts "Enabling maintenance mode was not successful".red
      ap request
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
ey-core-3.1.2 lib/ey-core/cli/web/disable.rb
ey-core-3.1.1 lib/ey-core/cli/web/disable.rb
ey-core-3.1.0 lib/ey-core/cli/web/disable.rb