Module: Puppet::InfoService Private
- Defined in:
- lib/puppet/info_service.rb
This module is part of a private API. You should avoid using this module if possible, as it may be removed or be changed in the future.
Defined Under Namespace
Classes: ClassInformationService, PlanInformationService, TaskInformationService
Class Method Summary collapse
- .classes_per_environment(env_file_hash) ⇒ Object private
- .plan_data(environment_name, module_name, plan_name) ⇒ Object private
- .plans_per_environment(environment_name) ⇒ Object private
- .task_data(environment_name, module_name, task_name) ⇒ Object private
- .tasks_per_environment(environment_name) ⇒ Object private
Class Method Details
.classes_per_environment(env_file_hash) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
7 8 9 |
# File 'lib/puppet/info_service.rb', line 7 def self.classes_per_environment(env_file_hash) Puppet::InfoService::ClassInformationService.new.classes_per_environment(env_file_hash) end |
.plan_data(environment_name, module_name, plan_name) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
23 24 25 |
# File 'lib/puppet/info_service.rb', line 23 def self.plan_data(environment_name, module_name, plan_name) Puppet::InfoService::PlanInformationService.plan_data(environment_name, module_name, plan_name) end |
.plans_per_environment(environment_name) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
19 20 21 |
# File 'lib/puppet/info_service.rb', line 19 def self.plans_per_environment(environment_name) Puppet::InfoService::PlanInformationService.plans_per_environment(environment_name) end |
.task_data(environment_name, module_name, task_name) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
15 16 17 |
# File 'lib/puppet/info_service.rb', line 15 def self.task_data(environment_name, module_name, task_name) Puppet::InfoService::TaskInformationService.task_data(environment_name, module_name, task_name) end |
.tasks_per_environment(environment_name) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
11 12 13 |
# File 'lib/puppet/info_service.rb', line 11 def self.tasks_per_environment(environment_name) Puppet::InfoService::TaskInformationService.tasks_per_environment(environment_name) end |