
Security News
Astral Launches pyx: A Python-Native Package Registry
Astral unveils pyx, a Python-native package registry in beta, designed to speed installs, enhance security, and integrate deeply with uv.
This is a wrapper for the CloudAlly portal API v1. You can see the API endpoints here https://api.cloudally.com/documentation
Currently only the GET requests for the Partner Portal API are implemented.
Add this line to your application's Gemfile:
gem 'cloudally'
And then execute:
$ bundle install
Or install it yourself as:
$ gem install cloudally
Before you start making the requests to API provide the client id and client secret and email/password using the configuration wrapping.
CloudAlly.configure do |config|
config.client_id = ENV["CLOUDALLY_CLIENT_ID"]
config.client_secret = ENV["CLOUDALLY_CLIENT_SECRET"]
config.username = ENV["CLOUDALLY_USER"]
config.password = ENV["CLOUDALLY_PASSWORD"]
config.logger = Logger.new( "./cloudally-http.log" )
end
client = CloudAlly.client
client.partner_login
client.partner_login
Resource | API endpoint | Description |
---|---|---|
.auth_partner or .partner_login | /auth/partner | Authenticate partner |
.auth or .login | /auth | Authenticate portal user |
.auth_refresh | /auth/refresh | Refresh authentication token |
Endpoint for partner related requests https://api.cloudally.com/documentation#/Partner%20Portal
partner = client.get_partner
puts partner.email
Resource | API endpoint |
---|---|
.partners or .get_partner | /v1/partners |
.partner_bills | /v1/partners/bills |
.partner_status or .get_status_by_partner | /v1/partners/status |
.partner_tasks | /v1/partners/tasks |
.partner_resellers or .get_resellers_list | /v1/partners/resellers |
.partner_resellers( partner_id ) or .get_reseller_by_partner_id( partner_id ) | /v1/partners/resellers/{partner_id} |
.partner_users or .get_users_by_partner | /v1/partners/users |
Bug reports and pull requests are welcome on GitHub at https://github.com/jancotanis/cloudally.
The gem is available as open source under the terms of the MIT License.
FAQs
Unknown package
We found that cloudally demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Astral unveils pyx, a Python-native package registry in beta, designed to speed installs, enhance security, and integrate deeply with uv.
Security News
The Latio podcast explores how static and runtime reachability help teams prioritize exploitable vulnerabilities and streamline AppSec workflows.
Security News
The latest Opengrep releases add Apex scanning, precision rule tuning, and performance gains for open source static code analysis.