Sha256: 08145ac9713299d6297c784d9bd6c23ca68a67f0787e8dfe68ca35978ced8e32

Contents?: true

Size: 1.61 KB

Versions: 20

Compression:

Stored size: 1.61 KB

Contents

require 'fog/openstack/models/model'

module Fog
  module OpenStack
    class Network
      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(type,
                                                            delay,
                                                            timeout,
                                                            max_retries,
                                                            attributes).body['health_monitor'])
          self
        end

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

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

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

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

Version data entries

20 entries across 20 versions & 3 rubygems

Version Path
fog-openstack-1.1.3 lib/fog/openstack/network/models/lb_health_monitor.rb
fog-openstack-1.1.2 lib/fog/openstack/network/models/lb_health_monitor.rb
fog-openstack-fork-99 lib/fog/openstack/network/models/lb_health_monitor.rb
fog-openstack-1.1.0 lib/fog/openstack/network/models/lb_health_monitor.rb
fog-openstack-1.1.0.pre lib/fog/openstack/network/models/lb_health_monitor.rb
fog-openstack-apibank-1.0.102 lib/fog/openstack/network/models/lb_health_monitor.rb
fog-openstack-1.0.11 lib/fog/openstack/network/models/lb_health_monitor.rb
fog-openstack-apibank-1.0.101 lib/fog/openstack/network/models/lb_health_monitor.rb
fog-openstack-1.0.10 lib/fog/openstack/network/models/lb_health_monitor.rb
fog-openstack-1.0.9 lib/fog/openstack/network/models/lb_health_monitor.rb
fog-openstack-1.0.8 lib/fog/openstack/network/models/lb_health_monitor.rb
fog-openstack-1.0.7 lib/fog/openstack/network/models/lb_health_monitor.rb
fog-openstack-1.0.6 lib/fog/openstack/network/models/lb_health_monitor.rb
fog-openstack-1.0.5 lib/fog/openstack/network/models/lb_health_monitor.rb
fog-openstack-1.0.4 lib/fog/openstack/network/models/lb_health_monitor.rb
fog-openstack-1.0.3 lib/fog/openstack/network/models/lb_health_monitor.rb
fog-openstack-1.0.2 lib/fog/openstack/network/models/lb_health_monitor.rb
fog-openstack-1.0.1 lib/fog/openstack/network/models/lb_health_monitor.rb
fog-openstack-1.0.0 lib/fog/openstack/network/models/lb_health_monitor.rb
fog-openstack-0.3.1 lib/fog/openstack/network/models/lb_health_monitor.rb