Sha256: dc4d92e4248ea8cda85f3d2c9481934d1264cafda816f94ec5c0fb12ad4efb62

Contents?: true

Size: 1.66 KB

Versions: 17

Compression:

Stored size: 1.66 KB

Contents

require 'fog/openstack/models/model'

module Fog
  module Network
    class OpenStack
      class LbHealthMonitor < Fog::OpenStack::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 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

17 entries across 17 versions & 2 rubygems

Version Path
fog-openstack-0.1.10 lib/fog/openstack/models/network/lb_health_monitor.rb
fog-openstack-0.1.9 lib/fog/openstack/models/network/lb_health_monitor.rb
fog-openstack-0.1.8 lib/fog/openstack/models/network/lb_health_monitor.rb
fog-openstack-0.1.7 lib/fog/openstack/models/network/lb_health_monitor.rb
fog-openstack-0.1.6 lib/fog/openstack/models/network/lb_health_monitor.rb
fog-openstack-0.1.5 lib/fog/openstack/models/network/lb_health_monitor.rb
fog-openstack-0.1.4 lib/fog/openstack/models/network/lb_health_monitor.rb
fog-openstack-0.1.3 lib/fog/openstack/models/network/lb_health_monitor.rb
fog-openstack-0.1.2 lib/fog/openstack/models/network/lb_health_monitor.rb
fog-openstack-0.1.1 lib/fog/openstack/models/network/lb_health_monitor.rb
fog-openstack-0.1.0 lib/fog/openstack/models/network/lb_health_monitor.rb
fog-1.37.0 lib/fog/openstack/models/network/lb_health_monitor.rb
fog-1.36.0 lib/fog/openstack/models/network/lb_health_monitor.rb
fog-1.35.0 lib/fog/openstack/models/network/lb_health_monitor.rb
fog-2.0.0.pre.0 lib/fog/openstack/models/network/lb_health_monitor.rb
fog-1.34.0 lib/fog/openstack/models/network/lb_health_monitor.rb
fog-1.33.0 lib/fog/openstack/models/network/lb_health_monitor.rb