Class: Puppet::Environments::Static Private
- Includes:
- EnvironmentCreator, EnvironmentLoader
- Defined in:
- lib/puppet/environments.rb
Overview
This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.
A source of pre-defined environments.
Direct Known Subclasses
Instance Method Summary collapse
-
#get(name) ⇒ Puppet::Node::Environment?
private
Find a named environment.
-
#get_conf(name) ⇒ Puppet::Setting::EnvironmentConf?
private
Returns a basic environment configuration object tied to the environment’s implementation values.
-
#initialize(*environments) ⇒ Static
constructor
private
A new instance of Static.
-
#list ⇒ Array<Puppet::Node::Environment>
private
All of the environments known to the loader.
-
#search_paths ⇒ Array<String>
private
A list of indicators of where the loader is getting its environments from.
Methods included from EnvironmentLoader
#clear_all, #get!, #guard, #unguard
Methods included from EnvironmentCreator
Constructor Details
#initialize(*environments) ⇒ Static
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.
Returns a new instance of Static.
100 101 102 |
# File 'lib/puppet/environments.rb', line 100 def initialize(*environments) @environments = environments end |
Instance Method Details
#get(name) ⇒ Puppet::Node::Environment?
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.
Find a named environment
115 116 117 118 119 |
# File 'lib/puppet/environments.rb', line 115 def get(name) @environments.find do |env| env.name == name.intern end end |
#get_conf(name) ⇒ Puppet::Setting::EnvironmentConf?
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.
Returns a basic environment configuration object tied to the environment’s implementation values. Will not interpolate.
Attempt to obtain the initial configuration for the environment. Not all loaders can provide this.
125 126 127 128 129 130 131 132 |
# File 'lib/puppet/environments.rb', line 125 def get_conf(name) env = get(name) if env Puppet::Settings::EnvironmentConf.static_for(env, Puppet[:environment_timeout], Puppet[:static_catalogs], Puppet[:rich_data]) else nil end end |
#list ⇒ Array<Puppet::Node::Environment>
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.
Returns All of the environments known to the loader.
110 111 112 |
# File 'lib/puppet/environments.rb', line 110 def list @environments end |
#search_paths ⇒ Array<String>
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.
A list of indicators of where the loader is getting its environments from.
105 106 107 |
# File 'lib/puppet/environments.rb', line 105 def search_paths ["data:text/plain,internal"] end |