Class: Fog::Compute::OpenStack::ServerGroup
- Inherits:
-
OpenStack::Model
- Object
- Model
- OpenStack::Model
- Fog::Compute::OpenStack::ServerGroup
- Defined in:
- lib/fog/compute/openstack/models/server_group.rb
Constant Summary collapse
- VALID_SERVER_GROUP_POLICIES =
['affinity', 'anti-affinity', 'soft-affinity', 'soft-anti-affinity'].freeze
Instance Attribute Summary
Attributes inherited from OpenStack::Model
Class Method Summary collapse
Methods inherited from OpenStack::Model
#create, #destroy, #initialize, #save, #update
Constructor Details
This class inherits a constructor from Fog::OpenStack::Model
Class Method Details
.validate_server_group_policy(policy) ⇒ Object
14 15 16 17 18 |
# File 'lib/fog/compute/openstack/models/server_group.rb', line 14 def self.validate_server_group_policy(policy) raise ArgumentError, "#{policy} is an invalid policy... must use one of #{VALID_SERVER_GROUP_POLICIES.join(', ')}" \ unless VALID_SERVER_GROUP_POLICIES.include? policy true end |