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

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.



8
9
10
# File 'lib/puppet/info_service.rb', line 8

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.



24
25
26
# File 'lib/puppet/info_service.rb', line 24

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.



20
21
22
# File 'lib/puppet/info_service.rb', line 20

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.



16
17
18
# File 'lib/puppet/info_service.rb', line 16

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.



12
13
14
# File 'lib/puppet/info_service.rb', line 12

def self.tasks_per_environment(environment_name)
  Puppet::InfoService::TaskInformationService.tasks_per_environment(environment_name)
end