Class: Puppet::Settings::EnvironmentConf::Static Private

Inherits:
Object
  • Object
show all
Defined in:
lib/puppet/settings/environment_conf.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.

Models configuration for an environment that is not loaded from a directory.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(environment, environment_timeout, static_catalogs, environment_data_provider = nil, rich_data = false) ⇒ 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.



197
198
199
200
201
202
203
# File 'lib/puppet/settings/environment_conf.rb', line 197

def initialize(environment, environment_timeout, static_catalogs, environment_data_provider = nil, rich_data = false)
  @environment = environment
  @environment_timeout = environment_timeout
  @static_catalogs = static_catalogs
  @environment_data_provider = environment_data_provider
  @rich_data = rich_data
end

Instance Attribute Details

#environment_data_providerObject (readonly)

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.



193
194
195
# File 'lib/puppet/settings/environment_conf.rb', line 193

def environment_data_provider
  @environment_data_provider
end

#environment_timeoutObject (readonly)

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.



192
193
194
# File 'lib/puppet/settings/environment_conf.rb', line 192

def environment_timeout
  @environment_timeout
end

#rich_dataObject (readonly)

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.



194
195
196
# File 'lib/puppet/settings/environment_conf.rb', line 194

def rich_data
  @rich_data
end

#static_catalogsObject (readonly)

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.



195
196
197
# File 'lib/puppet/settings/environment_conf.rb', line 195

def static_catalogs
  @static_catalogs
end

Instance Method Details

#config_versionObject

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.



217
218
219
# File 'lib/puppet/settings/environment_conf.rb', line 217

def config_version
  @environment.config_version
end

#manifestObject

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.



209
210
211
# File 'lib/puppet/settings/environment_conf.rb', line 209

def manifest
  @environment.manifest
end

#modulepathObject

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.



213
214
215
# File 'lib/puppet/settings/environment_conf.rb', line 213

def modulepath
  @environment.modulepath.join(File::PATH_SEPARATOR)
end

#path_to_envObject

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.



205
206
207
# File 'lib/puppet/settings/environment_conf.rb', line 205

def path_to_env
  nil
end