Class: Fog::Rackspace::AutoScale::Webhooks
- Inherits:
-
Collection
- Object
- Collection
- Fog::Rackspace::AutoScale::Webhooks
- Defined in:
- lib/fog/rackspace/models/auto_scale/webhooks.rb
Instance Attribute Summary collapse
-
#group ⇒ Object
Returns the value of attribute group.
-
#policy ⇒ Object
Returns the value of attribute policy.
Instance Method Summary collapse
-
#all ⇒ Fog::Rackspace::AutoScale::Policies
Returns list of autoscale webhooks.
-
#create(attributes = {}) ⇒ Fog::Rackspace::AutoScale::Webhook
Create a webhook.
-
#get(webhook_id) ⇒ Fog::Rackspace::AutoScale::Webhook
Returns an individual webhook.
- #new(attributes = {}) ⇒ Object
Instance Attribute Details
#group ⇒ Object
Returns the value of attribute group.
10 11 12 |
# File 'lib/fog/rackspace/models/auto_scale/webhooks.rb', line 10 def group @group end |
#policy ⇒ Object
Returns the value of attribute policy.
11 12 13 |
# File 'lib/fog/rackspace/models/auto_scale/webhooks.rb', line 11 def policy @policy end |
Instance Method Details
#all ⇒ Fog::Rackspace::AutoScale::Policies
Returns list of autoscale webhooks
21 22 23 24 |
# File 'lib/fog/rackspace/models/auto_scale/webhooks.rb', line 21 def all data = service.list_webhooks(group.id, policy.id).body['webhooks'] load(data) end |
#create(attributes = {}) ⇒ Fog::Rackspace::AutoScale::Webhook
Create a webhook
52 53 54 |
# File 'lib/fog/rackspace/models/auto_scale/webhooks.rb', line 52 def create(attributes = {}) super(attributes) end |
#get(webhook_id) ⇒ Fog::Rackspace::AutoScale::Webhook
Returns an individual webhook
37 38 39 40 41 42 |
# File 'lib/fog/rackspace/models/auto_scale/webhooks.rb', line 37 def get(webhook_id) data = service.get_webhook(group.id, policy.id, webhook_id).body['webhook'] new(data) rescue Fog::Rackspace::AutoScale::NotFound nil end |
#new(attributes = {}) ⇒ Object
56 57 58 |
# File 'lib/fog/rackspace/models/auto_scale/webhooks.rb', line 56 def new(attributes = {}) super({:group => group, :policy => policy}.merge(attributes)) end |