Class: Fog::OpenStack::Network::LbMember

Inherits:
Model
  • Object
show all
Defined in:
lib/fog/openstack/network/models/lb_member.rb

Instance Attribute Summary

Attributes inherited from Model

#project

Instance Method Summary collapse

Methods inherited from Model

#initialize, #save

Constructor Details

This class inherits a constructor from Fog::OpenStack::Model

Instance Method Details

#createObject



17
18
19
20
21
22
23
24
25
# File 'lib/fog/openstack/network/models/lb_member.rb', line 17

def create
  requires :pool_id, :address, :protocol_port, :weight
  merge_attributes(service.create_lb_member(pool_id,
                                            address,
                                            protocol_port,
                                            weight,
                                            attributes).body['member'])
  self
end

#destroyObject



34
35
36
37
38
# File 'lib/fog/openstack/network/models/lb_member.rb', line 34

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

#updateObject



27
28
29
30
31
32
# File 'lib/fog/openstack/network/models/lb_member.rb', line 27

def update
  requires :id, :pool_id, :address, :protocol_port, :weight
  merge_attributes(service.update_lb_member(id,
                                            attributes).body['member'])
  self
end