Sha256: 5793c411e857bed6b020918b1c14d5daea91541af1cf2375d7806ff9e9e3c9cc
Contents?: true
Size: 892 Bytes
Versions: 14
Compression:
Stored size: 892 Bytes
Contents
module Aptible module Api class Vhost < Resource belongs_to :service belongs_to :certificate has_many :operations field :id field :virtual_domain field :type field :elastic_load_balancer_name field :external_host field :external_http_port field :external_https_port field :internal_host field :internal_http_port field :internal_https_port field :docker_name field :created_at, type: Time field :updated_at, type: Time field :status field :default, type: Aptible::Resource::Boolean field :internal, type: Aptible::Resource::Boolean field :acme, type: Aptible::Resource::Boolean field :user_domain field :acme_status def account service.account end def provisioned? status == 'provisioned' end end end end
Version data entries
14 entries across 14 versions & 1 rubygems