mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
60 lines
No EOL
2 KiB
Ruby
60 lines
No EOL
2 KiB
Ruby
require 'fog/core/model'
|
|
|
|
module Fog
|
|
module Rackspace
|
|
class AutoScale
|
|
class GroupConfig < Fog::Model
|
|
|
|
# @!attribute [r] group
|
|
# @return [Fog::Rackspace::AutoScale::Group] The parent group
|
|
attribute :group
|
|
|
|
# @!attribute [r] name
|
|
# @return [String] The name of the group
|
|
attribute :name
|
|
|
|
# @!attribute [r] cooldown
|
|
# @return [String] The group's cooldown
|
|
attribute :cooldown
|
|
|
|
# @!attribute [r] min_entities
|
|
# @return [Fixnum] The minimum amount of units which should exist in the group
|
|
attribute :min_entities, :aliases => 'minEntities'
|
|
|
|
# @!attribute [r] max_entities
|
|
# @return [Fixnum] The maximum amount of units which should exist in the group
|
|
attribute :max_entities, :aliases => 'maxEntities'
|
|
|
|
# @!attribute [r] metadata
|
|
# @return [Array] The group's metadata
|
|
attribute :metadata
|
|
|
|
# Update this group's configuration
|
|
#
|
|
# @return [Boolean] returns true if group config has been updated
|
|
#
|
|
# @raise [Fog::Rackspace::AutoScale:::NotFound] - HTTP 404
|
|
# @raise [Fog::Rackspace::AutoScale:::BadRequest] - HTTP 400
|
|
# @raise [Fog::Rackspace::AutoScale:::InternalServerError] - HTTP 500
|
|
# @raise [Fog::Rackspace::AutoScale:::ServiceError]
|
|
#
|
|
# @see http://docs-internal.rackspace.com/cas/api/v1.0/autoscale-devguide/content/PUT_putGroupConfig_v1.0__tenantId__groups__groupId__config_Configurations.html
|
|
def update
|
|
|
|
options = {}
|
|
|
|
options['name'] = name unless name.nil?
|
|
options['cooldown'] = cooldown unless cooldown.nil?
|
|
options['minEntities'] = min_entities
|
|
options['maxEntities'] = max_entities
|
|
options['metadata'] = metadata unless metadata.nil?
|
|
|
|
data = service.update_group_config(group.id, options)
|
|
merge_attributes(data.body)
|
|
true
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|
|
end |