Sha256: fa805b1eb41b661906e2b96efd60e6c0596875271ab8d5132049b7990902033d
Contents?: true
Size: 772 Bytes
Versions: 10
Compression:
Stored size: 772 Bytes
Contents
module Fog module Brightbox class Compute class Application < Fog::Brightbox::Model identity :id attribute :resource_type attribute :url attribute :name attribute :description attribute :secret # Timestamps attribute :created_at, type: :time attribute :updated_at, type: :time attribute :revoked_at, type: :time def save raise Fog::Errors::Error.new("Resaving an existing object may create a duplicate") if persisted? options = { :name => name }.delete_if { |_k, v| v.nil? || v == "" } data = service.create_application(options) merge_attributes(data) true end end end end end
Version data entries
10 entries across 10 versions & 1 rubygems