Class: LabClient::ProjectTemplates
- Includes:
- ClassHelpers
- Defined in:
- lib/labclient/projects/templates/list.rb,
lib/labclient/projects/templates/show.rb,
lib/labclient/projects/templates/client.rb
Overview
Inspect Helper
Constant Summary
Constants included from AccessLevel
AccessLevel::HUMAN_ACCESS_LEVELS, AccessLevel::MACHINE_ACCESS_LEVELS
Instance Attribute Summary
Attributes inherited from Common
Instance Method Summary collapse
- #list(project_id, template_type) ⇒ Object
- #show(project_id, template_type, template_name, query = {}) ⇒ Object
Methods included from ClassHelpers
Methods inherited from Common
#api_methods, #api_methods_help, #format_id, #format_query_id, #format_query_ids, #format_time?, #group_name, #help, #initialize, #inspect, #klass, #protected_query_access_level, #query_access_level, #query_format_time
Methods included from Docs
#demo, #desc, #doc, docs, #example, #group_name, #help, json, #markdown, #navigation, #option, #result, #subtitle, #title
Methods included from AccessLevel
#human_access_level, #human_protected_access_level, #machine_access_level, #machine_protected_access_level
Constructor Details
This class inherits a constructor from LabClient::Common
Instance Method Details
#list(project_id, template_type) ⇒ Object
25 26 27 28 |
# File 'lib/labclient/projects/templates/list.rb', line 25 def list(project_id, template_type) project_id = format_id(project_id) client.request(:get, "projects/#{project_id}/templates/#{template_type}") end |
#show(project_id, template_type, template_name, query = {}) ⇒ Object
30 31 32 33 34 |
# File 'lib/labclient/projects/templates/show.rb', line 30 def show(project_id, template_type, template_name, query = {}) project_id = format_id(project_id) client.request(:get, "projects/#{project_id}/templates/#{template_type}/#{template_name}", nil, query) end |