Sha256: c14487afc37e159b1279f745ffcccb6ca7b7a240605fa8705f3a675a627dc14a
Contents?: true
Size: 1.69 KB
Versions: 9
Compression:
Stored size: 1.69 KB
Contents
require 'aptible/auth' require 'stripe' module Aptible module Api class Account < Resource has_many :apps has_many :backups has_many :certificates has_many :databases has_many :disks has_many :services has_many :permissions embeds_many :log_drains field :id field :type field :name field :handle field :number field :type field :activated, type: Aptible::Resource::Boolean field :syslog_host field :syslog_port field :created_at, type: Time field :updated_at, type: Time field :billforward_subscription_id field :gentlemanjerry_endpoint field :gentlemanjerry_certificate field :gentlemanjerry_docker_name field :gentlemanjerry_instance_id def billforward_subscription return nil if billforward_subscription_id.nil? @billforward_subscription ||= Aptible::BillForward::Subscription.find(billforward_subscription_id) end def production? type == 'production' end def operations # TODO: Implement /accounts/:id/operations [] end def dumptruck_port # TODO: Fetch from API 45022 end def organization_url links['organization'].href end def organization return @organization if @organization auth = Aptible::Auth::Organization.new(token: token, headers: headers) @organization = auth.find_by_url(organization_url) end def self.generate_handle(organization_name, plan_id) rand = ('a'..'z').to_a.sample(8).join "#{organization_name.parameterize}-#{plan_id}-#{rand}" end end end end
Version data entries
9 entries across 9 versions & 1 rubygems