Class: Fog::Network::HuaweiCloud::VpnServices
- Inherits:
-
HuaweiCloud::Collection
- Object
- Collection
- HuaweiCloud::Collection
- Fog::Network::HuaweiCloud::VpnServices
- Defined in:
- lib/fog/network/huaweicloud/models/vpn_services.rb
Instance Attribute Summary
Attributes inherited from HuaweiCloud::Collection
Instance Method Summary collapse
- #all(filters_arg = filters) ⇒ Object
- #get(vpn_service_id) ⇒ Object
-
#initialize(attributes) ⇒ VpnServices
constructor
A new instance of VpnServices.
Methods inherited from HuaweiCloud::Collection
#destroy, #find_by_id, #load_response, #summary
Constructor Details
#initialize(attributes) ⇒ VpnServices
Returns a new instance of VpnServices.
12 13 14 15 |
# File 'lib/fog/network/huaweicloud/models/vpn_services.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/vpn_services.rb', line 17 def all(filters_arg = filters) filters = filters_arg load_response(service.list_vpn_services(filters), 'vpnservices') end |
#get(vpn_service_id) ⇒ Object
22 23 24 25 26 27 28 |
# File 'lib/fog/network/huaweicloud/models/vpn_services.rb', line 22 def get(vpn_service_id) if vpn_service = service.get_vpn_service(vpn_service_id).body['vpnservice'] new(vpn_service) end rescue Fog::Network::HuaweiCloud::NotFound nil end |