Sha256: 0b984eda27c93c1a84fc22259f933fe4969904b7be89e3b4af4429c7f9b5f45b

Contents?: true

Size: 1.86 KB

Versions: 51

Compression:

Stored size: 1.86 KB

Contents

require 'fog/core/model'

module Fog
  module Network
    class OpenStack
      class LbHealthMonitor < Fog::Model
        identity :id

        attribute :type
        attribute :delay
        attribute :timeout
        attribute :max_retries
        attribute :http_method
        attribute :url_path
        attribute :expected_codes
        attribute :status
        attribute :admin_state_up
        attribute :tenant_id

        def initialize(attributes)
          prepare_service_value(attributes)
          super
        end

        def save
          requires :type, :delay, :timeout, :max_retries
          identity ? update : create
        end

        def create
          requires :type, :delay, :timeout, :max_retries
          merge_attributes(service.create_lb_health_monitor(self.type,
                                                            self.delay,
                                                            self.timeout,
                                                            self.max_retries,
                                                            self.attributes).body['health_monitor'])
          self
        end

        def update
          requires :id, :type, :delay, :timeout, :max_retries
          merge_attributes(service.update_lb_health_monitor(self.id,
                                                            self.attributes).body['health_monitor'])
          self
        end

        def destroy
          requires :id
          service.delete_lb_health_monitor(self.id)
          true
        end

        def associate_to_pool(pool_id)
          requires :id
          service.associate_lb_health_monitor(pool_id, self.id)
          true
        end

        def disassociate_from_pool(pool_id)
          requires :id
          service.disassociate_lb_health_monitor(pool_id, self.id)
          true
        end

      end
    end
  end
end

Version data entries

51 entries across 51 versions & 3 rubygems

Version Path
fog-maestrodev-1.20.0.20140305101839 lib/fog/openstack/models/network/lb_health_monitor.rb
fog-maestrodev-1.20.0.20140305101305 lib/fog/openstack/models/network/lb_health_monitor.rb
fog-maestrodev-1.19.0.20140212012611 lib/fog/openstack/models/network/lb_health_monitor.rb
fog-1.20.0 lib/fog/openstack/models/network/lb_health_monitor.rb
fog-maestrodev-1.19.0.20140110004459 lib/fog/openstack/models/network/lb_health_monitor.rb
fog-maestrodev-1.19.0.20140110003812 lib/fog/openstack/models/network/lb_health_monitor.rb
fog-maestrodev-1.19.0.20140109202555 lib/fog/openstack/models/network/lb_health_monitor.rb
fog-maestrodev-1.19.0.20140107192102 lib/fog/openstack/models/network/lb_health_monitor.rb
fog-maestrodev-1.19.0.20140107142106 lib/fog/openstack/models/network/lb_health_monitor.rb
fog-maestrodev-1.19.0.20131219203941 lib/fog/openstack/models/network/lb_health_monitor.rb
fog-maestrodev-1.18.0.20131219193542 lib/fog/openstack/models/network/lb_health_monitor.rb
fog-1.19.0 lib/fog/openstack/models/network/lb_health_monitor.rb
fog-maestrodev-1.18.0.20131219033443 lib/fog/openstack/models/network/lb_health_monitor.rb
fog-maestrodev-1.18.0.20131219032002 lib/fog/openstack/models/network/lb_health_monitor.rb
fog-maestrodev-1.18.0.20131219030716 lib/fog/openstack/models/network/lb_health_monitor.rb
fog-maestrodev-1.18.0.20131219022322 lib/fog/openstack/models/network/lb_health_monitor.rb
fog-maestrodev-1.18.0.20131218202447 lib/fog/openstack/models/network/lb_health_monitor.rb
fog-maestrodev-1.18.0.20131209091424 lib/fog/openstack/models/network/lb_health_monitor.rb
fog-maestrodev-1.18.0.20131209090811 lib/fog/openstack/models/network/lb_health_monitor.rb
fog-maestrodev-1.18.0.20131206115947 lib/fog/openstack/models/network/lb_health_monitor.rb