Sha256: a5d032ccf4596217cfd3cdbe25ca34611c73b6bfb7e0cf6ec70a4b26e938dd25
Contents?: true
Size: 1.69 KB
Versions: 8
Compression:
Stored size: 1.69 KB
Contents
# Copyright 2015 Adaptavist.com Ltd. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. require_relative './cloud_server.rb' using Rainbow module AvstCloud class AzureServer < AvstCloud::CloudServer def stop if @server logger.debug "Stopping #{@server_name}" @server.shutdown logger.debug "[DONE]\n\n" logger.debug "Server #{@server_name} stopped...".green else raise "Server #{@server_name} does not exist!".red end end def start if @server logger.debug "Starting #{@server_name}" @server.start logger.debug "[DONE]\n\n" logger.debug "Server #{@server_name} started...".green else raise "Server #{@server_name} does not exist!".red end end def destroy if @server logger.debug "Killing #{@server_name}" @server.destroy logger.debug "Server #{@server_name} destroyed...".green else raise "Server #{@server_name} does not exist!".red end end end end
Version data entries
8 entries across 8 versions & 1 rubygems