Class: Aptible::Api::Account

Inherits:
Resource
  • Object
show all
Defined in:
lib/aptible/api/account.rb

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Resource

#namespace, #root_url

Class Method Details

.generate_handle(organization_name, plan_id) ⇒ Object



65
66
67
68
# File 'lib/aptible/api/account.rb', line 65

def self.generate_handle(organization_name, plan_id)
  rand = ('a'..'z').to_a.sample(8).join
  "#{organization_name.parameterize}-#{plan_id}-#{rand}"
end

Instance Method Details

#dumptruck_portObject



49
50
51
52
# File 'lib/aptible/api/account.rb', line 49

def dumptruck_port
  # TODO: Fetch from API
  45022
end

#each_orphaned_backupObject



70
71
72
73
74
75
76
# File 'lib/aptible/api/account.rb', line 70

def each_orphaned_backup
  base_href = "#{links['backups'].base_href}?orphaned=true"
  Backup.each_page(href: base_href, headers: headers,
                   token: token) do |page|
    page.each { |entry| yield entry }
  end
end

#operationsObject



44
45
46
47
# File 'lib/aptible/api/account.rb', line 44

def operations
  # TODO: Implement /accounts/:id/operations
  []
end

#organizationObject



58
59
60
61
62
63
# File 'lib/aptible/api/account.rb', line 58

def organization
  return @organization if @organization

  auth = Aptible::Auth::Organization.new(token: token, headers: headers)
  @organization = auth.find_by_url(organization_url)
end

#organization_urlObject



54
55
56
# File 'lib/aptible/api/account.rb', line 54

def organization_url
  links['organization'].href
end

#production?Boolean

Returns:

  • (Boolean)


40
41
42
# File 'lib/aptible/api/account.rb', line 40

def production?
  type == 'production'
end