Class: Fog::Network::HuaweiCloud::LbVips
- Inherits:
-
HuaweiCloud::Collection
- Object
- Collection
- HuaweiCloud::Collection
- Fog::Network::HuaweiCloud::LbVips
- Defined in:
- lib/fog/network/huaweicloud/models/lb_vips.rb
Instance Attribute Summary
Attributes inherited from HuaweiCloud::Collection
Instance Method Summary collapse
- #all(filters_arg = filters) ⇒ Object
- #get(vip_id) ⇒ Object
-
#initialize(attributes) ⇒ LbVips
constructor
A new instance of LbVips.
Methods inherited from HuaweiCloud::Collection
#destroy, #find_by_id, #load_response, #summary
Constructor Details
#initialize(attributes) ⇒ LbVips
Returns a new instance of LbVips.
12 13 14 15 |
# File 'lib/fog/network/huaweicloud/models/lb_vips.rb', line 12 def initialize(attributes) self.filters ||= {} super end |
Instance Method Details
#all(filters_arg = filters) ⇒ Object
17 18 19 20 |
# File 'lib/fog/network/huaweicloud/models/lb_vips.rb', line 17 def all(filters_arg = filters) filters = filters_arg load_response(service.list_lb_vips(filters), 'vips') end |
#get(vip_id) ⇒ Object
22 23 24 25 26 27 28 |
# File 'lib/fog/network/huaweicloud/models/lb_vips.rb', line 22 def get(vip_id) if vip = service.get_lb_vip(vip_id).body['vip'] new(vip) end rescue Fog::Network::HuaweiCloud::NotFound nil end |