1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74
|
require 'fog/openstack/models/model'
module Fog
module OpenStack
class Identity
class V3
class OsCredential < Fog::OpenStack::Model
identity :id
attribute :project_id
attribute :type
attribute :blob
attribute :user_id
attribute :links
def to_s
name
end
def destroy
requires :id
service.delete_os_credential(id)
@parsed_blob = nil
true
end
def update(attr = nil)
requires :id
merge_attributes(
service.update_os_credential(id, attr || attributes).body['credential']
)
@parsed_blob = nil
self
end
def save
requires :blob, :type
@parsed_blob = nil
identity ? update : create
end
def create
merge_attributes(
service.create_os_credential(attributes).body['credential']
)
@parsed_blob = nil
self
end
def parsed_blob
@parsed_blob = ::JSON.parse(blob) unless @parsed_blob
@parsed_blob
end
def name
parsed_blob['name'] if blob
end
def public_key
parsed_blob['public_key'] if blob
end
def fingerprint
parsed_blob['fingerprint'] if blob
end
def private_key
parsed_blob['private_key'] if blob
end
end
end
end
end
end
|