Scalr is a cloud infrastructure management provider. This gem is for interfacing with the Scalr.net API to obtain information about your instances and farms.
As of version 0.2.0 the Scalr gem has been updated to use the Scalr 2.0 API (thanks to threetee).
$ gem install scalr
First, include rubygems and scalr:
require 'rubygems' require 'scalr'
Now, just initialize scalr with your api values (can be found in your system settings on scalr.net):
Scalr.key_id = "your_key_id" Scalr.access_key = "your_access_key"
Like most rubyist, I can’t stand camel case, so you make calls to the scalr API with their underscore equivalent names and parameters:
response = Scalr.list_dns_zone_records(:domain_name => 'domain.com')
All API calls return a Scalr::Response instance with the following attributes:
response.code # the HTTP response code from the API request response.message # the HTTP response message response.value # the value returned from the API as a hash response.error # if the requests returns an API error it is stored here for easy access
Just like the actions and inputs, all returned values are put in the response.value hash as underscored symbols (converted from the camel case returned by the gateway).
I recommend opening up an irb session and making test calls to figure out the response structures.
-
Fork the project.
-
Make your feature addition or bug fix.
-
Add tests for it. This is important so I don’t break it in a future version unintentionally.
-
Commit, do not mess with rakefile, version, or history. (if you want to have your own version, that is fine but bump version in a commit by itself I can ignore when I pull)
-
Send me a pull request. Bonus points for topic branches.
Copyright © 2010 Matt Hodgson. See LICENSE for details.