Sha256: 8ecad7e7a799630b7c803f56bafbaf0987e73f3240bfcefc1a8911e9b9f5a8c1
Contents?: true
Size: 767 Bytes
Versions: 11
Compression:
Stored size: 767 Bytes
Contents
module Aptible module Api class Vhost < Resource belongs_to :service has_many :operations field :id field :virtual_domain field :certificate field :private_key field :type field :provisioned, type: Aptible::Resource::Boolean 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 def account service.account end def provisioned? provisioned end end end end
Version data entries
11 entries across 11 versions & 1 rubygems