Class: McSshKey
Overview
Instance Attribute Summary
#params
Class Method Summary
collapse
Instance Method Summary
collapse
create, filters, find, find_all, find_by, find_with_filter, load, load_all, parse_args, resource_post_name
#connection
#[], #create, #deny_methods, #filters, #find, #find_all, #find_by, #find_by_cloud_id, #find_by_id, #find_by_nickname, #find_by_nickname_speed, #find_with_filter
#connection
#[], #[]=, #actions, #hash_of_links, #href, #initialize, #load, #method_missing, #nickname, #parse_params, #rediscover, #save
#[], #[]=, #destroy, #initialize, #method_missing, #reload, #rs_id, #save
Dynamic Method Handling
This class handles dynamic methods through the method_missing method
in the class RightScale::Api::Gateway
Class Method Details
.create(opts) ⇒ Object
57
58
59
60
61
62
63
|
# File 'lib/rest_connection/rightscale/mc_ssh_key.rb', line 57
def self.create(opts)
create_opts = { self.resource_singular_name.to_sym => opts }
location = connection.post("clouds/#{opts['cloud_id']}/#{self.resource_plural_name}", create_opts)
newrecord = self.new('href' => location)
newrecord.reload
newrecord
end
|
.filters ⇒ Object
53
54
55
|
# File 'lib/rest_connection/rightscale/mc_ssh_key.rb', line 53
def self.filters
[:resource_uid]
end
|
.parse_args(cloud_id) ⇒ Object
49
50
51
|
# File 'lib/rest_connection/rightscale/mc_ssh_key.rb', line 49
def self.parse_args(cloud_id)
"clouds/#{cloud_id}/"
end
|
.resource_plural_name ⇒ Object
41
42
43
|
# File 'lib/rest_connection/rightscale/mc_ssh_key.rb', line 41
def self.resource_plural_name
"ssh_keys"
end
|
.resource_singular_name ⇒ Object
45
46
47
|
# File 'lib/rest_connection/rightscale/mc_ssh_key.rb', line 45
def self.resource_singular_name
"ssh_key"
end
|
Instance Method Details
#resource_plural_name ⇒ Object
33
34
35
|
# File 'lib/rest_connection/rightscale/mc_ssh_key.rb', line 33
def resource_plural_name
"ssh_keys"
end
|
#resource_singular_name ⇒ Object
37
38
39
|
# File 'lib/rest_connection/rightscale/mc_ssh_key.rb', line 37
def resource_singular_name
"ssh_key"
end
|