Sha256: 3bcf39113a3df685eb2f2b9d5c6d279a2e1df15fb64e0a240a7eb5b4eca237fe

Contents?: true

Size: 1.68 KB

Versions: 18

Compression:

Stored size: 1.68 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'

module AvstCloud
    class AzureRmServer < AvstCloud::CloudServer

        def stop
            if @server
                logger.debug "Stopping #{@server_name}"
                @server.power_off
                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

18 entries across 18 versions & 1 rubygems

Version Path
avst-cloud-0.1.34 lib/avst-cloud/azure_rm_server.rb
avst-cloud-0.1.32 lib/avst-cloud/azure_rm_server.rb
avst-cloud-0.1.31 lib/avst-cloud/azure_rm_server.rb
avst-cloud-0.1.30 lib/avst-cloud/azure_rm_server.rb
avst-cloud-0.1.29 lib/avst-cloud/azure_rm_server.rb
avst-cloud-0.1.28 lib/avst-cloud/azure_rm_server.rb
avst-cloud-0.1.27 lib/avst-cloud/azure_rm_server.rb
avst-cloud-0.1.26 lib/avst-cloud/azure_rm_server.rb
avst-cloud-0.1.25 lib/avst-cloud/azure_rm_server.rb
avst-cloud-0.1.24 lib/avst-cloud/azure_rm_server.rb
avst-cloud-0.1.23 lib/avst-cloud/azure_rm_server.rb
avst-cloud-0.1.22 lib/avst-cloud/azure_rm_server.rb
avst-cloud-0.1.21 lib/avst-cloud/azure_rm_server.rb
avst-cloud-0.1.20 lib/avst-cloud/azure_rm_server.rb
avst-cloud-0.1.19 lib/avst-cloud/azure_rm_server.rb
avst-cloud-0.1.18 lib/avst-cloud/azure_rm_server.rb
avst-cloud-0.1.17 lib/avst-cloud/azure_rm_server.rb
avst-cloud-0.1.14 lib/avst-cloud/azure_rm_server.rb