Sha256: 08e7cee730b53e21d861c06eea3323d622416c3c2832db42f9e47d5c39260341

Contents?: true

Size: 1.02 KB

Versions: 16

Compression:

Stored size: 1.02 KB

Contents

# cloudstack_client

[![Gem Version](https://badge.fury.io/rb/cloudstack_client.png)](http://badge.fury.io/rb/cloudstack_client)

A CloudStack API client written in Ruby.

## Installation

Install the cloudstack_client gem:

```bash
$ gem install cloudstack_client
```
    
## Usage

```ruby
require "cloudstack_client"
    
cs = CloudstackClient::Connection.new(
  'https://cloudstack.url/client/api',
  'API_KEY',
  'API_SECRET'
)
     
cs.list_servers(state: 'running').each do |server|
  puts server['name']
end
```    

## References
-  [Apache CloudStack API documentation](http://cloudstack.apache.org/docs/api/)

## Contributing

1. Fork it
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Add some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create new Pull Request

## License

Copyright (c) 2014, Nik Wolfgramm

Released under the MIT License. See the [LICENSE](https://raw.github.com/niwo/cloudstack_client/master/LICENSE.txt) file for further details.

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
cloudstack_client-0.9.7 README.md
cloudstack_client-0.9.6 README.md
cloudstack_client-0.9.5 README.md
cloudstack_client-0.9.3 README.md
cloudstack_client-0.9.2 README.md
cloudstack_client-0.9.1 README.md
cloudstack_client-0.9.0 README.md
cloudstack_client-0.8.0 README.md
cloudstack_client-0.7.1 README.md
cloudstack_client-0.7.0 README.md
cloudstack_client-0.6.4 README.md
cloudstack_client-0.6.3 README.md
cloudstack_client-0.6.2 README.md
cloudstack_client-0.6.0 README.md
cloudstack_client-0.6.1 README.md
cloudstack_client-0.5.0 README.md